-
Notifications
You must be signed in to change notification settings - Fork 0
/
Timer.gren
126 lines (106 loc) · 2.51 KB
/
Timer.gren
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
module Timer exposing ( main )
import Browser
import Html exposing ( Html )
import Html.Attributes as Attribute
import Html.Events as Event
import Layout exposing ( box, cluster, stack )
import Time
main =
Browser.element
{ init = init
, view = view
, update =
\msg model ->
{ model = update msg model
, command = Cmd.none
}
, subscriptions = subscriptions
}
type alias Model =
{ tick : Float
, limit : Float
}
init :
{}
-> { model : Model
, command : Cmd Msg
}
init _ =
{ model =
{ tick = 0
, limit = 30
}
, command = Cmd.none
}
subscriptions : Model -> Sub Msg
subscriptions model =
if model.tick < model.limit then
Time.every 100 Tick
else
Sub.none
type Msg
= Tick Time.Posix
| OnInputDuration String
| OnClickReset
update : Msg -> Model -> Model
update msg model =
case msg of
Tick _ ->
{ model | tick = model.tick + 1 }
OnInputDuration value ->
{ model
| limit =
String.toFloat value
|> Maybe.withDefault 0
}
OnClickReset ->
{ model | tick = 0 }
view : Model -> Html Msg
view model =
let
value =
String.fromFloat model.tick
max =
String.fromFloat model.limit
in
box
[ stack
[ cluster
[ Html.p
[]
[ Html.text (formatSeconds model.tick)
]
, Html.p
[]
[ Html.text (formatSeconds model.limit)
]
]
, Html.progress
[ Attribute.value value
, Attribute.max max
]
[]
, Html.input
[ Attribute.type_ "range"
, Attribute.value max
, Attribute.max "100"
, Event.onInput OnInputDuration
]
[]
, Html.button
[ Event.onClick OnClickReset
]
[ Html.text "Reset"
]
]
]
formatSeconds : Float -> String
formatSeconds value =
let
seconds =
String.fromFloat (value / 10)
in
if String.contains "." seconds then
seconds ++ "s"
else
seconds ++ ".0s"