-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgrissStore.elm
More file actions
552 lines (413 loc) · 15.5 KB
/
ProgrissStore.elm
File metadata and controls
552 lines (413 loc) · 15.5 KB
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
module ProgrissStore
exposing
( Action
, ActionId
, ActionState(..)
, Context
, ContextId
, ProgrissStore
, Project
, ProjectId
, associateActionToAnywhereContext
, associateActionToContext
, associateActionToNoProject
, associateActionToProject
, createAction
, createContext
, createProject
, decoder
, empty
, encoder
, getActionsForContext
, getActionsForProject
, getActionsWithoutContext
, getActionsWithoutProject
, getAllActions
, getAllContexts
, getAllProjects
, getAllSettings
, getContext
, getContextForAction
, getNotesForProject
, getProjectForAction
, toggleActionDone
, updateAction
, updateSettings
)
import Dict exposing (Dict)
import Json.Decode exposing (Decoder, float, int, nullable, string)
import Json.Decode.Pipeline exposing (decode, hardcoded, optional, required)
import Json.Encode
import SettingsStore exposing (SettingsStore)
import Time exposing (Time)
type ProgrissStore
= ProgrissStore Store
type alias Store =
{ projects : Dict Int ProjectData
, actions : Dict Int ActionData
, contexts : Dict Int ContextData
, notes : Dict Int NoteData
, settings : SettingsStore
}
type alias ActionData =
{ description : String
, contextId : Maybe Int
, projectId : Maybe Int
, state : ActionState
}
type alias ProjectData =
{ title : String }
type alias ContextData =
{ name : String }
type alias NoteData =
{ body : String, projectId : Int }
{--Don't add the relationships to these records, because we might switch a graph implementation. Use
the store to find a project or context for an action. --}
type alias Action =
{ id : ActionId, description : String, state : ActionState }
type alias Project =
{ id : ProjectId, title : String }
type alias Context =
{ id : ContextId, name : String }
type alias Note =
{ id : NoteId, body : String }
type ActionId
= ActionId Int
type ActionState
= Active
| Done Time
| Deleted Time
type ContextId
= ContextId Int
type ProjectId
= ProjectId Int
type NoteId
= NoteId Int
empty : ProgrissStore
empty =
ProgrissStore
{ projects = Dict.empty
, actions = Dict.empty
, contexts = Dict.empty
, notes = Dict.empty
, settings = SettingsStore.initialStore
}
createAction : String -> ProgrissStore -> ( ActionId, ProgrissStore )
createAction description (ProgrissStore store) =
let
updatedActions =
Dict.insert
(getNextFreeId store.actions)
(ActionData description Nothing Nothing Active)
store.actions
in
( ActionId (getNextFreeId store.actions)
, ProgrissStore { store | actions = updatedActions }
)
createContext : String -> ProgrissStore -> ProgrissStore
createContext name (ProgrissStore store) =
let
updatedContexts =
Dict.insert (getNextFreeId store.contexts) (ContextData name) store.contexts
in
ProgrissStore { store | contexts = updatedContexts }
createProject : String -> ProgrissStore -> ProgrissStore
createProject name (ProgrissStore store) =
let
updatedProjects =
Dict.insert (getNextFreeId store.projects) (ProjectData name) store.projects
in
ProgrissStore { store | projects = updatedProjects }
getNextFreeId : Dict Int a -> Int
getNextFreeId dictionary =
dictionary
|> Dict.keys
|> List.maximum
|> Maybe.withDefault 0
|> (+) 1
updateAction : Action -> ProgrissStore -> ProgrissStore
updateAction action (ProgrissStore store) =
case action.id of
ActionId actionId ->
let
updatedActions =
Dict.update
actionId
(Maybe.map
(\actionData ->
{ actionData
| description = action.description
, state = action.state
}
)
)
store.actions
in
ProgrissStore { store | actions = updatedActions }
toggleActionDone : ActionId -> ProgrissStore -> ProgrissStore
toggleActionDone (ActionId actionId) (ProgrissStore store) =
let
updatedActions =
Dict.update
actionId
(Maybe.map actionsStateAfterToggle)
store.actions
in
ProgrissStore { store | actions = updatedActions }
actionsStateAfterToggle : ActionData -> ActionData
actionsStateAfterToggle actionData =
let
updatedState =
case actionData.state of
Done time ->
Active
Active ->
Done 0
Deleted time ->
Deleted time
in
{ actionData | state = updatedState }
associateActionToContext : ActionId -> ContextId -> ProgrissStore -> ProgrissStore
associateActionToContext (ActionId actionId) (ContextId contextId) (ProgrissStore store) =
let
updatedActions =
Dict.update
actionId
(Maybe.map (\actionData -> { actionData | contextId = Just contextId }))
store.actions
in
ProgrissStore { store | actions = updatedActions }
associateActionToAnywhereContext : ActionId -> ProgrissStore -> ProgrissStore
associateActionToAnywhereContext (ActionId actionId) (ProgrissStore store) =
let
updatedActions =
Dict.update
actionId
(Maybe.map (\actionData -> { actionData | contextId = Nothing }))
store.actions
in
ProgrissStore { store | actions = updatedActions }
associateActionToNoProject : ActionId -> ProgrissStore -> ProgrissStore
associateActionToNoProject (ActionId actionId) (ProgrissStore store) =
let
updatedActions =
Dict.update
actionId
(Maybe.map (\actionData -> { actionData | projectId = Nothing }))
store.actions
in
ProgrissStore { store | actions = updatedActions }
associateActionToProject : ActionId -> ProjectId -> ProgrissStore -> ProgrissStore
associateActionToProject (ActionId actionId) (ProjectId projectId) (ProgrissStore store) =
let
updatedActions =
Dict.update
actionId
(Maybe.map (\actionData -> { actionData | projectId = Just projectId }))
store.actions
in
ProgrissStore { store | actions = updatedActions }
updateSettings : ProgrissStore -> SettingsStore -> ProgrissStore
updateSettings (ProgrissStore store) settings =
ProgrissStore { store | settings = settings }
--Retrieving data from the store
getAllActions : ProgrissStore -> List Action
getAllActions (ProgrissStore store) =
store.actions
|> Dict.toList
|> List.map castActionDataToAction
getActionsWithoutContext : ProgrissStore -> List Action
getActionsWithoutContext (ProgrissStore store) =
store.actions
|> Dict.filter (\id actionData -> actionData.contextId == Nothing)
|> Dict.toList
|> List.map castActionDataToAction
getActionsWithoutProject : ProgrissStore -> List Action
getActionsWithoutProject (ProgrissStore store) =
store.actions
|> Dict.filter (\id actionData -> actionData.projectId == Nothing)
|> Dict.toList
|> List.map castActionDataToAction
getActionsForContext : ContextId -> ProgrissStore -> List Action
getActionsForContext (ContextId contextId) (ProgrissStore store) =
Dict.toList store.actions
|> List.filter (\( id, actionData ) -> actionData.contextId == Just contextId)
|> List.map castActionDataToAction
getContext : ContextId -> ProgrissStore -> Maybe Context
getContext (ContextId contextId) (ProgrissStore store) =
Dict.get contextId store.contexts
|> Maybe.map (\contextData -> ( contextId, contextData ))
|> Maybe.map castContextDataToContext
getActionsForProject : ProjectId -> ProgrissStore -> List Action
getActionsForProject (ProjectId projectId) (ProgrissStore store) =
Dict.toList store.actions
|> List.filter (\( id, actionData ) -> actionData.projectId == Just projectId)
|> List.map castActionDataToAction
getNotesForProject : ProjectId -> ProgrissStore -> List Note
getNotesForProject (ProjectId projectId) (ProgrissStore store) =
Dict.toList store.notes
|> List.filter (\( id, noteData ) -> noteData.projectId == projectId)
|> List.map castNoteDataToNote
getContextForAction : ActionId -> ProgrissStore -> Maybe Context
getContextForAction (ActionId actionId) (ProgrissStore store) =
Dict.get actionId store.actions
|> Maybe.andThen (\action -> action.contextId)
|> Maybe.andThen (\contextId -> Maybe.map (\context -> ( contextId, context )) (Dict.get contextId store.contexts))
|> Maybe.map castContextDataToContext
getProjectForAction : ActionId -> ProgrissStore -> Maybe Project
getProjectForAction (ActionId actionId) (ProgrissStore store) =
Dict.get actionId store.actions
|> Maybe.andThen (\action -> action.projectId)
|> Maybe.andThen (\projectId -> Maybe.map (\project -> ( projectId, project )) (Dict.get projectId store.projects))
|> Maybe.map castProjectDataToProject
getAllContexts : ProgrissStore -> List Context
getAllContexts (ProgrissStore store) =
Dict.toList store.contexts
|> List.map castContextDataToContext
getAllProjects : ProgrissStore -> List Project
getAllProjects (ProgrissStore store) =
Dict.toList store.projects
|> List.map castProjectDataToProject
getAllSettings : ProgrissStore -> SettingsStore
getAllSettings (ProgrissStore store) =
store.settings
castActionDataToAction : ( Int, ActionData ) -> Action
castActionDataToAction ( id, actionData ) =
Action (ActionId id) actionData.description actionData.state
castProjectDataToProject : ( Int, ProjectData ) -> Project
castProjectDataToProject ( id, projectData ) =
Project (ProjectId id) projectData.title
castContextDataToContext : ( Int, ContextData ) -> Context
castContextDataToContext ( id, contextData ) =
Context (ContextId id) contextData.name
castNoteDataToNote : ( Int, NoteData ) -> Note
castNoteDataToNote ( id, noteData ) =
Note (NoteId id) noteData.body
-- Decoding
decoder : Decoder ProgrissStore
decoder =
decode progrissStoreConstructor
|> optional "actions" (Json.Decode.list actionDecoder) []
|> optional "contexts" (Json.Decode.list contextDecoder) []
|> optional "projects" (Json.Decode.list projectDecoder) []
|> optional "notes" (Json.Decode.list noteDecoder) []
progrissStoreConstructor : List ( Int, ActionData ) -> List ( Int, ContextData ) -> List ( Int, ProjectData ) -> List ( Int, NoteData ) -> ProgrissStore
progrissStoreConstructor actions contexts projects notes =
ProgrissStore
{ actions = Dict.fromList actions
, contexts = Dict.fromList contexts
, projects = Dict.fromList projects
, notes = Dict.fromList notes
, settings = SettingsStore.initialStore
}
actionDecoder : Decoder ( Int, ActionData )
actionDecoder =
decode actionDataConstructor
|> required "id" int
|> required "description" string
|> optional "context_id" (nullable int) Nothing
|> optional "project_id" (nullable int) Nothing
|> optional "finished_at" (nullable float) Nothing
|> optional "deleted_at" (nullable float) Nothing
noteDecoder : Decoder ( Int, NoteData )
noteDecoder =
decode noteDataConstructor
|> required "id" int
|> required "body" string
|> required "project_id" int
projectDecoder : Decoder ( Int, ProjectData )
projectDecoder =
decode projectDataConstructor
|> required "id" int
|> required "title" string
contextDecoder : Decoder ( Int, ContextData )
contextDecoder =
decode contextDataConstructor
|> required "id" int
|> required "name" string
actionDataConstructor : Int -> String -> Maybe Int -> Maybe Int -> Maybe Time -> Maybe Time -> ( Int, ActionData )
actionDataConstructor id description maybeContextId maybeProjectId finishedAt deletedAt =
let
state =
case deletedAt of
Nothing ->
case finishedAt of
Nothing ->
Active
Just time ->
Done time
Just time ->
Deleted time
in
( id, ActionData description maybeContextId maybeProjectId state )
contextDataConstructor : Int -> String -> ( Int, ContextData )
contextDataConstructor id name =
( id, ContextData name )
projectDataConstructor : Int -> String -> ( Int, ProjectData )
projectDataConstructor id title =
( id, ProjectData title )
noteDataConstructor : Int -> String -> Int -> ( Int, NoteData )
noteDataConstructor id content projectId =
( id, NoteData content projectId )
-- Encoding
encoder : ProgrissStore -> Json.Decode.Value
encoder (ProgrissStore store) =
Json.Encode.object
[ ( "actions", Json.Encode.list (List.map encodeAction (store.actions |> Dict.toList)) )
, ( "contexts", Json.Encode.list (List.map encodeContext (store.contexts |> Dict.toList)) )
, ( "projects", Json.Encode.list (List.map encodeProject (store.projects |> Dict.toList)) )
, ( "notes", Json.Encode.list (List.map encodeNote (store.notes |> Dict.toList)) )
]
encodeAction : ( Int, ActionData ) -> Json.Decode.Value
encodeAction ( id, actionData ) =
Json.Encode.object
[ ( "id", Json.Encode.int id )
, ( "description", Json.Encode.string actionData.description )
, ( "context_id"
, case actionData.contextId of
Nothing ->
Json.Encode.null
Just contextId ->
Json.Encode.int contextId
)
, ( "project_id"
, case actionData.projectId of
Nothing ->
Json.Encode.null
Just projectId ->
Json.Encode.int projectId
)
, ( "deleted_at"
, case actionData.state of
Deleted time ->
Json.Encode.float time
_ ->
Json.Encode.null
)
, ( "finished_at"
, case actionData.state of
Done time ->
Json.Encode.float time
_ ->
Json.Encode.null
)
]
encodeContext : ( Int, ContextData ) -> Json.Decode.Value
encodeContext ( id, contextData ) =
Json.Encode.object
[ ( "id", Json.Encode.int id )
, ( "name", Json.Encode.string contextData.name )
]
encodeProject : ( Int, ProjectData ) -> Json.Decode.Value
encodeProject ( id, projectData ) =
Json.Encode.object
[ ( "id", Json.Encode.int id )
, ( "title", Json.Encode.string projectData.title )
]
encodeNote : ( Int, NoteData ) -> Json.Decode.Value
encodeNote ( id, noteData ) =
Json.Encode.object
[ ( "id", Json.Encode.int id )
, ( "body", Json.Encode.string noteData.body )
, ( "project_id", Json.Encode.int noteData.projectId )
]