blob: 3f0a16fa0990ea8da8d811fbb939606b1f6d955b (
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
|
module ElmModule.View exposing (view)
-- Elm -------------------------------------------------------------------------
import Array
import Html
import Html.Attributes
-- Extension -------------------------------------------------------------------
import Util.Html
import Struct.Error
import Struct.Event
import Struct.Model
import View.Player
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
view : Struct.Model.Type -> (Html.Html Struct.Event.Type)
view model =
(Html.div
[
(Html.Attributes.class "fullscreen-module")
]
(
(
case model.error of
Nothing -> (Util.Html.nothing)
(Just err) ->
(Html.div
[]
[
(Html.text (Struct.Error.to_string err))
]
)
)
::
(List.map (View.Player.get_html) (Array.toList model.players))
)
)
|