aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/View
diff options
context:
space:
mode:
authorJoris2016-03-27 20:41:59 +0200
committerJoris2016-03-27 20:41:59 +0200
commit7c050fe2d2c3e8f190e019e1613d37b9d8ef22b9 (patch)
tree1465f7367335492cd246b67ab9a02968517d57a5 /src/client/elm/View
parent702d60cbcdf85216a1b18416f4480afb77384e8a (diff)
downloadbudget-7c050fe2d2c3e8f190e019e1613d37b9d8ef22b9.tar.gz
budget-7c050fe2d2c3e8f190e019e1613d37b9d8ef22b9.tar.bz2
budget-7c050fe2d2c3e8f190e019e1613d37b9d8ef22b9.zip
Regroup account modules
Diffstat (limited to 'src/client/elm/View')
-rw-r--r--src/client/elm/View/LoggedIn/Account.elm131
1 files changed, 0 insertions, 131 deletions
diff --git a/src/client/elm/View/LoggedIn/Account.elm b/src/client/elm/View/LoggedIn/Account.elm
deleted file mode 100644
index 66d8582..0000000
--- a/src/client/elm/View/LoggedIn/Account.elm
+++ /dev/null
@@ -1,131 +0,0 @@
-module View.LoggedIn.Account
- ( account
- ) where
-
-import List
-import Signal exposing (Address)
-
-import Html exposing (..)
-import Html as H 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.Payer exposing (..)
-import Model.Translations exposing (getParamMessage, getMessage)
-import Model.Action exposing (..)
-import Model.Action.AccountAction exposing (..)
-
-import Model.View.LoggedIn.Account exposing (..)
-
-import View.Expand exposing (..)
-import View.Price exposing (price)
-import View.Events exposing (onSubmitPrevDefault)
-
-import Utils.Either exposing (toMaybeError)
-
-account : Address Action -> Model -> LoggedInModel.Model -> Html
-account address model loggedInModel =
- let account = loggedInModel.account
- in div
- [ classList
- [ ("account", True)
- , ("detail", account.visibleDetail)
- ]
- ]
- [ exceedingPayers address model loggedInModel
- , if account.visibleDetail
- then income address model account
- else text ""
- ]
-
-exceedingPayers : Address Action -> Model -> LoggedInModel.Model -> Html
-exceedingPayers address model loggedInModel =
- button
- [ class "header"
- , onClick address (UpdateLoggedIn << LoggedInAction.UpdateAccount <| ToggleDetail)
- ]
- ( (List.map (exceedingPayer model loggedInModel) (getOrderedExceedingPayers model.currentTime loggedInModel.users loggedInModel.account.incomes loggedInModel.payments))
- ++ [ expand ExpandDown loggedInModel.account.visibleDetail ]
- )
-
-exceedingPayer : Model -> LoggedInModel.Model -> ExceedingPayer -> Html
-exceedingPayer model loggedInModel payer =
- div
- [ class "exceedingPayer" ]
- [ span
- [ class "userName" ]
- [ payer.userId
- |> getUserName loggedInModel.users
- |> Maybe.withDefault "−"
- |> text
- ]
- , span
- [ class "amount" ]
- [ text ("+ " ++ (price model payer.amount)) ]
- ]
-
-income : Address Action -> Model -> Account -> Html
-income address model account =
- case account.incomeEdition of
- Nothing ->
- incomeRead address model account
- Just edition ->
- incomeEdition address model account edition
-
-incomeRead : Address Action -> Model -> Account -> Html
-incomeRead address model account =
- div
- [ class "income" ]
- [ ( case getCurrentIncome account of
- Nothing ->
- text (getMessage "NoIncome" model.translations)
- Just income ->
- text (getParamMessage [price model income] "Income" model.translations)
- )
- , toggleIncomeEdition address "editIncomeEdition" (getMessage "Edit" model.translations)
- ]
-
-incomeEdition : Address Action -> Model -> Account -> IncomeEdition -> Html
-incomeEdition address model account edition =
- H.form
- [ case validateIncome edition.income model.translations of
- Ok validatedAmount ->
- onSubmitPrevDefault address (UpdateLoggedIn << LoggedInAction.UpdateAccount <| UpdateIncome model.currentTime validatedAmount)
- Err error ->
- onSubmitPrevDefault address (UpdateLoggedIn << LoggedInAction.UpdateAccount << UpdateEditionError <| error)
- , class "income"
- ]
- [ label
- [ for "incomeInput" ]
- [ text (getMessage "NewIncome" model.translations) ]
- , input
- [ id "incomeInput"
- , value edition.income
- , on "input" targetValue (Signal.message address << UpdateLoggedIn << LoggedInAction.UpdateAccount << UpdateIncomeEdition)
- , maxlength 10
- ]
- []
- , button
- [ type' "submit"
- , class "validateIncomeEdition"
- ]
- [ text (getMessage "Validate" model.translations) ]
- , toggleIncomeEdition address "undoIncomeEdition" (getMessage "Undo" model.translations)
- , case edition.error of
- Just error -> div [ class "error" ] [ text error ]
- Nothing -> text ""
- ]
-
-toggleIncomeEdition : Address Action -> String -> String -> Html
-toggleIncomeEdition address className name =
- button
- [ type' "button"
- , class className
- , onClick address (UpdateLoggedIn << LoggedInAction.UpdateAccount <| ToggleIncomeEdition)
- ]
- [ text name ]