application router that supports multiple activities.
activity-router handles routing in your application if you want to have 'layers' or activities
, similar to how activities work in android applications.
activities look like this:
{
name: 'namedActivity',
values: {key: value} // flat key: String(value) map.
}
and are displayed in the hash like this:
https://mySite.com/#/namedActivity#/anotherActivity/value
activity-router uses route-tree under the covers.
Set up a router by passing in your routes just like route-tree:
var activityRouter = require('activity-router');
var router = activitiyRouter({
routeName: {
_url: '/routeurl/{routeValue}/{routeValue}'
}
})
// initialise
router.init();
add an activity.
remove an activity
replace an activity at index
with a new activity
replace the top activity with a new activity
remove the top activity
remove all activities except the first, and replace it with a new activity.
initialise activity-router from the hash in the URL.
activity will raise events when an activity is added/changed/removed
Emitted when a new activity is added
Emitted an existing activity is updated
Emitted an existing activity is replaced
Emitted an existing activity is removed