aboutsummaryrefslogtreecommitdiff
path: root/src/Update/Update.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/Update/Update.elm
Initial commit, can create and name 5 minute timers, can toggle running state
Diffstat (limited to 'src/Update/Update.elm')
-rw-r--r--src/Update/Update.elm48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/Update/Update.elm b/src/Update/Update.elm
new file mode 100644
index 0000000..0252fc8
--- /dev/null
+++ b/src/Update/Update.elm
@@ -0,0 +1,48 @@
+module Update.Update
+ ( Action(..)
+ , updates
+ , update
+ ) where
+
+import Signal
+import Dict
+import Time (Time)
+import Maybe
+
+import Model.Model (..)
+import Model.Timer (..)
+import Model.Id (..)
+import Model.IdGenerator (..)
+
+import Update.UpdateTimer (..)
+
+type Action =
+ NoOp
+ | RenameNewTimer String
+ | AddNewTimer
+ | DeltaTime Time
+ | UpdateTimer Id TimerAction
+
+updates : Signal.Channel Action
+updates = Signal.channel NoOp
+
+update : Action -> Model -> Model
+update action model =
+ case action of
+ NoOp -> model
+ RenameNewTimer name ->
+ { model | newTimerName <- name }
+ AddNewTimer ->
+ let (id, newTimerIdGenerator) = getId model.timerIdGenerator
+ in { model
+ | timers <- Dict.insert id (initialTimer model.currentTime model.newTimerName) model.timers
+ , timerIdGenerator <- newTimerIdGenerator
+ , newTimerName <- ""
+ }
+ DeltaTime delta ->
+ { model
+ | currentTime <- model.currentTime + delta
+ , timers <- substractTimersTime delta model.timers
+ }
+ UpdateTimer id action ->
+ { model | timers <- Dict.update id (Maybe.map (updateTimer action)) model.timers }