-
Notifications
You must be signed in to change notification settings - Fork 1
/
Main.elm
275 lines (211 loc) · 6.89 KB
/
Main.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
module Main exposing (..)
import Html exposing (..)
import Types exposing (..)
import Router as Router
import Navigation exposing (Location)
import Time exposing (Time)
import Json.Decode as JD exposing (field)
-- JS Phoenix Channel based
-- import HttpModule exposing (..)
-- HTTP based
import Debug
import WebData exposing (WebData(..))
import WebData.Http as Http2
import Http
-- Elm Phoenix Channel based
-- import SsPorts exposing (..)
--import Html.CssHelpers exposing (..)
--import Html.CssHelpers exposing (..)
--import HomepageCss exposing (..)
--import SharedStyles exposing (..)
--
--{ id, class, classList } =
-- homepageNamespace
-- import Phoenix.Channel.Helpers exposing (assignResponseType) --elm 0.18 issue?
--import WebSocket
type alias AppModel =
{ appState : AppState
, location : Location
-- , seatsaverModel : SeatSaver.Model
-- , httpcommentModel : HttpModule.Model
-- , chatModel : Chat.Model
, currentTime : Time
}
type AppState
= NotReady Time
| Ready Taco Router.Model
main : Program Flags AppModel Msg
main =
-- text "Hello world jason"
Navigation.programWithFlags UrlChange
{ init = init
, update = updateWithStorage
, view = view
, subscriptions =
subscriptions
--[seatListsToSet0, seatsToUpdate0, commentListsToSet0, commentsToUpdate0]
}
updateWithStorage : Msg -> AppModel -> ( AppModel, Cmd Msg)
updateWithStorage msg model =
let
( newModel, cmds ) =
update msg model
in
case model.appState of
NotReady _ ->
(newModel, Cmd.none)
Ready taco routerModel ->
(newModel
, Cmd.batch [ cmds])
-- SUBSCRIPTIONS
subscriptions : AppModel -> Sub Msg
subscriptions model =
Sub.batch
[ -- seatListsToSet0
-- , commentListsToSet0
-- , seatsToUpdate0
-- , commentsToUpdate0
-- ,
(case model.appState of
NotReady _ ->
Sub.none
Ready _ routerModel ->
Router.subscriptions routerModel
|> Sub.map RouterMsg)
-- , (case model.appState of
-- NotReady _ ->
-- Sub.none
-- Ready _ routerModel ->
-- SeatSaver.subscriptions routerModel.seatsaverModel
-- |> Sub.map SeatSaverMsg)
-- Chat.subscriptions model.chatModel
-- |> Sub.map ChatMsg
-- , SeatSaver.subscriptions model.seatsaverModel
-- |> Sub.map SeatSaverMsg
, Time.every Time.second TimeChange
]
-- seatLists broadcast from server
-- MODEL
logDecoder : JD.Decoder Log
logDecoder =
JD.map2 Log
(field "id" JD.string)
(field "title" JD.string)
hnTopStories : String
hnTopStories =
"""
{
hn {
topStories {
id
title: id
}
}
}
"""
init : Flags -> Location -> ( AppModel, Cmd Msg )
init flags location =
let
-- _ = Debug.log "inside Main.elm init" (toString flags)
encoded =
Http.encodeUri hnTopStories
decoder =
JD.at [ "data", "hn", "topStories"] <|
JD.list logDecoder
startModel = {
appState = NotReady flags.currentTime
, location = location
, currentTime = flags.currentTime
}
in
( startModel
, Http2.get ("https://www.graphqlhub.com/graphql?query=" ++ encoded) HandleLogDataResponse decoder
)
-- UPDATE
type Msg
=
HandleLogDataResponse (WebData LogData)
| UrlChange Location
| TimeChange Time
| RouterMsg Router.Msg
update : Msg -> AppModel -> ( AppModel, Cmd Msg )
update msg model =
case msg of
HandleLogDataResponse webData ->
updateLogData model webData
UrlChange location ->
updateRouter { model | location = location } (Router.UrlChange location)
RouterMsg routerMsg ->
updateRouter model routerMsg
TimeChange time ->
updateTime model time
updateTime : AppModel -> Time -> ( AppModel, Cmd Msg )
updateTime model time =
case model.appState of
NotReady _ ->
( { model | appState = NotReady time }
, Cmd.none
)
Ready taco routerModel ->
( { model | appState = Ready (updateTaco taco (UpdateTime time)) routerModel }
, Cmd.none
)
updateRouter : AppModel -> Router.Msg -> ( AppModel, Cmd Msg )
updateRouter model routerMsg =
case model.appState of
Ready taco routerModel ->
let
nextTaco =
updateTaco taco tacoUpdate
( nextRouterModel, routerCmd, tacoUpdate ) =
Router.update routerMsg routerModel
in
( { model | appState = Ready nextTaco nextRouterModel }
, Cmd.map RouterMsg routerCmd
)
NotReady _ ->
Debug.crash "Ooops. We got a sub-component message even though it wasn't supposed to be initialized??"
updateLogData : AppModel -> WebData LogData -> ( AppModel, Cmd Msg )
updateLogData model webData =
case webData of
Failure _ ->
Debug.crash "OMG CANT EVEN DOWNLOAD."
Success logdata ->
case model.appState of
NotReady time ->
let
initTaco =
{ currentTime = time
, logdata = logdata
}
( initRouterModel, routerCmd ) =
Router.init initTaco model.location
_ = Debug.log "Main updateLogData Success" (toString routerCmd)
in
( { model | appState = Ready initTaco initRouterModel }
, Cmd.map RouterMsg routerCmd
)
Ready taco routerModel ->
( { model | appState = Ready (updateTaco taco (UpdateLogData logdata)) routerModel }
, Cmd.none
)
_ ->
( model, Cmd.none )
updateTaco : Taco -> TacoUpdate -> Taco
updateTaco taco tacoUpdate =
case tacoUpdate of
UpdateTime time ->
{ taco | currentTime = time }
UpdateLogData logdata ->
{ taco | logdata = logdata}
NoUpdate ->
taco
-- VIEW
view : AppModel -> Html Msg
view model =
case model.appState of
Ready taco routerModel ->
Router.view taco routerModel
|> Html.map RouterMsg
NotReady _ ->
text "Loading"