aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/LoggedIn/Home/Header/View.elm
blob: f9fbb6ad3d1d9e48525bef8d43dc690829a5b907 (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
module LoggedIn.Home.Header.View exposing
  ( view
  )

import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (..)
import Html.App as Html
import String
import Dict

import Form exposing (Form)
import View.Form as Form

import Msg exposing (Msg)
import LoggedIn.Msg as LoggedInMsg
import LoggedIn.Home.Msg as HomeMsg

import LoggedData exposing (LoggedData)
import LoggedIn.Home.Model as Home
import Model.Translations exposing (getParamMessage)
import Model.Conf exposing (Conf)
import Model.Payment as Payment exposing (Payments, Frequency(..))
import Model.Translations exposing (getMessage)

import Dialog.AddPayment.View as AddPayment

import LoggedIn.Home.View.ExceedingPayers as ExceedingPayers
import LoggedIn.View.Format as Format
import View.Plural exposing (plural)

import Utils.Tuple as Tuple

view : LoggedData -> Home.Model -> Payments -> Frequency -> Html Msg
view loggedData { search } payments frequency =
  Html.div
    [ class "header" ]
    [ ExceedingPayers.view loggedData
    , searchLine loggedData search frequency
    , infos loggedData payments
    ]

searchLine : LoggedData -> Form String Home.Search -> Frequency -> Html Msg
searchLine loggedData search frequency =
  Html.div
    [ class "searchLine" ]
    [ searchForm loggedData search
    , AddPayment.view loggedData frequency
    ]

searchForm : LoggedData -> Form String Home.Search -> Html Msg
searchForm loggedData search =
  let htmlMap = Html.map (Msg.UpdateLoggedIn << LoggedInMsg.HomeMsg << HomeMsg.SearchMsg)
  in  Html.form
        []
        [ Form.textInput loggedData.translations search htmlMap "search" "name"
        , if List.isEmpty (Payment.monthly loggedData.payments)
            then text ""
            else Form.radioInputs loggedData.translations search htmlMap "search" "frequency" [ toString Punctual, toString Monthly ]
        ]

infos : LoggedData -> Payments -> Html Msg
infos loggedData payments =
  let paymentsCount = List.length payments
  in  if paymentsCount == 0
        then text ""
        else
          let count = plural loggedData.translations (List.length payments) "Payment" "Payments"
              sum = paymentsSum loggedData.conf payments
          in  div
                [ class "infos" ]
                [ text <| getParamMessage [ count, sum ] "Worth" loggedData.translations
                , span
                    [ class "partition" ]
                    [ text <| paymentsPartition loggedData payments ]
                ]

paymentsPartition : LoggedData -> Payments -> String
paymentsPartition loggedData payments =
  String.join
    ", "
    ( loggedData.users
        |> Dict.toList
        |> List.map (Tuple.mapFst (\userId -> Payment.totalPayments (always True) userId payments))
        |> List.sortBy fst
        |> List.reverse
        |> List.map (\(sum, user) ->
             getParamMessage [ user.name, Format.price loggedData.conf sum ] "By" loggedData.translations
           )
    )

paymentsSum : Conf -> Payments -> String
paymentsSum conf payments =
  payments
    |> List.map .cost
    |> List.sum
    |> Format.price conf