summaryrefslogtreecommitdiff
blob: 63e382f8619bb5c4561e6d92db7c5b7f9703f453 (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
module ElmModule.View exposing (view)

-- Elm -------------------------------------------------------------------------
import Html
import Html.Attributes

-- Battlemap -------------------------------------------------------------------
import Struct.Event
import Struct.Model

import View.Battlemap
import View.SideBar
import View.Footer

--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------

--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
view : Struct.Model.Type -> (Html.Html Struct.Event.Type)
view model =
   (Html.div
      [
         (Html.Attributes.class "fullscreen-module")
      ]
      [
         (Html.div
            [
               (Html.Attributes.class "battlemap-left-panel")
            ]
            [
               (Html.div
                  [
                     (Html.Attributes.class "battlemap-container")
                  ]
                  [
                     (View.Battlemap.get_html model)
                  ]
               ),
               (View.Footer.get_html model)
            ]
         ),
         (Html.div
            [
               (Html.Attributes.class "battlemap-right-panel")
            ]
            [
               (View.SideBar.get_html model)
            ]
         )
      ]
   )