-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHomepage.elm
189 lines (132 loc) · 3.09 KB
/
Homepage.elm
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
module Main exposing (..)
import Html exposing (..)
import Html.Attributes exposing (..)
import Html.Events exposing (onClick)
import Navigation
main : Program Never
main =
Navigation.program urlParser
{ init = init
, update = update
, urlUpdate = urlUpdate
, view = view
, subscriptions = \_ -> Sub.none
}
-- URL PARSERS
toUrl : Maybe Location -> String
toUrl location =
case location of
Just Home ->
"#/"
Just Contact ->
"#/contact"
Nothing ->
"#/"
fromUrl : String -> Maybe Location
fromUrl url =
case url of
"#/" ->
Just Home
"#/contact" ->
Just Contact
_ ->
Nothing
urlParser : Navigation.Parser (Maybe Location)
urlParser =
Navigation.makeParser (fromUrl << .hash)
-- MODEL
type alias Model =
{ location : Maybe Location }
init : Maybe Location -> ( Model, Cmd Msg )
init location =
urlUpdate location { location = Just Home }
type Location
= Home
| Contact
-- UPDATE
type Msg
= NoOp
| GoBack
update : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case msg of
GoBack ->
model ! [ Navigation.back 1 ]
NoOp ->
model ! []
urlUpdate : Maybe Location -> Model -> ( Model, Cmd Msg )
urlUpdate location model =
{ model | location = location } ! []
-- VIEW
view : Model -> Html Msg
view model =
case model.location of
Nothing ->
viewPage model viewPageNotFound
Just location ->
case location of
Home ->
viewPage model viewHomepage
Contact ->
viewPage model viewContact
viewPage : Model -> (Model -> Html Msg) -> Html Msg
viewPage model content =
div []
[ navigation model
, content model
, footer
]
footer : Html Msg
footer =
Html.footer []
[ button [ onClick GoBack ]
[ text "Go Back" ]
, p
[]
[ text "Copyright 2016" ]
]
navigation : Model -> Html Msg
navigation model =
ul []
[ li []
[ viewLinkTo Home ]
, li
[]
[ viewLinkTo Contact ]
]
viewLinkTo : Location -> Html Msg
viewLinkTo location =
let
title =
case location of
Home ->
"Home"
Contact ->
"Contact"
in
a [ href (toUrl (Just location)) ] [ text title ]
viewHomepage : Model -> Html Msg
viewHomepage model =
div []
[ h1 []
[ text "Hompage" ]
, p
[]
[ text "Welcome to my Homepage" ]
]
viewContact : Model -> Html Msg
viewContact model =
div []
[ h1 []
[ text "Contact" ]
, p
[]
[ text "Send me a message" ]
]
viewPageNotFound : Model -> Html Msg
viewPageNotFound model =
div []
[ h1 []
[ text "404" ]
, p [] [ viewLinkTo Home ]
]