-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathPlatform.elm
745 lines (672 loc) · 30.6 KB
/
Platform.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
module Pages.Internal.Platform exposing (Flags, Model, Msg, Program, application)
{-| Exposed for internal use only (used in generated code).
@docs Flags, Model, Msg, Program, application
-}
import AriaLiveAnnouncer
import Browser
import Browser.Dom as Dom
import Browser.Navigation
import BuildError exposing (BuildError)
import Html exposing (Html)
import Html.Attributes as Attr
import Http
import Json.Decode as Decode
import Json.Encode
import Pages.ContentCache as ContentCache exposing (ContentCache, ContentJson, contentJsonDecoder)
import Pages.Flags
import Pages.Internal.ApplicationType as ApplicationType
import Pages.Internal.NotFoundReason
import Pages.Internal.String as String
import Pages.ProgramConfig exposing (ProgramConfig)
import Pages.StaticHttpRequest as StaticHttpRequest
import Path exposing (Path)
import QueryParams
import Task
import Url exposing (Url)
{-| -}
type alias Program userModel userMsg pageData sharedData =
Platform.Program Flags (Model userModel pageData sharedData) (Msg userMsg)
mainView :
ProgramConfig userMsg userModel route siteData pageData sharedData
-> Model userModel pageData sharedData
-> { title : String, body : Html userMsg }
mainView config model =
let
urls : { currentUrl : Url, basePath : List String }
urls =
{ currentUrl = model.url
, basePath = config.basePath
}
in
case ContentCache.notFoundReason model.contentCache urls of
Just notFoundReason ->
Pages.Internal.NotFoundReason.document config.pathPatterns notFoundReason
Nothing ->
case model.pageData of
Ok pageData ->
(config.view
{ path = ContentCache.pathForUrl urls |> Path.join
, route = config.urlToRoute model.url
}
Nothing
pageData.sharedData
pageData.pageData
|> .view
)
pageData.userModel
Err error ->
{ title = "Page Data Error"
, body =
Html.div [] [ Html.text error ]
}
urlsToPagePath :
{ currentUrl : Url, basePath : List String }
-> Path
urlsToPagePath urls =
urls.currentUrl.path
|> String.chopForwardSlashes
|> String.split "/"
|> List.filter ((/=) "")
|> List.drop (List.length urls.basePath)
|> Path.join
view :
ProgramConfig userMsg userModel route siteData pageData sharedData
-> Model userModel pageData sharedData
-> Browser.Document (Msg userMsg)
view config model =
let
{ title, body } =
mainView config model
in
{ title = title
, body =
[ onViewChangeElement model.url
, body |> Html.map UserMsg
, AriaLiveAnnouncer.view model.ariaNavigationAnnouncement
]
}
onViewChangeElement : Url -> Html msg
onViewChangeElement currentUrl =
-- this is a hidden tag
-- it is used from the JS-side to reliably
-- check when Elm has changed pages
-- (and completed rendering the view)
Html.div
[ Attr.attribute "data-url" (Url.toString currentUrl)
, Attr.attribute "display" "none"
]
[]
{-| -}
type alias Flags =
Decode.Value
{-| -}
init :
ProgramConfig userMsg userModel route staticData pageData sharedData
-> Flags
-> Url
-> Browser.Navigation.Key
-> ( Model userModel pageData sharedData, Cmd (Msg userMsg) )
init config flags url key =
let
contentCache : ContentCache
contentCache =
ContentCache.init
(Maybe.map
(\cj ->
( currentPath
, cj
)
)
contentJson
)
currentPath : List String
currentPath =
flags
|> Decode.decodeValue
(Decode.at [ "contentJson", "path" ]
(Decode.string
|> Decode.map Path.fromString
|> Decode.map Path.toSegments
)
)
|> Result.mapError Decode.errorToString
|> Result.toMaybe
|> Maybe.withDefault []
contentJson : Maybe ContentJson
contentJson =
flags
|> Decode.decodeValue (Decode.field "contentJson" contentJsonDecoder)
|> Result.toMaybe
urls : { currentUrl : Url, basePath : List String }
urls =
{ currentUrl = url
, basePath = config.basePath
}
in
case contentJson |> Maybe.map .staticData of
Just justContentJson ->
let
pageDataResult : Result BuildError pageData
pageDataResult =
StaticHttpRequest.resolve ApplicationType.Browser
(config.data (config.urlToRoute url))
justContentJson
|> Result.mapError (StaticHttpRequest.toBuildError url.path)
sharedDataResult : Result BuildError sharedData
sharedDataResult =
StaticHttpRequest.resolve ApplicationType.Browser
config.sharedData
justContentJson
|> Result.mapError (StaticHttpRequest.toBuildError url.path)
pagePath : Path
pagePath =
urlsToPagePath urls
in
case Result.map2 Tuple.pair sharedDataResult pageDataResult of
Ok ( sharedData, pageData ) ->
let
userFlags : Pages.Flags.Flags
userFlags =
flags
|> Decode.decodeValue
(Decode.field "userFlags" Decode.value)
|> Result.withDefault Json.Encode.null
|> Pages.Flags.BrowserFlags
( userModel, userCmd ) =
Just
{ path =
{ path = pagePath
, query = url.query
, fragment = url.fragment
}
, metadata = config.urlToRoute url
, pageUrl =
Just
{ protocol = url.protocol
, host = url.host
, port_ = url.port_
, path = pagePath
, query = url.query |> Maybe.map QueryParams.fromString
, fragment = url.fragment
}
}
|> config.init userFlags sharedData pageData (Just key)
cmd : Cmd (Msg userMsg)
cmd =
[ userCmd
|> Cmd.map UserMsg
|> Just
, contentCache
|> ContentCache.lazyLoad urls
|> Task.attempt UpdateCache
|> Just
]
|> List.filterMap identity
|> Cmd.batch
initialModel : Model userModel pageData sharedData
initialModel =
{ key = key
, url = url
, contentCache = contentCache
, pageData =
Ok
{ pageData = pageData
, sharedData = sharedData
, userModel = userModel
}
, ariaNavigationAnnouncement = ""
, userFlags = flags
}
in
( { initialModel
| ariaNavigationAnnouncement = mainView config initialModel |> .title
}
, cmd
)
Err error ->
( { key = key
, url = url
, contentCache = contentCache
, pageData = BuildError.errorToString error |> Err
, ariaNavigationAnnouncement = "Error"
, userFlags = flags
}
, Cmd.none
)
Nothing ->
( { key = key
, url = url
, contentCache = contentCache
, pageData = Err "TODO"
, ariaNavigationAnnouncement = "Error"
, userFlags = flags
}
, Cmd.none
)
{-| -}
type Msg userMsg
= LinkClicked Browser.UrlRequest
| UrlChanged Url
| UserMsg userMsg
| UpdateCache (Result Http.Error ( Url, ContentJson, ContentCache ))
| UpdateCacheAndUrl Url (Result Http.Error ( Url, ContentJson, ContentCache ))
| PageScrollComplete
| HotReloadComplete ContentJson
| NoOp
{-| -}
type alias Model userModel pageData sharedData =
{ key : Browser.Navigation.Key
, url : Url
, contentCache : ContentCache
, ariaNavigationAnnouncement : String
, pageData :
Result
String
{ userModel : userModel
, pageData : pageData
, sharedData : sharedData
}
, userFlags : Decode.Value
}
{-| -}
update :
ProgramConfig userMsg userModel route siteData pageData sharedData
-> Msg userMsg
-> Model userModel pageData sharedData
-> ( Model userModel pageData sharedData, Cmd (Msg userMsg) )
update config appMsg model =
case appMsg of
LinkClicked urlRequest ->
case urlRequest of
Browser.Internal url ->
let
navigatingToSamePage : Bool
navigatingToSamePage =
(url.path == model.url.path) && (url /= model.url)
in
if navigatingToSamePage then
-- this is a workaround for an issue with anchor fragment navigation
-- see https://github.com/elm/browser/issues/39
( model, Browser.Navigation.load (Url.toString url) )
else
( model
, Browser.Navigation.pushUrl model.key (Url.toString url)
)
Browser.External href ->
( model, Browser.Navigation.load href )
UrlChanged url ->
let
navigatingToSamePage : Bool
navigatingToSamePage =
(url.path == model.url.path) && (url /= model.url)
urls : { currentUrl : Url, basePath : List String }
urls =
{ currentUrl = url
, basePath = config.basePath
}
in
if navigatingToSamePage then
-- this saves a few CPU cycles, but also
-- makes sure we don't send an UpdateCacheAndUrl
-- which scrolls to the top after page changes.
-- This is important because we may have just scrolled
-- to a specific page location for an anchor link.
model.pageData
|> Result.map
(\pageData ->
let
updatedPageData : Result String { userModel : userModel, sharedData : sharedData, pageData : pageData }
updatedPageData =
Ok
{ userModel = userModel
, sharedData = pageData.sharedData
, pageData = pageData.pageData
}
( userModel, userCmd ) =
config.update
pageData.sharedData
pageData.pageData
(Just model.key)
(config.onPageChange
{ protocol = model.url.protocol
, host = model.url.host
, port_ = model.url.port_
, path = urlPathToPath config urls.currentUrl
, query = url.query
, fragment = url.fragment
, metadata = config.urlToRoute url
}
)
pageData.userModel
in
( { model
| url = url
, pageData = updatedPageData
}
, Cmd.none
--Cmd.batch
-- [ userCmd |> Cmd.map UserMsg
-- , Task.perform (\_ -> PageScrollComplete) (Dom.setViewport 0 0)
-- ]
)
)
|> Result.withDefault ( model, Cmd.none )
else
( model
, model.contentCache
|> ContentCache.lazyLoad urls
|> Task.attempt (UpdateCacheAndUrl url)
)
UserMsg userMsg ->
case model.pageData of
Ok pageData ->
let
( userModel, userCmd ) =
config.update pageData.sharedData pageData.pageData (Just model.key) userMsg pageData.userModel
updatedPageData : Result error { userModel : userModel, pageData : pageData, sharedData : sharedData }
updatedPageData =
Ok { pageData | userModel = userModel }
in
( { model | pageData = updatedPageData }, userCmd |> Cmd.map UserMsg )
Err error ->
( model, Cmd.none )
UpdateCache cacheUpdateResult ->
case cacheUpdateResult of
-- TODO can there be race conditions here? Might need to set something in the model
-- to keep track of the last url change
Ok ( url, contentJson, updatedCache ) ->
( { model | contentCache = updatedCache }
, Cmd.none
)
Err _ ->
-- TODO handle error
( model, Cmd.none )
UpdateCacheAndUrl url cacheUpdateResult ->
case
Result.map2 Tuple.pair (cacheUpdateResult |> Result.mapError (\error -> "Http error")) model.pageData
of
-- TODO can there be race conditions here? Might need to set something in the model
-- to keep track of the last url change
Ok ( ( _, contentJson, updatedCache ), pageData ) ->
let
updatedPageData : Result String { userModel : userModel, sharedData : sharedData, pageData : pageData }
updatedPageData =
updatedPageStaticData
|> Result.map
(\pageStaticData ->
{ userModel = userModel
, sharedData = pageData.sharedData
, pageData = pageStaticData
}
)
updatedPageStaticData : Result String pageData
updatedPageStaticData =
StaticHttpRequest.resolve ApplicationType.Browser
(config.data (config.urlToRoute url))
contentJson.staticData
|> Result.mapError
(\error ->
error
|> StaticHttpRequest.toBuildError ""
|> BuildError.errorToString
)
( userModel, userCmd ) =
config.update
pageData.sharedData
(updatedPageStaticData |> Result.withDefault pageData.pageData)
(Just model.key)
(config.onPageChange
{ protocol = model.url.protocol
, host = model.url.host
, port_ = model.url.port_
, path = url |> urlPathToPath config
, query = url.query
, fragment = url.fragment
, metadata = config.urlToRoute url
}
)
pageData.userModel
updatedModel : Model userModel pageData sharedData
updatedModel =
{ model
| url = url
, contentCache = updatedCache
, pageData = updatedPageData
}
in
( { updatedModel
| ariaNavigationAnnouncement = mainView config updatedModel |> .title
}
, Cmd.batch
[ userCmd |> Cmd.map UserMsg
, Task.perform (\_ -> PageScrollComplete) (Dom.setViewport 0 0)
]
)
Err error ->
{-
When there is an error loading the content.json, we are either
1) in the dev server, and should show the relevant DataSource error for the page
we're navigating to. This could be done more cleanly, but it's simplest to just
do a fresh page load and use the code path for presenting an error for a fresh page.
2) In a production app. That means we had a successful build, so there were no DataSource failures,
so the app must be stale (unless it's in some unexpected state from a bug). In the future,
it probably makes sense to include some sort of hash of the app version we are fetching, match
it with the current version that's running, and perform this logic when we see there is a mismatch.
But for now, if there is any error we do a full page load (not a single-page navigation), which
gives us a fresh version of the app to make sure things are in sync.
-}
( model
, url
|> Url.toString
|> Browser.Navigation.load
)
PageScrollComplete ->
( model, Cmd.none )
HotReloadComplete contentJson ->
let
urls : { currentUrl : Url, basePath : List String }
urls =
{ currentUrl = model.url
, basePath = config.basePath
}
pageDataResult : Result BuildError pageData
pageDataResult =
StaticHttpRequest.resolve ApplicationType.Browser
(config.data (config.urlToRoute model.url))
contentJson.staticData
|> Result.mapError (StaticHttpRequest.toBuildError model.url.path)
sharedDataResult : Result BuildError sharedData
sharedDataResult =
StaticHttpRequest.resolve ApplicationType.Browser
config.sharedData
contentJson.staticData
|> Result.mapError (StaticHttpRequest.toBuildError model.url.path)
from404ToNon404 : Bool
from404ToNon404 =
not contentJson.is404
&& was404
was404 : Bool
was404 =
ContentCache.is404 model.contentCache urls
in
case Result.map2 Tuple.pair sharedDataResult pageDataResult of
Ok ( sharedData, pageData ) ->
let
updateResult : Maybe ( userModel, Cmd userMsg )
updateResult =
if from404ToNon404 then
case model.pageData of
Ok pageData_ ->
config.update
sharedData
pageData
(Just model.key)
(config.onPageChange
{ protocol = model.url.protocol
, host = model.url.host
, port_ = model.url.port_
, path = model.url |> urlPathToPath config
, query = model.url.query
, fragment = model.url.fragment
, metadata = config.urlToRoute model.url
}
)
pageData_.userModel
|> Just
Err error ->
Nothing
else
Nothing
in
case updateResult of
Just ( userModel, userCmd ) ->
( { model
| contentCache =
ContentCache.init
(Just
( urls.currentUrl
|> config.urlToRoute
|> config.routeToPath
, contentJson
)
)
, pageData =
Ok
{ pageData = pageData
, sharedData = sharedData
, userModel = userModel
}
}
, Cmd.batch
[ userCmd |> Cmd.map UserMsg
]
)
Nothing ->
let
pagePath : Path
pagePath =
urlsToPagePath urls
userFlags : Pages.Flags.Flags
userFlags =
model.userFlags
|> Decode.decodeValue
(Decode.field "userFlags" Decode.value)
|> Result.withDefault Json.Encode.null
|> Pages.Flags.BrowserFlags
( userModel, userCmd ) =
Just
{ path =
{ path = pagePath
, query = model.url.query
, fragment = model.url.fragment
}
, metadata = config.urlToRoute model.url
, pageUrl =
Just
{ protocol = model.url.protocol
, host = model.url.host
, port_ = model.url.port_
, path = pagePath
, query = model.url.query |> Maybe.map QueryParams.fromString
, fragment = model.url.fragment
}
}
|> config.init userFlags sharedData pageData (Just model.key)
in
( { model
| contentCache =
ContentCache.init
(Just
( urls.currentUrl
|> config.urlToRoute
|> config.routeToPath
, contentJson
)
)
, pageData =
model.pageData
|> Result.map
(\previousPageData ->
{ pageData = pageData
, sharedData = sharedData
, userModel = previousPageData.userModel
}
)
|> Result.withDefault
{ pageData = pageData
, sharedData = sharedData
, userModel = userModel
}
|> Ok
}
, userCmd |> Cmd.map UserMsg
)
Err error ->
( { model
| contentCache =
ContentCache.init
(Just
( urls.currentUrl
|> config.urlToRoute
|> config.routeToPath
, contentJson
)
)
}
, Cmd.none
)
NoOp ->
( model, Cmd.none )
{-| -}
application :
ProgramConfig userMsg userModel route staticData pageData sharedData
-> Platform.Program Flags (Model userModel pageData sharedData) (Msg userMsg)
application config =
Browser.application
{ init =
\flags url key ->
init config flags url key
, view = view config
, update = update config
, subscriptions =
\model ->
let
urls : { currentUrl : Url }
urls =
{ currentUrl = model.url }
in
case model.pageData of
Ok pageData ->
Sub.batch
[ config.subscriptions (model.url |> config.urlToRoute)
(urls.currentUrl |> config.urlToRoute |> config.routeToPath |> Path.join)
pageData.userModel
|> Sub.map UserMsg
, config.fromJsPort
|> Sub.map
(\decodeValue ->
case decodeValue |> Decode.decodeValue (Decode.field "contentJson" contentJsonDecoder) of
Ok contentJson ->
HotReloadComplete contentJson
Err _ ->
-- TODO should be no message here
NoOp
)
]
Err _ ->
config.fromJsPort
|> Sub.map
(\decodeValue ->
case decodeValue |> Decode.decodeValue (Decode.field "contentJson" contentJsonDecoder) of
Ok contentJson ->
HotReloadComplete contentJson
Err _ ->
-- TODO should be no message here
NoOp
)
, onUrlChange = UrlChanged
, onUrlRequest = LinkClicked
}
urlPathToPath : ProgramConfig userMsg userModel route siteData pageData sharedData -> Url -> Path
urlPathToPath config urls =
urls.path |> Path.fromString