AF Router is a single page application router. It allows to easily attach listeners to state changes.
npm i --save @af-modules/router
import Router from '@af-modules/router';
Router.init([
{
path: ['/', '/home'],
onEnter: (path) => {...},
onLeave: (path) => {...},
isPersistent: true,
},
{
path: '/home/details',
onEnter: (path) => {...},
onLeave: (path) => {...},
isPersistent: true,
}
]);
Router.restore();
Router.init([{ path: string, onEnter: Function, onLeave: Function, isPersistent: boolean }]);
The init()
method initializes the router. An array of objects can be specified to define the initial states.
Router.restore();
Restores the state of the application the last time it was open. Call this method if users should be able to return to the application in the same state they left.