0.0.1 • Published 5 years ago

yarrr v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Yet Another Redux React Router (YARRR)

This is just another router that keeps everything stored in the redux store. Right now, it expects the entire store to be using Immutable.js.

Install

yarn add yarrr

How to Use

Attach it to the router key in your reducers:

import { reducer } from 'yarrr';
import { combineReducers } from 'redux-immutable';

import ui from './ui';

export default () => combineReducers({
    ui,
    router: reducer,
});

Create a list of all of your routes and pass it in as a prop to the <Router /> component.

import React from 'react';
import Router from 'yarrr';

const routes = [
    { path: '/', render: () => <Home /> },
    { path: '/dashboard', render: () => <Dashboard /> },
];

export class App extends React.Component {
    render() {
        return (
            <div>
                <Router routes={routes} />
            </div>
        );
    }
}

You can also get the matched route using the getMatchedRoute selector.

import { getMatchedRoute } from 'yarrr';

const getPage = (state) => {
    // get the matched route, return `null` if not found.
    const matchedRoute = getMatchedRoute(state, null);

    // will return { path: '/dashboard', render: () => <Dashboard /> } if user is on `/dashboard`
    return matchedRoute;
};

There is a <Link /> component that can be used to link to another route like so

<Link to="/" className="navigtion" replace={false}>Home</Link>

Additionally, you can use the push or replace actions.

import { push, replace } from 'yarrr';

export const changePage = (url) => (dispatch) => {
    dispatch(push(url));
};

export const replacePage = (url) => (dispatch) => {
    dispatch(replace(url));
};