Created
December 4, 2015 15:21
-
-
Save codedmart/a74edab6273037d02185 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update :: Action -> AppState -> AppState | |
update action state = case action of | |
Update st -> st | |
Alert alrt -> state | |
DoFoo foo' -> case decodeMaybe foo' of | |
Just f -> state { foo = runFoo f } | |
Nothing -> state | |
-- DoFoo foo' -> case foo' of | |
-- Just f -> state { foo = f } | |
-- Nothing -> state | |
Upload upld -> state | |
ToggleLoginModal bl -> state { loginModalIsOpen = bl } | |
NoOp -> state | |
actions :: Maybe (Signal Action) | |
actions = | |
mergeMany | |
[ map ToggleLoginModal toggleLoginModal | |
, map Alert incomingAlert | |
, map DoFoo outgoingFoo | |
-- , map DoFoo incompingFoo | |
, map Upload upload | |
] | |
outgoingFoo :: Signal Json | |
outgoingFoo = constant $ encodeJson $ foo | |
incomingFoo :: Signal (Maybe Foo) | |
incomingFoo = map (decodeMaybe >>> map runFoo) outgoingFoo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment