summaryrefslogtreecommitdiff
path: root/lore/Biz/Ibb/Move.hs
blob: 291e0150ab03edc3f83a24bc6a53cac4ce0c3870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}

-- | App update logic
module Biz.Ibb.Move (
    module Core
  , move
  -- * Server interactions
  , fetchPeople
  ) where

import Alpha
import Data.Aeson
import Biz.Ibb.Influencers (Person)
import Biz.Ibb.Core as Core
import JavaScript.Web.XMLHttpRequest (Request(..), Method(GET), RequestData(NoData), contents, xhrByteString)
import Miso
import Miso.String

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 (SetPeople ps) m = noEff m { people = ps }

fetchPeople :: IO (WebData [Person])
fetchPeople = do
  mjson <- contents /@ xhrByteString req
  case mjson of
    Nothing -> pure $ Failure "could not read from server"
    Just json -> pure
      $ either (Failure . ms) Core.Success
      $ eitherDecodeStrict json
  where
    req = Request { reqMethod = GET
                  , reqURI = "/api/people" -- FIXME: can replace this hardcoding with a function?
                  , reqLogin = Nothing
                  , reqHeaders = []
                  , reqWithCredentials = False
                  , reqData = NoData
                  }