aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/View/LoggedIn/AddPayment.elm
blob: 0149432323473257580ed098908887e9d97413cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
module View.LoggedIn.AddPayment
  ( addPayment
  ) where

import Result exposing (..)
import Signal exposing (Address)

import Html as H exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)

import Model exposing (Model)
import Model.Payment exposing (PaymentFrequency(..))
import Model.Translations exposing (getMessage)
import Model.Action as Action exposing (..)
import Model.Action.LoggedInAction as LoggedInAction exposing (..)
import Model.Action.AddPaymentAction exposing (..)

import Model.View.LoggedIn.AddPayment exposing (..)
import Model.View.LoggedInView exposing (LoggedInView)

import View.Events exposing (onSubmitPrevDefault)
import View.Icon exposing (..)

import Utils.Maybe exposing (isJust)
import Utils.Either exposing (toMaybeError)

addPayment : Address Action -> Model -> LoggedInView -> Html
addPayment address model loggedInView =
  H.form
    [ let update =
            if loggedInView.add.waitingServer
              then
                Action.NoOp
              else
                UpdateLoggedIn <| LoggedInAction.AddPayment loggedInView.add.name loggedInView.add.cost loggedInView.add.frequency
      in  onSubmitPrevDefault address update
    , class "addPayment"
    ]
    [ addPaymentName address loggedInView.add
    , addPaymentCost address model loggedInView.add
    , paymentFrequency address model loggedInView.add
    , button
        [ type' "submit"
        , classList
            [ ("add", True)
            , ("waitingServer", loggedInView.add.waitingServer)
            ]
        ]
        [ text (getMessage "Add" model.translations)
        , if loggedInView.add.waitingServer then renderSpinIcon else text ""
        ]
    ]

addPaymentName : Address Action -> AddPayment -> Html
addPaymentName address addPayment =
  div
    [ classList
        [ ("name", True)
        , ("error", isJust addPayment.nameError)
        ]
    ]
    [ input
        [ id "nameInput"
        , value addPayment.name
        , on "input" targetValue (Signal.message address << UpdateLoggedIn << UpdateAdd << UpdateName)
        , maxlength 20
        ]
        []
    , label
        [ for "nameInput" ]
        [ renderIcon "shopping-cart" ]
    , case addPayment.nameError of
        Just error ->
          div [ class "errorMessage" ] [ text error ]
        Nothing ->
          text ""
    ]

addPaymentCost : Address Action -> Model -> AddPayment -> Html
addPaymentCost address model addPayment =
  div
    [ classList
        [ ("cost", True)
        , ("error", isJust addPayment.costError)
        ]
    ]
    [ input
        [ id "costInput"
        , value addPayment.cost
        , on "input" targetValue (Signal.message address << UpdateLoggedIn << UpdateAdd << UpdateCost)
        , maxlength 7
        ]
        []
    , label
        [ for "costInput" ]
        [ text model.config.currency ]
    , case addPayment.costError of
        Just error ->
          div [ class "errorMessage" ] [ text error ]
        Nothing ->
          text ""
    ]

paymentFrequency : Address Action -> Model -> AddPayment -> Html
paymentFrequency address model addPayment =
  button
    [ type' "button"
    , class "frequency"
    , onClick address (UpdateLoggedIn << UpdateAdd <| ToggleFrequency)
    ]
    [ div
        [ classList
            [ ("punctual", True)
            , ("selected", addPayment.frequency == Punctual)
            ]
        ]
        [ text (getMessage "Punctual" model.translations) ]
    , div
        [ classList
            [ ("monthly", True)
            , ("selected", addPayment.frequency == Monthly)
            ]
        ]
        [ text (getMessage "Monthly" model.translations) ]
    ]