yesod-routes-flow: Generate Flow routes for Yesod

[ library, mit, web ] [ Propose Tags ]

Parse the Yesod routes data structure and generate routes that can be used with Flow.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 1.0, 1.0.1, 1.0.2, 1.1, 1.1.1, 2.0, 3.0.0.1, 3.0.0.2
Dependencies attoparsec, base (<5), classy-prelude (>=0.7), containers, system-fileio, system-filepath (>=0.4), text, yesod-core (>=1.4 && <2.0) [details]
License MIT
Author Max Cantor, Felipe Lessa
Maintainer Greg Weber <greg@frontrowed.com>
Category Web
Home page https://github.com/frontrowed/yesod-routes-flow
Uploaded by FelipeLessa at 2015-09-10T14:54:55Z
Distributions LTSHaskell:3.0.0.2, Stackage:3.0.0.2
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 3821 total (31 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-09-10 [all 1 reports]

Readme for yesod-routes-flow-2.0

[back to package description]

yesod-routes-flow

Parse the Yesod routes data structure and generate routes that can be used in Flow.

The routing structure is generated by:

mkYesodDispatch "App" resourcesApp

You can generate routes at startup inside the makeApplication function

when development $
    genFlowRoutes resourcesApp "assets/ts/paths-gen.ts"

This generates Flow code:

class PATHS_TYPE_paths {
  contacts: PATHS_TYPE_paths_contacts;
  admin: PATHS_TYPE_paths_admin;

  constructor(){
    this.contacts = new PATHS_TYPE_paths_contacts();
    this.admin = new PATHS_TYPE_paths_admin();
  }
}

class PATHS_TYPE_paths_contacts {
  get(): string { return '/api/v1/contacts/get'; }
}

class PATHS_TYPE_paths_admin {
  adminDocs: PATHS_TYPE_paths_admin_adminDocs;

  constructor(){
    this.adminDocs = new PATHS_TYPE_paths_admin_adminDocs();
  }
}

class PATHS_TYPE_paths_admin_adminDocs {
  get(): string { return '/api/v1/admin/docs/get'; }
}


var PATHS:PATHS_TYPE_paths = new PATHS_TYPE_paths();

In your Flow code you can now do:

PATHS.admin.adminDocs.get()

Please note that the Haskell code was hastily translated from Javascript code, then translated from TypeScript to Flow, and is pretty horrible. There are bugs and edge cases to be addressed, but this works ok for us.