summaryrefslogtreecommitdiff
path: root/lore
diff options
context:
space:
mode:
authorBen Sima <ben@bsima.me>2019-09-06 08:24:10 -0700
committerBen Sima <ben@bsima.me>2019-09-06 08:24:10 -0700
commit695fdf2b2ca2562b7d30c2bb4a140c0616e14aa6 (patch)
tree36b03114a5d45bd8fee3c2cb45bfcf5afca9cfd5 /lore
parent96b232c6e21710a1b0e79946de09bef7890429db (diff)
[ibb] refactor aero/Ibb
Diffstat (limited to 'lore')
-rw-r--r--lore/Biz/Ibb/Move.hs11
1 files changed, 6 insertions, 5 deletions
diff --git a/lore/Biz/Ibb/Move.hs b/lore/Biz/Ibb/Move.hs
index c2adea1..0d83e8a 100644
--- a/lore/Biz/Ibb/Move.hs
+++ b/lore/Biz/Ibb/Move.hs
@@ -3,8 +3,7 @@
-- | App update logic
module Biz.Ibb.Move (
- module Core
- , move
+ move
-- * Server interactions
, fetchPeople
) where
@@ -21,7 +20,7 @@ move :: Action -> Model -> Effect Action Model
move Nop m = noEff m
move (HandleRoute u) m = m { uri = u } <# pure Nop
move (ChangeRoute u) m = m <# do pushURI u >> pure Nop
-move FetchPeople m = m <# do SetPeople /@ fetchPeople
+move FetchPeople m = m <# (SetPeople /@ fetchPeople)
move (SetPeople ps) m = noEff m { people = ps }
fetchPeople :: IO (WebData [Core.Person])
@@ -30,11 +29,13 @@ fetchPeople = do
case mjson of
Nothing -> pure $ Failure "could not read from server"
Just a -> pure
- $ either (Failure . ms) Network.RemoteData.Success
+ $ fromEither
+ $ either (Left . ms) pure
$ eitherDecodeStrict a
where
req = Request { reqMethod = GET
- , reqURI = "/api/people" -- FIXME: can replace this hardcoding with a function?
+ -- FIXME: can replace this hardcoding with a function?
+ , reqURI = "/api/people"
, reqLogin = Nothing
, reqHeaders = []
, reqWithCredentials = False