aboutsummaryrefslogtreecommitdiff
path: root/src/View/Timer.elm
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-03-16 00:15:05 +0100
committerJoris Guyonvarch2015-03-16 00:15:05 +0100
commitcd3b37adebca99138fad1acca37908183036ace9 (patch)
treed566ae0564d82ab94901e4deda98f36abd22ad2d /src/View/Timer.elm
Initial commit, can create and name 5 minute timers, can toggle running state
Diffstat (limited to 'src/View/Timer.elm')
-rw-r--r--src/View/Timer.elm37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/View/Timer.elm b/src/View/Timer.elm
new file mode 100644
index 0000000..668bf08
--- /dev/null
+++ b/src/View/Timer.elm
@@ -0,0 +1,37 @@
+module View.Timer
+ ( timerView
+ ) where
+
+import Html (..)
+import Html.Attributes (..)
+import Html.Events (..)
+import String
+import Time (Time)
+import Signal
+
+import Model.Timer (..)
+import Model.Id (..)
+
+import Update.Update (..)
+import Update.UpdateTimer (..)
+
+timerView : (Id, Timer) -> Html
+timerView (id, timer) =
+ div
+ [ class "timer" ]
+ [ div
+ [ class "block" ]
+ [ text timer.name ]
+ , div
+ [ class <| "timerTime block" ++ (if timer.isRunning then " isRunning" else "")
+ , onClick (Signal.send updates (UpdateTimer id ToggleRunning))
+ ]
+ [ text (timeView timer.time) ]
+ ]
+
+timeView : Time -> String
+timeView time =
+ let totalSeconds = truncate (time / 1000)
+ totalMinutes = totalSeconds // 60
+ restSeconds = totalSeconds `rem` 60
+ in (toString totalMinutes) ++ ":" ++ (String.padLeft 2 '0' (toString restSeconds))