aboutsummaryrefslogtreecommitdiff
path: root/src/client/Model/View/LoggedView.elm
blob: 34a55a28a4474d94d34505dbfbe0d215e5287a21 (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
module Model.View.LoggedView
  ( LoggedView
  , initLoggedView
  ) where

import Model.User exposing (Users, UserId)
import Model.Payment exposing (Payments)
import Model.Payers exposing (Payers)
import Model.View.Payment.Add exposing (..)
import Model.View.Payment.Edition exposing (..)

type alias LoggedView =
  { users : Users
  , me : UserId
  , add : AddPayment
  , monthlyPayments : Payments
  , payments : Payments
  , paymentsCount : Int
  , payers : Payers
  , edition : Maybe Edition
  , currentPage : Int
  }

initLoggedView : Users -> UserId -> Payments -> Payments -> Int -> Payers -> LoggedView
initLoggedView users me monthlyPayments payments paymentsCount payers =
  { users = users
  , me = me
  , add = initAddPayment Punctual
  , monthlyPayments = monthlyPayments
  , payments = payments
  , paymentsCount = paymentsCount
  , payers = payers
  , edition = Nothing
  , currentPage = 1
  }