Skip to content

Matzu89/riot-state-renderer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Use Riot with abstract-state-router!

Warning: Muut has on several occasions broken backwards compatibility in the Riot API without bumping major or even minor version numbers. If you get weird errors, make sure you're on at least 2.0.15. If you are getting errors on a version greater than 2.0.15 please open an issue or pull request.

Usage

var StateRouter = require('abstract-state-router')
var riotRenderer = require('riot-state-renderer')()
var domready = require('domready')

var stateRouter = StateRouter(riotRenderer, 'body')

// add whatever states to the state router

domready(function() {
	stateRouter.evaluateCurrentRoute('login')
})

riotRenderer([options])

options is an object that is passed into riot.mount as the default opts object.

var StateRouter = require('abstract-state-router')
var riotRenderer = require('riot-state-renderer')

var renderer = riotRenderer({
	hello: 'world'
})

var stateRouter = StateRouter(renderer, 'body')

Working with states

All templates must be created as custom tags manually (or automatically with something like riotify).

When you add a state to the state router, pass in the tag name as the "template".

For details on setting up states themselves, see the abstract-state-router.

About

a RiotJS-based renderer for the abstract-state-router

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%