OUI doesn't prescribe the use of any particular routing library, and we also don't want to incur
the maintenance burden of supporting router-specific components. For these reasons, OUI doesn't
publish any tools for working with react-router
(or any other routing lib). However,
integrating OUI with react-router
on the consumer's side is fairly straightforward.
Links in react-router
accept a to
prop and convert this to both href
and onClick
props
under the hood. The onClick
is used to push a new history
location, and the href
allows you to
open the link in a new tab. Any mechanism for integrating OUI with react-router
needs to bridge
this to
prop with OUI components' href
and onClick
props.
There are many techniques for integrating OUI with react-router
(see below for some techniques we don't recommend), but we think these two are the strongest:
You can use a conversion function to convert a to
value
to href
and onClick
values, which you can then pass to any OUI button or link component.
Many OUI components are designed to accept both props if they accept one.
This technique is recommended because of its flexibility. As a consumer, you have the option to
use either the href
or onClick
values, or both. It's also terser than the second option.
<OuiLink {...getRouterLinkProps('/location')}>Link</OuiLink>
Alternatively, you can create a component which will consume or encapsulate the
getRouterLinkProps
logic, and use that in conjunction with a
render
prop.
const RouterLinkAdapter = ({to, children}) => {
const {href, onClick} = getRouterLinkProps(to);
return children(href, onClick);
};
<RouterLinkAdapter to="/location">
{(onClick, href) => <OuiLink onClick={onClick} href={href}>Link</OuiLink>}
<RouterLinkAdapter/>
To enable these techniques, you'll need to make the router
instance available outside of React's
context
. One method for doing this is to assign it to a globally-available singleton within your
app's root component.
import { registerRouter } from './routing';
// App is your app's root component.
class App extends Component {
// NOTE: As an alternative to consuming context directly, you could use the `withRouter` HOC
// (https://github.com/ReactTraining/react-router/blob/v3/docs/API.md#withroutercomponent-options)
static contextTypes = {
router: PropTypes.shape({
createHref: PropTypes.func.isRequired,
push: PropTypes.func.isRequired,
}).isRequired,
}
constructor(...args) {
super(...args);
// Share the router with the app without requiring React or context.
registerRouter(this.context.router);
}
}
// <App> *must* be a child of <Router> because <App> depends on the context provided by <Router>
ReactDOM.render(
<Router history={history}>
<Route path="/" component={App} />,
</Router>,
appRoot
)
Note that if using HMR, you'll need to re-register the router after a hot reload.
componentDidUpdate() {
// You may want to add some conditions here to cull this logic from a production build,
// e.g. `if (process.env.NODE_ENV !== 'production' && module.hot)`
this.registerRouter();
}
You can create a routing.js
service to surface the registerRouter
method as well as your
conversion function (called getRouterLinkProps
here). The OUI documentation site uses this approach.
// routing.js
const isModifiedEvent = event => !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);
const isLeftClickEvent = event => event.button === 0;
const resolveToLocation = (to, router) => typeof to === 'function' ? to(router.location) : to;
let router;
export const registerRouter = reactRouter => {
router = reactRouter;
};
/**
* The logic for generating href and onClick handlers from the `to` prop is largely borrowed from
* https://github.com/ReactTraining/react-router/blob/v3/modules/Link.js.
*/
export const getRouterLinkProps = to => {
const location = resolveToLocation(to, router);
const href = router.createHref(location);
const onClick = event => {
if (event.defaultPrevented) {
return;
}
// If target prop is set (e.g. to "_blank"), let browser handle link.
if (event.target.getAttribute('target')) {
return;
}
if (isModifiedEvent(event) || !isLeftClickEvent(event)) {
return;
}
// Prevent regular link behavior, which causes a browser refresh.
event.preventDefault();
router.push(location);
};
return {href, onClick}
};
Setup is slightly different with react-router
4.x. To enable these techniques, you'll need to make
the router
instance available outside of React's context
. One method for doing this is to assign
it to a globally-available singleton within your app's root component.
import { registerRouter } from './routing';
// App is your app's root component.
class App extends Component {
static contextTypes = {
router: PropTypes.shape({
history: PropTypes.shape({
push: PropTypes.func.isRequired,
createHref: PropTypes.func.isRequired
}).isRequired
}).isRequired
}
constructor(...args) {
super(...args);
// Share the router with the app without requiring React or context.
registerRouter(this.context.router);
}
}
// <App> *must* be a child of <Router> because <App> depends on the context provided by <Router>
ReactDOM.render(
<Router>
<App />,
</Router>,
appRoot
)
You can create a routing.js
service to surface the registerRouter
method as well as your
conversion function (called getRouterLinkProps
here).
// routing.js
import { createLocation } from 'history';
const isModifiedEvent = event => !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);
const isLeftClickEvent = event => event.button === 0;
let router;
export const registerRouter = reactRouter => {
router = reactRouter;
};
/**
* The logic for generating href and onClick handlers from the `to` prop is largely borrowed from
* https://github.com/ReactTraining/react-router/blob/master/packages/react-router-dom/modules/Link.js.
*/
export const getRouterLinkProps = to => {
const location = typeof to === "string"
? createLocation(to, null, null, router.history.location)
: to;
const href = router.history.createHref(location);
const onClick = event => {
if (event.defaultPrevented) {
return;
}
// If target prop is set (e.g. to "_blank"), let browser handle link.
if (event.target.getAttribute('target')) {
return;
}
if (isModifiedEvent(event) || !isLeftClickEvent(event)) {
return;
}
// Prevent regular link behavior, which causes a browser refresh.
event.preventDefault();
router.history.push(location);
};
return {href, onClick}
};
The React Context handling has changed in in 5.0 and we can't rely on it anymore. A solution is to create
an extractRouter
HOC that will intercept the router and send it to your custom handler.
// extractRouter.hoc.js
import { withRouter } from 'react-router-dom';
export const extractRouter = onRouter => WrappedComponent =>
withRouter(
class extends Component {
componentDidMount() {
const { match, location, history } = this.props;
const router = { route: { match, location }, history };
onRouter(router);
}
render() {
return <WrappedComponent {...this.props} />;
}
}
);
import { extractRouter } from './hoc';
import { registerRouter } from './routing';
// App is your app's root component.
class App extends Component {
...
}
const AppMount = extractRouter(registerRouter)(App);
// <App> *must* be a child of <Router> because <App> depends on the context provided by <Router>
ReactDOM.render(
<Router>
<AppMount />,
</Router>,
appRoot
)
In react-router 5.1, we can fully capitalize in the React Hooks utility, in this case, useHistory
. Using this, we do not need other HOC wrapper files and global router variable. We just need to create the file below, and then use it anywhere by importing OuiCustomLink
. There is an example repository for this: https://github.com/Imballinst/elastic-react-router-hooks.
// File name: "OuiCustomLink.js".
import React from 'react';
import { OuiLink } from '@opensearch-project/oui';
import { useHistory } from 'react-router';
const isModifiedEvent = (event) =>
!!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);
const isLeftClickEvent = (event) => event.button === 0;
const isTargetBlank = (event) => {
const target = event.target.getAttribute('target');
return target && target !== '_self';
};
export default function OuiCustomLink({ to, ...rest }) {
// This is the key!
const history = useHistory();
function onClick(event) {
if (event.defaultPrevented) {
return;
}
// Let the browser handle links that open new tabs/windows
if (isModifiedEvent(event) || !isLeftClickEvent(event) || isTargetBlank(event)) {
return;
}
// Prevent regular link behavior, which causes a browser refresh.
event.preventDefault();
// Push the route to the history.
history.push(to);
}
// Generate the correct link href (with basename accounted for)
const href = history.createHref({ pathname: to });
const props = { ...rest, href, onClick };
return <OuiLink {...props} />;
}
// App is your app's root component.
class App extends Component {
...
}
// <App> *must* be a child of <Router> because <App> depends on the context provided by <Router>
ReactDOM.render(
<Router>
<App />,
</Router>,
appRoot
)
It's possible to integrate OUI with react-router
by using its CSS classes only:
<Link className="ouiLink" to="/location">Link</Link>
But it's important to be aware of two caveats to this approach:
- OUI's components contain a lot of useful behavior. For example,
OuiLink
will render either a button or an anchor tag depending on the presence ofonClick
andhref
props. It will also create a securerel
attribute if you addtarget="_blank"
. Consumers lose out on these features if they use OUI's CSS instead of its React components. - This creates a brittle dependency upon the
ouiLink
CSS class. If we were to rename this class in OUI, this would constitute a breaking change and we'd make a note of it in the change log. But if a consumer doesn't notice this note then the only way they could detect that something in their UI has changed (and possibly broken) would be through manual testing.