-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModel.elm
268 lines (233 loc) · 6.64 KB
/
Model.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
module Model exposing (..)
-- Model
type Msg
= UpdateStatus Int
| NewTitle String
| NewContent String
| NewBearer String
| AddStep
| DeleteStep Int
| NewTorch Int
| CancelNewTorch
| AddTorch Int
| ChangeAllMandatory Int Bool
type Status
= Todo
| Done
type alias Torch =
{ -- Only used to know which torch we're editing/doing. Not ordered.
id : Int
, title : String
, content : String
, bearer : String
, status : Status
}
type alias Step =
{ torchList : List Torch
, allMandatory : Bool
}
type alias Workflow =
List Step
type alias Model =
{ workflow : Workflow
, currentId : Int
, title : String
, content : String
, bearer : String
, newTorch : Maybe Int
}
init : ( Model, Cmd Msg )
init =
(Model
[ Step
[ (Torch
0
"Build a workflow tool"
"It should be a very simple tool, very basic, used as a proof of concept"
"magopian@mozilla.com"
Done
)
]
True
, Step
[ (Torch
1
"Edit the workflow"
"Add steps, add torches to steps, change step to be 'all mandatory' or not"
"magopian@mozilla.com"
Todo
)
]
True
, Step
[ Torch
2
"Review"
"Have a review from natim"
"rhubscher@mozilla.com"
Todo
, Torch
3
"Review"
"Have a review from n1k0"
"nperriault@mozilla.com"
Todo
, Torch
4
"Review"
"Have a review from glasserc"
"eglassercamp@mozilla.com"
Todo
]
False
, Step
[ Torch
5
"Build the proof of concept"
"`npm run build`"
"magopian@mozilla.com"
Todo
, Torch
6
"Publish to github pages"
"`npm run publish-to-gh-pages` then visit https://magopian.github.io/pass-the-torch/index.html"
"magopian@mozilla.com"
Todo
]
True
, Step
[ (Torch
7
"Profit"
"The workflow ended, time to celebrate!"
"@all"
Todo
)
]
True
]
8
""
""
""
Nothing
)
! []
-- Update
update : Msg -> Model -> ( Model, Cmd Msg )
update message model =
case message of
UpdateStatus id ->
let
updatedWorkflow =
updateTorch
id
(\torch ->
{ torch
| status =
if torch.status == Done then
Todo
else
Done
}
)
model.workflow
in
{ model | workflow = updatedWorkflow } ! []
NewTitle title ->
{ model | title = title } ! []
NewContent content ->
{ model | content = content } ! []
NewBearer bearer ->
{ model | bearer = bearer } ! []
AddStep ->
let
newTorch =
Torch
model.currentId
model.title
model.content
model.bearer
Todo
in
{ model
| title = ""
, content = ""
, bearer = ""
, currentId = model.currentId + 1
, workflow = model.workflow ++ [ Step [ newTorch ] True ]
}
! []
DeleteStep index ->
let
newWorkflow =
(List.take index model.workflow)
++ (List.drop (index + 1) model.workflow)
in
{ model | workflow = newWorkflow } ! []
NewTorch index ->
{ model | newTorch = Just index } ! []
CancelNewTorch ->
{ model | newTorch = Nothing } ! []
AddTorch index ->
let
newTorch =
Torch
model.currentId
model.title
model.content
model.bearer
Todo
updatedWorkflow =
updateStep
index
(\step ->
{ step | torchList = step.torchList ++ [ newTorch ] }
)
model.workflow
in
{ model
| title = ""
, content = ""
, bearer = ""
, currentId = model.currentId + 1
, newTorch = Nothing
, workflow = updatedWorkflow
}
! []
ChangeAllMandatory index allMandatory ->
let
updatedWorkflow =
updateStep
index
(\step ->
{ step | allMandatory = allMandatory }
)
model.workflow
in
{ model | workflow = updatedWorkflow } ! []
updateStep : Int -> (Step -> Step) -> Workflow -> Workflow
updateStep id updateFunction workflow =
let
changeStep : Int -> Step -> Step
changeStep stepIndex step =
if stepIndex == id then
updateFunction step
else
step
in
List.indexedMap changeStep workflow
updateTorch : Int -> (Torch -> Torch) -> Workflow -> Workflow
updateTorch id updateFunction workflow =
let
changeTorch : Torch -> Torch
changeTorch torch =
if torch.id == id then
updateFunction torch
else
torch
changeStep : Step -> Step
changeStep step =
{ step | torchList = List.map changeTorch step.torchList }
in
List.map changeStep workflow