deps | ||
exec | ||
include | ||
src/Servant | ||
testdriver | ||
testserver | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
build.sh | ||
deploy_key.enc | ||
LICENSE.md | ||
overrides-ghc.nix | ||
overrides.nix | ||
README.md | ||
servant-reflex.cabal |
servant-reflex
The problem servant-reflex
solves
Keeping your frontend in sync with your API server can be difficult - when the API changes its input parameters or return type, XHR requests from the frontend will fail at runtime. If your API is defined by servant combinators, you can use servant-reflex
to share the API between the server and frontend.
Syncronization between is checked at compile time, and rather than building XHR requests by hand, API endpoints are available behind reflex
's FRP semantics.
Example
We have a webservice API defined in a module where both the server (compiled with ghc) and the frontend (compiled with ghcjs) can see it:
type API = "getint" :> Get '[JSON] Int
:<|> "sayhi" :> QueryParam "username" String
:> QueryParams "greetings" String
:> QueryFlag "gusto"
:> Get '[JSON] String
:<|> "double" :> ReqBody '[JSON] Double
:> Post '[JSON] Double
:<|> Raw
servant-reflex
then computes functions that can query the API through an XhrRequest
.
runGUI :: forall t m.MonadWidget t m => do
-- servant-reflex computes FRP functions for each API endpoint
let (getint :<|> sayhi :<|> doubleit :<|> _) = client (Proxy :: Proxy API)
(Proxy :: Proxy m)
(constDyn (BasePath "/"))
These client functions are computed from the API and manage serialization, XhrRequest generation, and deserialization for you. a
parameters become Dynamic t (Either String a)
values. You provide a trigger event and receive an Event t (ReqResult a)
, with responses from the API server (which you would write with servant-server
).
-- No need to write these functions. servant-reflex creates them for you!
getint :: MonadWidget t m
=> Event t () -- ^ Trigger the XHR Request
-> m (Event t (ReqResult Int)) -- ^ Consume the answer
sayhi :: MonadWidget t m
=> Dynamic t (Either String String)
-- ^ One input parameter - the 'name'
-> Dynamic t [String]
-- ^ Another input: list of preferred greetings
-> Dynamic t Bool
-- ^ Flag for capitalizing the response
-> Event t ()
-- ^ Trigger the XHR Request
-> m (Event t (ReqResult String))
doubleit :: MonadWidget t m
=> Dynamic t (Either String Double)
-> Event t ()
-> m (Event t (ReqResult Double))
Plug any of these functions into your reflex frontend to consume backend servant services. Isomorphic!
ReqResult a
is defined in Servant.Common.Req
and reports whether or not your request was sent (if validation fails, the request won't be sent), and how decoding of the response went. You can pattern match on these explicitly, but usually you'll want to use fmapMaybe :: (a -> Maybe b) -> Event t a -> Event t b
and one of the elimination functions to filter the result type you care about, like this:
-- ... continued ...
res :: Event t (ReqResult Double) <- doubleIt xs triggers
let ys = fmapMaybe reqSuccess res
errs = fmapMaybe reqFailure res
-- Green <p> tag showing the last good result
elAttr "p" ("style" =: "color:green") $ do
text "Last good result: "
dynText =<< holdDyn "" (fmap show ys)
-- Red <p> tag showing the last error, cleared by a new good value
elAttr "p" ("style" =: "color:red") $
dynText =<< holdDyn "" (leftmost [errs, const "" <$> ys])
This example builds some input fields to enter API parameters, buttons to trigger the API calls, and text elements to show the results:
elClass "div" "int-demo" $ do
intButton <- button "Get Int"
serverInts <- fmapMaybe resSuccess <$> getint intButton
display =<< holdDyn (Just 0) serverInts
elClass "div" "hello-demo" $ do
nameText <- value <$> textInput def
greetings <- (fmap words . value) <$> textInput def
withGusto <- checkbox def
helloButton <- button "Say hi"
hellos <- fmapMaybe resResult <$> sayhi nameText greetings withGusto helloButton
display =<< holdDyn Nothing hellos
elClass "div" "demo-double" $ do
inputDouble <- (fmapMaybe readMaybe) <$> textInput def
doubleButton <- button "Double it"
outputDouble <- fmapMaybe resSuccess <$> doubleit inputDouble doubleButton
display =<< holdDyn Nothing outputDouble
For a great introduction to recative DOM building, see the README for the reflex-platform
. For more information about servant, see their documentation. Thanks to the respective authors of these fabulous libraries.
Building the library and test server
This repository comes with a small example of an API shared between a ghcjs-compiled frontend (exec/) and a ghc-compiled backend (testserver/. To build these components:
First build the library:
git submodule update --init --recursive
./build.sh
Then build the test server:
deps/reflex-platform/work-on ./overrides-ghc.nix ./testserver --command "cd testserver && cabal build"
Running the example site
The server must be run from the directory where static assets live:
cd testserver
dist/build/back/back -p 8001
And simply browse to localhost:8001
For a larger example of a project that shares types between backend and frontend, see hsnippet.