
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
mobx-react-router
Advanced tools
Use @ibm/mobx-react-router
Keep your MobX state in sync with react-router via a RouterStore
.
Router location state is observable, so any references to it in MobX
components will cause the component to re-render when the location changes.
Very much inspired by (and copied from) react-router-redux.
This branch (master) is for use with react-router v6. Please, check the branch v5 for react-router v5.
npm install --save @ibm/mobx-react-router
/!\ npm install --save mobx-react-router
is now deprecated, use npm install --save @ibm/mobx-react-router
And if you haven't installed all the peer dependencies, you should probably do that now:
npm install --save mobx mobx-react react-router
index.js
import React from 'react';
import ReactDOM from 'react-dom';
import { createBrowserHistory } from 'history';
import { Provider } from 'mobx-react';
import { RouterStore, syncHistoryWithStore } from '@ibm/mobx-react-router';
import { Router } from 'react-router';
import App from './App';
const browserHistory = createBrowserHistory();
const routingStore = new RouterStore();
const stores = {
// Key can be whatever you want
routing: routingStore,
// ...other stores
};
const history = syncHistoryWithStore(browserHistory, routingStore);
ReactDOM.render(
<Provider {...stores}>
<Router location={routingStore.location} navigator={history}>
<App />
</Router>
</Provider>,
document.getElementById('root')
);
App.js
import React, { Component } from 'react';
import { inject, observer } from 'mobx-react';
@inject('routing')
@observer
export default class App extends Component {
render() {
const { location, push, back } = this.props.routing;
return (
<div>
<span>Current pathname: {location.pathname}</span>
<button onClick={() => push('/test')}>Change url</button>
<button onClick={() => back()}>Go Back</button>
</div>
);
}
}
Check our live example with Vite.js.
You can replace history/createBrowserHistory
with history/createHashHistory
in the example above to use hash routes instead of HTML5 routing.
Routes not updating correctly when URL changes
There is a known issue with React Router 4 and MobX (and Redux) where "blocker" components like those
created by @observer
(and @connect
in Redux) block react router updates from propagating down the
component tree.
To fix problems like this, try wrapping components which are being "blocked" with React Router's withRouter
higher
order component should help, depending on the case.
const store = new RouterStore();
A router store instance has the following properties:
location
(observable) - history location objecthistory
- raw history API objectAnd the following history methods:
history
- A variant of a history object, usually browserHistory
store
- An instance of RouterStore
returns an enhanced history object with the following additional methods:
location
observableconst unsubscribeFromStore = history.subscribe((location, action) => console.log(location.pathname));
history.push('/test1');
unsubscribeFromStore();
history.push('/test2');
// Logs
// 'test1'
history.unsubscribe();
// Store no longer updates
FAQs
Keep your MobX state in sync with react-router
We found that mobx-react-router demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.