1.2.0 • Published 7 years ago

redux-antirouter v1.2.0

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

redux-antirouter

Rethinking best routing practices

What is redux-antirouter?

This is a collection of utilities for routes in a React/Redux app that treats the address bar as an input and URLs as a serialization format.

npm install redux-antirouter history

createRouterMiddleware

Derive the route from the app state; dispatch an action when the address bar is changed by the user.

createRouterMiddleware({
    history: [defaults to BrowserHistory],
    onChange: ({ path, query }) => action,
    selectRoute: (state) => ({ path, query }),
})

Link

Real links that get their URLs from the actions they dispatch

<LinkProvider selectRoute={(state) =>  ({ path, query })}
    rootReducer={(state, action) => state}>
    <Link action={action}
        className="link-class"
        activeClassName="active"
        style={{ color: "blue" }}
        activeStyle={{ fontWeight: "bold" }}
        isActive={(currentRoute, nextRoute) =>
            currentRoute.path[0] === nextRoute.path[0]} />
</LinkProvider>
1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

8 years ago