@frontity/tiny-router
API reference of `@frontity/tiny-router` package
This package is in charge of managing (React) routes in a Frontity project.
Table of Contents
Installation
Add the tiny-router
package to your project:
And include it in your frontity.settings.js
file:
Settings
state.router.autoFetch
state.router.autoFetch
When autoFetch
is activated, tiny-router does a actions.source.fetch(link)
each time the action actions.router.set(link)
is triggered. This ensures that the data you need for the current page is always available.
It also does a actions.source.fetch(link)
in the beforeSSR
action to ensure that the data needed for SSR is also available.
It's true
by default.
API Reference
Actions
actions.router.set()
actions.router.set()
Tiny Router is very simple, it only has one action: actions.router.set()
.
Syntax
Arguments
Examples
This is a very simple, but functional Link
component created with actions.router.set
:
actions.router.updateState()
actions.router.updateState()
Action that replaces the value of state.router.state
with the given object. The same object is stored in the browser history state using the history.replaceState()
function.
Arguments
State
Tiny router has the following state:
state.router.link
state.router.link
This is the path the site is in. For example, /category/nature/
.
These are some examples of links:
/
: You are in the home, path is/
and page is1
./page/2
: You are in the page 2 of the home, path is/
and page is2
./category/nature:
You are in the categorynature
, path is/
and page is1
./category/nature/page/2
: You are in page 2 of categorynature
, path is/
and page is2
./some-post
: You are a post, path is/some-post
./some-page
: You are in a page, path is/some-page
.
state.router.state
state.router.state
This is the object that was saved in window.history.state
when the route was changed.
Last updated