Skip to content

Latest commit

 

History

History
82 lines (51 loc) · 2.65 KB

advanced_topics.rst

File metadata and controls

82 lines (51 loc) · 2.65 KB

Advanced Topics

Backend integration

Since in most cases you will be writing your backend also in Haskell. It is important to be able to share code between backend and frontend.

  1. Share server-client messages and their serialisation/deserialisation code.
  2. Share routes
.. todo::   This will be backend specific. How to do this??


Assuming you have two projects (either simple cabal projects or with stack, nix), in order to share code between the two; you have these options:

  1. Create a common source directory and share the link of this directory in both projects, and add this common directory to hs-source-dirs of cabal file.

  2. Create a separate project (ie with separate cabal file) and add dependency of this project to both frontend and backend cabal files.

    This is a better way to handle common code. But you need to provide the dependency of local package either through stack.yaml or in your nix config.

    .. todo:: More details on this
    
              Is it better to provide a scaffolding for this
    
              Any other thing to mention here regarding
              Integration with Yesod, Servant, Snap, etc.
    
    

Deploying

You need to serve index.html, rts.js, lib.js, out.js and runmain.js from the cabal generated folder dist/build/<pkg-name>/<pkg-name>.jsexe/

Simplest way is to copy these files to the static directory of your backend project. This can be automated using simple shell script.

Client Side Routing

reflex-dom-contrib has a route API to provide routing capabilities.

  • Change route via Event (like <a> click)
  • Get route changes from browser Forward/Back button clicks.
  • JS forward/backward calls

https://github.com/reflex-frp/reflex-dom-contrib/blob/master/src/Reflex/Dom/Contrib/Router.hs

Designing library/ reusable web snippets

Libraries - diagrams-reflex, reflex-gloss, etc.

FFI

.. todo:: What is the recommended way to do FFI in reflex app? The GHCJS wiki has some useful [info](https://github.com/ghcjs/ghcjs/blob/master/doc/foreign-function-interface.md) and may be a good place to start.

Use JQuery, BootStrap, etc?

Design of project for both ghc and ghcjs

Create both desktop app and web app from same project