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))