aboutsummaryrefslogtreecommitdiff
path: root/src/client/Model/View/LoggedView.elm
blob: 35fd9e59a6bf2281b5ffe46230d5919e05e6ee85 (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
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
  , payments : Payments
  , paymentsCount : Int
  , payers : Payers
  , edition : Maybe Edition
  , currentPage : Int
  }

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