aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/View/LoggedIn/Table.elm
diff options
context:
space:
mode:
authorJoris2016-03-27 21:35:52 +0200
committerJoris2016-03-27 21:35:52 +0200
commit0620d925b1045b17cad613a3cc5a1fbb3748c83c (patch)
tree8969b19254deec47e8ad63f973a7f7ff2a3144b4 /src/client/elm/View/LoggedIn/Table.elm
parent617d30c96792795ab8561a6262c4c5f4e023b6cf (diff)
downloadbudget-0620d925b1045b17cad613a3cc5a1fbb3748c83c.tar.gz
budget-0620d925b1045b17cad613a3cc5a1fbb3748c83c.tar.bz2
budget-0620d925b1045b17cad613a3cc5a1fbb3748c83c.zip
Moving some files
Diffstat (limited to 'src/client/elm/View/LoggedIn/Table.elm')
-rw-r--r--src/client/elm/View/LoggedIn/Table.elm96
1 files changed, 0 insertions, 96 deletions
diff --git a/src/client/elm/View/LoggedIn/Table.elm b/src/client/elm/View/LoggedIn/Table.elm
deleted file mode 100644
index ababcbd..0000000
--- a/src/client/elm/View/LoggedIn/Table.elm
+++ /dev/null
@@ -1,96 +0,0 @@
-module View.LoggedIn.Table
- ( paymentsTable
- ) where
-
-import Dict exposing (..)
-import Date exposing (Date)
-import Signal exposing (Address)
-import String exposing (append)
-
-import Html exposing (..)
-import Html.Attributes exposing (..)
-import Html.Events exposing (..)
-
-import LoggedIn.Action as LoggedInAction
-import LoggedIn.Model as LoggedInModel
-
-import Model exposing (Model)
-import Model.User exposing (getUserName)
-import Model.Payment exposing (..)
-import Model.Translations exposing (getMessage)
-import Model.Action exposing (..)
-
-import View.Icon exposing (renderIcon)
-import View.Date exposing (..)
-import View.Price exposing (price)
-
-paymentsTable : Address Action -> Model -> LoggedInModel.Model -> Html
-paymentsTable address model loggedInModel =
- div
- [ class "table" ]
- ( headerLine model :: paymentLines address model loggedInModel)
-
-headerLine : Model -> Html
-headerLine model =
- div
- [ class "header" ]
- [ div [ class "cell category" ] [ renderIcon "shopping-cart" ]
- , div [ class "cell cost" ] [ text model.conf.currency ]
- , div [ class "cell user" ] [ renderIcon "user" ]
- , div [ class "cell date" ] [ renderIcon "calendar" ]
- , div [ class "cell" ] []
- ]
-
-paymentLines : Address Action -> Model -> LoggedInModel.Model -> List Html
-paymentLines address model loggedInModel =
- loggedInModel.payments
- |> List.sortBy (Date.toTime << .creation)
- |> List.reverse
- |> List.drop ((loggedInModel.currentPage - 1) * perPage)
- |> List.take perPage
- |> List.map (paymentLine address model loggedInModel)
-
-paymentLine : Address Action -> Model -> LoggedInModel.Model -> Payment -> Html
-paymentLine address model loggedInModel payment =
- a
- [ classList
- [ ("row", True)
- , ("edition", loggedInModel.paymentEdition == Just payment.id)
- ]
- , onClick address (UpdateLoggedIn (LoggedInAction.ToggleEdit payment.id))
- ]
- [ div [ class "cell category" ] [ text payment.name ]
- , div
- [ classList
- [ ("cell cost", True)
- , ("refund", payment.cost < 0)
- ]
- ]
- [ text (price model payment.cost) ]
- , div
- [ class "cell user" ]
- [ payment.userId
- |> getUserName loggedInModel.users
- |> Maybe.withDefault "−"
- |> text
- ]
- , div
- [ class "cell date" ]
- [ span
- [ class "shortDate" ]
- [ text (renderShortDate payment.creation model.translations) ]
- , span
- [ class "longDate" ]
- [ text (renderLongDate payment.creation model.translations) ]
- ]
- , if loggedInModel.account.me == payment.userId
- then
- div
- [ class "cell delete" ]
- [ button
- [ onClick address (UpdateLoggedIn <| LoggedInAction.DeletePayment payment Punctual)]
- [ renderIcon "times" ]
- ]
- else
- div [ class "cell" ] []
- ]