aboutsummaryrefslogtreecommitdiff
path: root/src/client/Update/LoggedIn/Account.elm
diff options
context:
space:
mode:
authorJoris2015-12-29 22:38:42 +0100
committerJoris2015-12-29 22:38:42 +0100
commita7db22556b91bc7c499e010b4c051f4442ad8ce2 (patch)
tree9f991523cee681bf179c191260b95672f1c44def /src/client/Update/LoggedIn/Account.elm
parentc79fa3e212e8bb49f950da3c3218e32e3b9df2ec (diff)
downloadbudget-a7db22556b91bc7c499e010b4c051f4442ad8ce2.tar.gz
budget-a7db22556b91bc7c499e010b4c051f4442ad8ce2.tar.bz2
budget-a7db22556b91bc7c499e010b4c051f4442ad8ce2.zip
Using persona to validate emails
Diffstat (limited to 'src/client/Update/LoggedIn/Account.elm')
-rw-r--r--src/client/Update/LoggedIn/Account.elm64
1 files changed, 0 insertions, 64 deletions
diff --git a/src/client/Update/LoggedIn/Account.elm b/src/client/Update/LoggedIn/Account.elm
deleted file mode 100644
index cf4c834..0000000
--- a/src/client/Update/LoggedIn/Account.elm
+++ /dev/null
@@ -1,64 +0,0 @@
-module Update.LoggedIn.Account
- ( AccountAction(..)
- , updateAccount
- ) where
-
-import Maybe
-import Time exposing (Time)
-import Dict
-
-import Model.User exposing (UserId)
-import Model.Payer exposing (..)
-import Model.View.LoggedIn.Account exposing (..)
-
-import Utils.Maybe exposing (isJust)
-
-type AccountAction =
- ToggleDetail
- | UpdatePayer UserId Time Int
- | ToggleIncomeEdition
- | UpdateIncomeEdition String
- | UpdateEditionError String
- | UpdateIncome Time Int
-
-updateAccount : AccountAction -> Account -> Account
-updateAccount action account =
- case action of
- ToggleDetail ->
- { account | visibleDetail <- not account.visibleDetail }
- UpdatePayer userId creation amountDiff ->
- { account | payers <- updatePayers account.payers userId creation amountDiff }
- ToggleIncomeEdition ->
- { account | incomeEdition <-
- if isJust account.incomeEdition
- then Nothing
- else Just (initIncomeEdition (Maybe.withDefault 0 (getCurrentIncome account)))
- }
- UpdateIncomeEdition income ->
- case account.incomeEdition of
- Just incomeEdition ->
- { account | incomeEdition <- Just { incomeEdition | income <- income } }
- Nothing ->
- account
- UpdateEditionError error ->
- case account.incomeEdition of
- Just incomeEdition ->
- { account | incomeEdition <- Just { incomeEdition | error <- Just error } }
- Nothing ->
- account
- UpdateIncome currentTime amount ->
- { account
- | payers <-
- account.payers
- |> Dict.update account.me (\mbPayer ->
- case mbPayer of
- Just payer ->
- Just
- { payer
- | incomes <- payer.incomes ++ [{ creation = currentTime, amount = amount }]
- }
- Nothing ->
- Nothing
- )
- , incomeEdition <- Nothing
- }