-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.elm
252 lines (188 loc) · 4.5 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
module Main exposing (..)
import Html exposing (..)
import Html.App as Html
import Html.Events exposing (..)
import Time exposing (Time)
import String
import Task
import Styles
main : Program Never
main =
Html.program
{ init = init
, update = update
, view = view "Chronographify"
, subscriptions = millis
}
-- Subscriptions
millis : Model -> Sub Msg
millis model =
Time.every (Time.millisecond * 16) TimeChange
-- Model
type alias Model =
{ startTimestamp : Time
, laps : List Time
, isTiming : Bool
, currentTimestamp : Time
, durationOnStop : Time
, lapDurationOnStop : Time
, lastLapTimestamp : Time
}
init : ( Model, Cmd a )
init =
( { startTimestamp = 0
, laps = []
, isTiming = False
, currentTimestamp = 0
, durationOnStop = 0
, lapDurationOnStop = 0
, lastLapTimestamp = 0
}
, Cmd.none
)
-- Update
type Msg
= ReceiveTimestamp UserAction Time
| TimeChange Time
| ButtonPress UserAction
| NoOp
type UserAction
= Start
| Stop
| Lap
| Reset
update : Msg -> Model -> ( Model, Cmd Msg )
update change state =
case change of
ButtonPress userAction ->
( state, Task.perform (\_ -> NoOp) (ReceiveTimestamp userAction) Time.now )
ReceiveTimestamp userAction time ->
case userAction of
Start ->
( handleStart time state, Cmd.none )
Stop ->
( handleStop time state, Cmd.none )
Lap ->
( handleLap time state, Cmd.none )
Reset ->
init
TimeChange time ->
if state.isTiming then
( { state | currentTimestamp = time }, Cmd.none )
else
( state, Cmd.none )
NoOp ->
( state, Cmd.none )
handleStart : Time -> Model -> Model
handleStart time state =
{ state
| isTiming = True
, startTimestamp = time
, lastLapTimestamp = time
}
handleStop : Time -> Model -> Model
handleStop time state =
let
duration =
state.durationOnStop + time - state.startTimestamp
in
{ state
| isTiming = False
, durationOnStop = duration
, lapDurationOnStop = duration - (total state.laps)
}
handleLap : Time -> Model -> Model
handleLap time state =
{ state
| laps = (state.lapDurationOnStop + time - state.lastLapTimestamp) :: state.laps
, lastLapTimestamp = time
, lapDurationOnStop = 0
}
total : List Time -> Time
total laps =
List.foldl (+) 0 laps
millisToString : Time -> String
millisToString millis =
let
minutes =
floor (millis / (60 * 1000))
seconds =
floor (millis / 1000) `rem` 60
centiseconds =
(floor millis `rem` 1000) // 10
pad n =
String.padLeft 2 '0' (toString n)
in
(pad minutes) ++ ":" ++ (pad seconds) ++ "," ++ (pad centiseconds)
-- View
view : String -> Model -> Html Msg
view heading model =
div []
[ header heading
, timers model
, buttonRow model.isTiming
, lapsList model.laps
]
header : String -> Html Msg
header heading =
div [ Styles.header ]
[ text heading ]
timers : Model -> Html Msg
timers model =
let
timeDiff =
model.currentTimestamp - model.startTimestamp
currentDuration =
if model.isTiming then
model.durationOnStop + timeDiff
else
model.durationOnStop
lapDuration =
currentDuration - total model.laps
in
div [ Styles.timersWrapper ]
[ div [ Styles.timers ]
[ div [ Styles.lapTimer ] [ text (millisToString lapDuration) ]
, div [ Styles.totalTimer ] [ text (millisToString currentDuration) ]
]
]
buttonRow : Bool -> Html Msg
buttonRow isTiming =
div [ Styles.buttonRow ]
<| if isTiming then
[ actionButton Stop
, actionButton Lap
]
else
[ actionButton Start
, actionButton Reset
]
lapsList : List Time -> Html Msg
lapsList laps =
ul [ Styles.laps ]
(laps
|> List.reverse
|> List.indexedMap lapEntry
|> List.reverse
)
actionButton : UserAction -> Html Msg
actionButton action =
button
[ onClick (ButtonPress action)
, (Styles.actionButton (toString action))
]
[ text (toString action) ]
lapEntry : Int -> Time -> Html Msg
lapEntry index entry =
let
lapNumber =
(toString (index + 1)) ++ "."
in
li [ Styles.lapEntry ]
[ span [ Styles.lapNumber ] [ text lapNumber ]
, span [ Styles.lapTime ] [ text (millisToString entry) ]
]
viewLine : String -> Html Msg
viewLine lineText =
div [ Styles.textBlock ]
[ text lineText ]