-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathStateT.purs
35 lines (28 loc) · 1.02 KB
/
StateT.purs
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
module Examples.StateT where
import Prelude
import Control.Monad.Indexed.Qualified as Ix
import Effect.Aff (Aff)
import Effect (Effect)
import Control.Monad.State (evalStateT, get, modify)
import Control.Monad.State.Trans (StateT)
import Data.String (joinWith)
import Hyper.Middleware (lift')
import Hyper.Node.Server (defaultOptionsWithLogging, runServer')
import Hyper.Response (closeHeaders, respond, writeStatus)
import Hyper.Status (statusOK)
runAppM ∷ ∀ a. StateT (Array String) Aff a → Aff a
runAppM = flip evalStateT []
main :: Effect Unit
main =
let
-- Our application just appends to the state in between
-- some operations, then responds with the built up state...
app = Ix.do
void $ lift' (modify (flip append ["I"]))
writeStatus statusOK
void $ lift' (modify (flip append ["have"]))
closeHeaders
void $ lift' (modify (flip append ["state."]))
msgs ← lift' get
respond (joinWith " " msgs)
in runServer' defaultOptionsWithLogging {} runAppM app