FlowRouter
Helpers forTemplate helpers for meteorhacks:flow-router
- isSubReady
- pathFor
- urlFor
See zimme:active-route for using the following helpers
- isActiveRoute
- isActivePath
- isNotActiveRoute
- isNotActivePath
Install
meteor add arillo:flow-router-helpers
Usage isSubReady
Checks whether your subscription is ready. If you don't pass a subscription name it will check for all subscriptions.
{{#if isSubReady 'items'}}
<ul>
{{#each items}}
<li>{{title}}</li>
{{/each}}
</ul>
{{/if}}
Usage pathFor
Used to build a path to your route. First parameter can be either the path definition or, since version 1.2.0 of flow-router, the name you assigned the route. After that you can pass the params needed to construct the path. Query parameters can be passed with the query parameter.
Notice: To deparameterize the query string we are currently using the not yet official accessor for the query lib in page.js via FlowRouter._qs
<a href="{{pathFor '/post/:id' id=_id}}">Link to post</a>
<a href="{{pathFor 'postRouteName' id=_id}}">Link to post</a>
<a href="{{pathFor '/post/:id/comments/:cid' id=_id cid=comment._id}}">Link to comment in post</a>
<a href="{{pathFor '/post/:id/comments/:cid' id=_id cid=comment._id query='back=yes&more=true'}}">Link to comment in post with query params</a>
Usage urlFor
Same as pathFor, returns absolute URL.
{{urlFor '/post/:id' id=_id}}