When your application starts, the router is responsible for loading data, rendering views and otherwise setting up application state. It does so by translating every URL change to a transition object and a list of matching routes. You then need to apply a middleware function to translate the transition data into the desired state of your application.
First create an instance of the router.
import { Router } from 'slick-router/core.js';
const router = new Router({
pushState: true
});
Then use the map
method to declare the route map.
router.map(function (route) {
route('application', { path: '/', abstract: true, handler: App }, function () {
route('index', { path: '', handler: Index })
route('about', { handler: About })
route('favorites', { path: 'favs', handler: Favorites })
route('message', { path: 'message/:id', handler: Message })
})
});
Next, install middleware.
router.use(function activate (transition) {
transition.routes.forEach(function (route) {
route.options.handler.activate(transition.params, transition.query)
})
})
Now, when the user enters /about
page, Slick Router will call the middleware with the transition object and transition.routes
will be the route descriptors of application
and about
routes.
Note that you can leave off the path if you want to use the route name as the path. For example, these are equivalent
router.map(function(route) {
route('about');
});
// or
router.map(function(route) {
route('about', {path: 'about'});
});
To generate links to the different routes use generate
and pass the name of the route:
router.generate('favorites')
// => /favs
router.generate('index');
// => /
router.generate('messages', {id: 24});
If you disable pushState (pushState: false
), the generated links will start with #
.
Routes can have dynamic urls by specifying patterns in the path
option. For example:
router.map(function(route) {
route('posts');
route('post', { path: '/post/:postId' });
});
router.use(function (transition) {
console.log(transition.params)
// => {postId: 5}
});
router.transitionTo('/post/5')
See what other types of dynamic routes is supported in the api docs.
Route nesting is one of the core features of slick-router. It's useful to nest routes when you want to configure each route to perform a different role in rendering the page - e.g. the root application
route can do some initial data loading/initialization, but you can avoid redoing that work on subsequent transitions by checking if the route is already in the middleware. The nested routes can then load data specific for a given page. Nesting routes is also very useful for rendering nested UIs, e.g. if you're building an email application, you might have the following route map
router.map(function(route) {
route('gmail', {path: '/', abstract: true}, function () {
route('inbox', {path: ''}, function () {
route('email', {path: 'm/:emailId'}, function () {
route('email.raw')
})
})
})
})
This router creates the following routes:
URL | Route Name | Purpose |
---|---|---|
N/A |
gmail |
Can't route to it, it's an abstract route. |
/ |
inbox |
Load 1 page of emails and render it. |
/m/:emailId/ |
email |
Load the email contents of email with id `transition.params.emailId` and expand it in the list of emails while keeping the email list rendered. |
/m/:mailId/raw |
email.raw |
Render the raw textual version of the email in an expanded pane. |
I hope you found this brief guide useful, check out some example apps next in the examples dir.