-
Notifications
You must be signed in to change notification settings - Fork 5
/
Main.elm
387 lines (314 loc) · 9.23 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
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
module Main exposing (..)
import Browser
import Browser.Navigation as Nav
import Html exposing (Html, a, article, button, div, h1, h2, header, nav, p, span, text)
import Html.Attributes exposing (class, href, id, style, target)
import Html.Events exposing (onClick)
import Http
import Json.Decode as Decode
import Markdown
import Random
import Random.List
import RemoteData exposing (RemoteData(..), WebData)
import Set
import Url
import Url.Builder
import Url.Parser exposing ((</>))
type Route
= QuoteRoute Int Int
| Index
| AllQuotes
| NotFound
| Ben
routes : Url.Parser.Parser (Route -> a) a
routes = Url.Parser.s "#" </>
Url.Parser.oneOf
[ Url.Parser.map QuoteRoute (Url.Parser.int </> Url.Parser.int)
, Url.Parser.map AllQuotes (Url.Parser.s "all")
, Url.Parser.map Index Url.Parser.top
, Url.Parser.map Ben (Url.Parser.s "ben")
]
type alias Model =
{ quotes : WebData (List Quote)
, key : Nav.Key
, route : Route
}
type Error
= QuoteSelectError Int Int
type Msg
= Refresh
| DataResponse (WebData (List Quote))
| NewQuote ( Maybe Int, List Int )
| Goto Route
| UrlChanged Url.Url
| LinkClicked Browser.UrlRequest
type alias Quote =
{ book : Int
, section : Int
, content : List String
}
main : Program () Model Msg
main =
Browser.application
{ init = init
, view = view
, update = update
, subscriptions = \_ -> Sub.none
, onUrlRequest = LinkClicked
, onUrlChange = UrlChanged
}
init : () -> Url.Url -> Nav.Key -> ( Model, Cmd Msg )
init flags url key =
( { quotes = Loading
, key = key
, route = Index
}
, fetch
)
randomQuote : Model -> Cmd Msg
randomQuote model =
RemoteData.withDefault [] model.quotes
|> List.length
|> List.range 0
|> Random.List.choose
|> Random.generate NewQuote
update : Msg -> Model -> ( Model, Cmd Msg )
update msg model =
case msg of
Refresh ->
( model, randomQuote model )
DataResponse resp ->
let
cmd =
case model.route of
Index ->
randomQuote model
_ ->
Cmd.none
in
( { model | quotes = resp }, cmd )
NewQuote ( Nothing, _ ) ->
( model, Cmd.none )
NewQuote ( Just i, _ ) ->
case RemoteData.map (get i) model.quotes of
Success (Just quote) ->
( { model | route = QuoteRoute quote.book quote.section }
, Url.Builder.absolute
[ "#"
, String.fromInt quote.book
, String.fromInt quote.section
]
[]
|> Nav.pushUrl model.key
)
_ ->
( model, Cmd.none )
Goto route ->
( { model | route = route }, Cmd.none )
UrlChanged url ->
-- not sure how to use this, the parser always seems to fail, so
-- I'll just ignore this action. anyway it works.
case Url.Parser.parse routes url of
Just route ->
( model, Cmd.none )
Nothing ->
( model, Cmd.none )
LinkClicked urlRequest ->
case urlRequest of
Browser.Internal url ->
( model, Nav.pushUrl model.key (Url.toString url) )
Browser.External href ->
( model, Nav.load href )
shoveWebData : (a -> Html Msg) -> WebData a -> Html Msg
shoveWebData viewer data =
case data of
NotAsked ->
p [] [ text "Initializing." ]
Loading ->
p [] [ text "Loading..." ]
Failure err ->
div []
[ p [] [ text <| "Error: " ] -- ++ err ]
, div [ class "content" ] <|
Markdown.toHtml Nothing
"""
Try refreshing?
If the problem persists, please report
the error at [GitHub](https://github.com/bsima/aurelius/issues)
and I will fix it right away. Thanks!
"""
]
Success stuff ->
viewer stuff
view : Model -> Browser.Document Msg
view model =
case model.route of
Index ->
wrap <| p [] [ text "Loading..." ]
AllQuotes ->
model.quotes
|> shoveWebData (\xs -> div [] <| List.map quoteView_ xs)
|> wrap
QuoteRoute book section ->
shoveWebData (quoteView book section) model.quotes
|> wrap
Ben ->
model.quotes
|> shoveWebData (List.filterMap isaFav >> List.map quoteView_ >> div [])
|> wrap
NotFound ->
wrap <| p [] [ text "Not Found..." ]
wrap : Html Msg -> Browser.Document Msg
wrap kids =
{ title = "Marcus Aurelius"
, body =
[ div []
[ navbar
, div
[ id "content", class "wrapper" ]
[ h1 [] [ text "Marcus Aurelius" ]
, p [ class "subtitle" ] [ text "Meditations" ]
, kids
]
]
]
}
navbar : Html Msg
navbar =
header [ class "scroll wrapper" ]
[ nav []
[ a
[ href "#"
, id "refresh"
, onClick Refresh
]
[ text "Refresh" ]
, a [ href "#", onClick <| Goto AllQuotes ] [ text "All Quotes" ]
, a
[ href "https://goo.gl/forms/zivB95KX91rzcPHT2"
, target "_blank"
]
[ text "Submit a Quote" ]
, a
[ href "https://github.com/bsima/aurelius"
, target "_blank"
]
[ text "GitHub" ]
]
]
isaFav : Quote -> Maybe Quote
isaFav quote =
if Set.member ( quote.book, quote.section ) bensFavs then
Just quote
else
Nothing
bensFavs : Set.Set ( Int, Int )
bensFavs =
Set.fromList
[ ( 2, 1 )
, ( 2, 5 )
, ( 3, 5 )
, ( 3, 10 )
, ( 4, 7 )
, ( 5, 1 )
, ( 5, 20 )
, ( 5, 22 )
, ( 5, 37 )
, ( 6, 2 )
, ( 6, 6 )
, ( 6, 13 )
, ( 6, 39 )
, ( 6, 45 )
, ( 6, 48 )
, ( 6, 53 )
, ( 7, 22 )
, ( 7, 59 )
, ( 7, 69 )
, ( 9, 4 )
, ( 9, 5 )
, ( 9, 40 )
, ( 10, 1 )
, ( 10, 16 )
, ( 10, 27 )
, ( 10, 29 )
, ( 11, 7 )
]
listGet : Int -> List a -> Maybe a
listGet i =
List.head << List.drop i
get : Int -> List Quote -> Maybe Quote
get i quotes =
listGet i quotes
select : Int -> Int -> List Quote -> Result Error Quote
select book section quotes =
let
pred q =
if q.book == book && q.section == section then
True
else
False
in
case List.filter pred quotes of
x :: xs ->
Result.Ok x
_ ->
Result.Err (QuoteSelectError book section)
quoteView_ : Quote -> Html Msg
quoteView_ quote =
div []
[ viewMeta quote
, quote.content
|> String.join "\n\n"
|> Markdown.toHtml Nothing
|> article [ class "content" ]
]
quoteView : Int -> Int -> List Quote -> Html Msg
quoteView book section quotes =
let
helpMsg =
Markdown.toHtml Nothing
"""This is an open source project, and not all of the
_Meditations_ are transcribed yet. If you would like to add a
quote from the _Meditations_, please consider helping out at
[the GitHub project](https://github.com/bsima/aurelius). Thanks!"""
in
case select book section quotes of
Ok quote ->
quoteView_ quote
Err (QuoteSelectError b s) ->
div []
[ h2 []
[ text <|
"Could not find Book "
++ String.fromInt b
++ ", Section "
++ String.fromInt s
++ ". "
]
, article [ class "content" ] helpMsg
]
viewMeta : Quote -> Html Msg
viewMeta q =
h2 []
[ text <|
"Book "
++ String.fromInt q.book
++ ", Section "
++ String.fromInt q.section
]
uri : String
uri =
"https://raw.githubusercontent.com/bsima/aurelius/gh-pages/data/marcus.json"
fetch : Cmd Msg
fetch =
Http.get
{ url = "https://raw.githubusercontent.com/bsima/aurelius/gh-pages/data/marcus.json"
, expect = Http.expectJson (RemoteData.fromResult >> DataResponse) decode
}
decode : Decode.Decoder (List Quote)
decode =
Decode.list <|
Decode.map3 Quote
(Decode.field "book" Decode.int)
(Decode.field "section" Decode.int)
(Decode.field "quote" (Decode.list Decode.string))