aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Main.elm
blob: 06b5ec31da664b933f1c829f87a106a96ee8c850 (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
module Main
  ( main
  ) where

import Graphics.Element exposing (..)

import Html exposing (Html)
import StartApp exposing (App)
import Effects exposing (Effects, Never)

import Task exposing (..)
import Time exposing (..)

import Model exposing (Model, initialModel)
import Model.Action exposing (..)

import Update exposing (update)

import View exposing (view)

import Server

main : Signal Html
main = app.html

app : App Model
app = StartApp.start
  { init =
      ( initialModel initialTime translations conf
      , Server.init
          |> Task.map GoLoggedInView
          |> flip Task.onError (always <| Task.succeed GoSignInView)
          |> Effects.task
      )
  , view = view
  , update = update
  , inputs = [ Signal.map UpdateTime (Time.every 1000) ]
  }

port tasks : Signal (Task.Task Never ())
port tasks = app.tasks

-- Input ports

port initialTime : Time
port translations : String
port conf : String

-- Output ports

port signInError : Maybe String