Extensible route-based routing for React applications.
Found is a router for React applications with a focus on power and extensibility. Found uses static route configurations. This enables efficient code splitting and data fetching with nested routes. Found also offers extensive control over indicating those loading states, even for routes with code bundles that have not yet been downloaded.
Found is designed to be extremely customizable. Most pieces of Found such as the path matching algorithm and the route element resolution can be fully replaced. This allows extensions such as Found Relay to provide first-class support for different use cases.
Found uses Redux for state management and Farce for controlling browser navigation. It can integrate with your existing store and connected components.
Table of Contents generated with DocToc
- Usage
- Examples
- Extensions
- Guide
import {
createBrowserRouter,
HttpError,
makeRouteConfig,
Redirect,
Route,
} from 'found';
/* ... */
const BrowserRouter = createBrowserRouter({
routeConfig: makeRouteConfig(
<Route path="/" Component={AppPage}>
<Route Component={MainPage} />
<Route path="widgets">
<Route Component={WidgetsPage} getData={fetchWidgets} />
<Route
path=":widgetId"
getComponent={() =>
System.import('./WidgetPage').then((module) => module.default)
}
getData={({ params: { widgetId } }) =>
fetchWidget(widgetId).catch(() => {
throw new HttpError(404);
})
}
render={({ Component, props }) =>
Component && props ? (
<Component {...props} />
) : (
<div>
<small>Loading</small>
</div>
)
}
/>
</Route>
<Redirect from="widget/:widgetId" to="/widgets/:widgetId" />
</Route>,
),
renderError: ({ error }) => (
<div>{error.status === 404 ? 'Not found' : 'Error'}</div>
),
});
ReactDOM.render(<BrowserRouter />, document.getElementById('root'));
This configuration will set up the following routes:
/
- This renders
<AppPage><MainPage /></AppPage>
- This renders
/widget
- This renders
<AppPage><WidgetsPage /><AppPage>
- This will load the data for
<WidgetsPage>
when the user navigates to this route - This will continue to render the previous routes while the data for
<WidgetsPage>
are loading
- This renders
/widgets/${widgetId}
(e.g./widgets/foo
)- This renders
<AppPage><WidgetPage /></AppPage>
- This will load the code and data for
<WidgetPage>
when the user navigates to this route - This will render the text "Loading" in place of
<WidgetPage>
while the code and data for<WidgetPage>
are loading
- This renders
/widget/${widgetId}
(e.g./widget/foo
)- This redirects to
/widgets/${widgetId}
, then renders as above
- This redirects to
// AppPage.js
import { Link } from 'found';
import React from 'react';
function AppPage({ children }) {
return (
<div>
<ul>
<li>
<Link to="/" activeClassName="active" exact>
Main
</Link>
</li>
<li>
<Link to="/widgets/foo" activeClassName="active">
Foo widget
</Link>
</li>
</ul>
{children}
</div>
);
}
export default AppPage;
- Basic usage
- Basic usage with JSX route configuration
- Global pending state
- Navigation listener usage
- Shared Redux store
- Hot reloading
- Server-side rendering
- Server-side rendering with shared Redux store
- Found Scroll: browser scroll management
- Found Named Routes: named route support
- Found Relay: Relay integration
$ npm i -S react
$ npm i -S found
Define a route configuration as an array of objects, or as JSX with <Route>
elements using makeRouteConfig
.
const routeConfig = [
{
path: '/',
Component: AppPage,
children: [
{
Component: MainPage,
},
{
path: 'foo',
Component: FooPage,
children: [
{
path: 'bar',
Component: BarPage,
},
],
},
],
},
];
// This is equivalent:
const jsxRouteConfig = makeRouteConfig(
<Route path="/" Component={AppPage}>
<Route Component={MainPage} />
<Route path="foo" Component={FooPage}>
<Route path="bar" Component={BarPage} />
</Route>
</Route>,
);
Create a router using your route configuration. For a basic router that uses the HTML5 History API, use createBrowserRouter
.
const BrowserRouter = createBrowserRouter({ routeConfig });
Render this router component into the page.
ReactDOM.render(<BrowserRouter />, document.getElementById('root'));
In components rendered by the router, use <Link>
to render links that navigate when clicked and display active state.
<Link to="/foo" activeClassName="active">
Foo
</Link>
A route object under the default matching algorithm and route element resolver consists of 4 properties, all of which are optional:
path
: a string defining the pattern for the routeComponent
orgetComponent
: the component for the route, or a method that returns the component for the routedata
orgetData
: additional data for the route, or a method that returns additional data for the routedefer
: whether to wait for all parentdata
orgetData
promises to resolve before getting data for this route and its descendantsrender
: a method that returns the element for the routechildren
: an array of child route objects, or an object of those arrays; if using JSX configuration components, this comes from the JSX children
A route configuration consists of an array of route objects. You can generate such an array of route objects from JSX with <Route>
elements using makeRouteConfig
.
Specify a path
pattern to control the paths for which a route is active. These patterns are handled using Path-to-RegExp and follow the rules there. Both named and unnamed parameters will be captured in params
and routeParams
as below. The following are common patterns:
/path/subpath
- Matches
/path/subpath
- Matches
/path/:param
- Matches
/path/foo
withparams
of{ param: 'foo' }
- Matches
/path/:regexParam(\\d+)
- Matches
/path/123
withparams
of{ regexParam: '123' }
- Does not match
/path/foo
- Matches
/path/:optionalParam?
- Matches
/path/foo
withparams
of{ optionalParam: 'foo' }
- Matches
/path
withparams
of{ optionalParam: undefined }
- Matches
/path/*
- Matches
/path/foo/bar
- Matches
Routes are matched based on their path
properties in a depth-first manner, where path
on the route must match the prefix of the remaining current path. Routing continues through any routes that do not have path
set. To configure a default or "index" route, use a route with no path
.
Define the component for a route using either a Component
field or a getComponent
method. Component
should be a component class or function. getComponent
should be a function that returns a component class or function, or a promise that resolves to either of those. Routes that specify neither will still match if applicable, but will not have a component associated with them.
Given the following route configuration:
const routes = makeRouteConfig(
<Route path="/" Component={AppPage}>
<Route Component={MainPage}>
<Route Component={MainSection} />
<Route path="other" Component={OtherSection} />
</Route>
<Route path="widgets">
<Route Component={WidgetsPage} />
<Route path=":widgetId" Component={WidgetPage} />
</Route>
</Route>,
);
The router will have routes as follows:
/
, rendering:
<AppPage>
<MainPage>
<MainSection />
</MainPage>
</AppPage>
/other
, rendering:
<AppPage>
<MainPage>
<OtherSection />
</MainPage>
</AppPage>
/widgets
, rendering:
<AppPage>
<WidgetsPage />
</AppPage>
/widgets/${widgetId}
(e.g./widgets/foo
), rendering:
<AppPage>
<WidgetPage />
</AppPage>
By default, route components receive the following additional props describing the current routing state:
match
: an object with router state properties, conforming to thematchShape
prop type validatorlocation
: the current location objectparams
: the union of path parameters for all matched routesroutes
: an array of all matched route objectsroute
: the route object corresponding to this componentrouteParams
: the path parameters forroute
router
: an object with static router properties, conforming to therouterShape
prop type validatorpush(location)
: navigates to a new locationreplace(location)
: replaces the existing history entrygo(delta)
: movesdelta
steps in the history stackisActive(match, location, { exact })
: formatch
as above, returns whethermatch
corresponds tolocation
or a subpath oflocation
; ifexact
is set, returns whethermatch
corresponds exactly tolocation
matcher
: an object implementing the matching algorithmformat(pattern, params)
: returns the path string for a pattern of the same format as a routepath
and a object of the corresponding path parameters
addNavigationListener(listener)
: adds a navigation listener that can block navigation
The getComponent
method receives an object containing the same properties as the match
object above, with an additional router
property as above.
Specify the data
property or getData
method to inject data into a route component as the data
prop. data
can be any value. getData
can be any value, or a promise that resolves to any value. getData
receives an object containing the routing state, as described above for getComponent
.
The getData
method is intended for loading additional data from your back end for a given route. By design, all requests for asynchronous component and data dependencies will be issued in parallel. Found uses static route configurations specifically to enable issuing these requests in parallel.
If you need additional context such as a store instance to fetch data, specify this as the matchContext
prop to your router. This context value will then be available as the context
property on the argument to getData
.
const route = {
path: 'widgets/:widgetId',
Component: WidgetPage,
getData: ({ params, context }) =>
context.store.dispatch(Actions.getWidget(params.widgetId)),
};
// <Router matchContext={{ store }} />
It does not make sense to specify data
or getData
if the route does not have a component as above or a render
method as below.
By default, Found will issue all data fetching operations in parallel. However, if you wish to defer data fetching for a given route until its parent data promises has been resolved, you may do so by setting defer
on the route.
<Route Component={Parent} getData={getParentData}>
<Route Component={Child} getData={getChildData} defer />
</Route>
Setting defer
on a route will make the resolver defer calling its getData
method and the getData
methods on all of its descendants until all of its parent data promises have resolved.
This should be a relatively rare scenario, as generally user experience is better if all data are fetched in parallel, but in some cases it can be desirable to avoid making data fetching operations that are guaranteed to fail, such as when the user is not authenticated, when optimizing for client bandwidth usage or API utilization.
Specify the render
method to further customize how the route renders. It receives an object with the following properties:
match
: the routing state object, as aboveComponent
: the component for the route, if any;null
if the component has not yet been loadedprops
: the default props for the route component, specificallymatch
withdata
as an additional property;null
ifdata
have not yet been loadeddata
: the data for the route, as above;null
if the data have not yet been loaded
It should return:
- another function that receives its children as an argument and returns a React element; this function receives
- a React element when not using named child routes
- an object when using named child routes
null
when it has no children
- a React element to render that element
undefined
if it has a pending asynchronous component or data dependency and is not ready to rendernull
to render its children (or nothing of there are no children)
Note that, when specifying this render
method, Component
or getComponent
will have no effect other than controlling the value of the Component
property on the argument to render
. Additionally, the behavior is different between returning a function that returns null
and returning null
directly; in the former case, nothing will be rendered, while in the latter case, the route's children will be rendered.
You can use this method to render per-route loading state.
function render({ Component, props }) {
if (!Component || !props) {
return <LoadingIndicator />;
}
return <Component {...props} />;
}
If any matched routes have unresolved asynchronous component or data dependencies, the router will initially attempt to render all such routes in their loading state. If those routes all implement render
methods and return non-undefined
values from their render
methods, the router will render the matched routes in their loading states. Otherwise, the router will continue to render the previous set of routes until all asynchronous dependencies resolve.
Specify an object for the children
property on a route to set up named child routes. A route with named child routes will match only if every route group matches. The elements corresponding to the child routes will be available on their parent as props with the same name as the route groups.
function AppPage({ nav, main }) {
return (
<div className="app">
<div className="nav">{nav}</div>
<div className="main">{main}</div>
</div>
);
}
const route = {
path: '/',
Component: AppPage,
children: [
{
path: 'foo',
children: {
nav: [
{
path: '(.*)?',
Component: FooNav,
},
],
main: [
{
path: 'a',
Component: FooA,
},
{
path: 'b',
Component: FooB,
},
],
},
},
{
path: 'bar',
children: {
nav: [
{
path: '(.*)?',
Component: BarNav,
},
],
main: [
{
Component: BarMain,
},
],
},
},
],
};
const jsxRoute = (
<Route path="/" Component={AppPage}>
<Route path="foo">
{{
nav: <Route path="(.*)?" Component={FooNav} />,
main: [
<Route path="a" Component={FooA} />,
<Route path="b" Component={FooB} />,
],
}}
</Route>
<Route path="bar">
{{
nav: <Route path="(.*)?" Component={BarNav} />,
main: <Route Component={BarMain} />,
}}
</Route>
</Route>
);
The Redirect
route class sets up static redirect routes. You can also use it to create JSX <Redirect>
elements for use with makeRouteConfig
. This class takes from
and to
properties and an optional status
property. from
should be a path pattern as for normal routes above. to
can be either a path pattern or a function. If it is a path pattern, the router will populate path parameters appropriately. If it is a function, it will receive the same routing state object as getComponent
and getData
, as described above. status
is used to set the HTTP status code when redirecting from the server, and defaults to 302
if it is not specified.
const redirect1 = new Redirect({
from: 'widget/:widgetId',
to: '/widgets/:widgetId',
});
const redirect2 = new Redirect({
from: 'widget/:widgetId',
to: ({ params }) => `/widgets/${params.widgetId}`,
status: 301,
});
const jsxRedirect1 = (
<Redirect from="widget/:widgetId" to="/widgets/:widgetId" />
);
const jsxRedirect2 = (
<Redirect
from="widget/:widgetId"
to={({ params }) => `/widgets/${params.widgetId}`}
status={301}
/>
);
If you need more custom control over redirection, throw a RedirectException
in your route's render
method with a location descriptor and optional status code as above for the redirect destination.
const customRedirect = {
getData: fetchRedirectInfo,
render: ({ data }) => {
if (data) {
throw new RedirectException(data.redirectLocation);
}
},
};
const permanentRedirect = {
render: () => {
throw new RedirectException('/widgets', 301);
},
};
The HttpError
class signals handled router-level error states. This error class takes a status value that should be an integer corresponding to an HTTP error code and an optional data value of any type. You can handle these errors and render appropriate error feedback in the router-level render method described below.
throw new HttpError(status, data);
The router will throw a new HttpError(404)
in the case when no routes match the current location. Otherwise, you can throw HttpError
instances in the getComponent
, getData
, and render
methods to signal error states.
const route = {
path: 'widgets/:widgetId',
Component: WidgetPage,
getData: ({ params: { widgetId } }) =>
fetchWidget(widgetId).catch(() => {
throw new HttpError(404);
}),
};
You can implement reusable logic in routes with a custom route class. When extending Route
, methods defined on the class will be overridden by explicitly specified route properties. You can use custom route classes for either object route configurations or JSX route configurations.
Note: To avoid issues with React Hot Loader, custom route classes should usually extend
Route
.
class AsyncRoute extends Route {
// An explicit render property on the route will override this.
render({ Component, props }) {
return Component && props ? (
<Component {...props} />
) : (
<LoadingIndicator />
);
}
const myRoute = new AsyncRoute(properties);
const myJsxRoute = <AsyncRoute {...properties} />;
Found exposes a number of router component class factories at varying levels of abstraction. These factories accept the static configuration properties for the router, such as the route configuration. The use of static configuration allows for efficient, parallel data fetching and state management as above.
createBrowserRouter
creates a basic router component class that uses the HTML5 History API for navigation. This factory uses reasonable defaults that should fit a variety use cases.
import { createBrowserRouter } from 'found';
/* ... */
const BrowserRouter = createBrowserRouter({
routeConfig,
renderError: ({ error }) => (
<div>{error.status === 404 ? 'Not found' : 'Error'}</div>
),
});
ReactDOM.render(<BrowserRouter />, document.getElementById('root'));
createBrowserRouter
takes an options object. The only mandatory property on this object is routeConfig
, which should be a route configuration as above.
The options object also accepts a number of optional properties:
historyMiddlewares
: an array of Farce history middlewares; by default, an array containing onlyqueryMiddleware
historyOptions
: additional configuration options for the Farce history store enhancerrenderPending
: a custom render function called when some routes are not yet ready to render, due to those routes have unresolved asynchronous dependencies and no route-levelrender
method for handling the loading staterenderReady
: a custom render function called when all routes are ready to renderrenderError
: a custom render function called if anHttpError
is thrown while resolving route elementsrender
: a custom render function called in all cases, supersedingrenderPending
,renderReady
, andrenderError
; by default, this iscreateRender({ renderPending, renderReady, renderError })
The renderPending
, renderReady
, renderError
, and render
functions receive the routing state object as an argument, with the following additional properties:
elements
: if present, an array the resolved elements for the matched routes; the array item will benull
for routes without elementserror
: if present, theHttpError
object thrown during element resolution with properties describing the errorstatus
: the status code; this is the first argument to theHttpError
constructordata
: additional error data; this is the second argument to theHttpError
constructor
You should specify a renderError
function or otherwise handle error states. You can specify renderPending
and renderReady
functions to indicate loading state globally; the global pending state example demonstrates doing this using a static container.
The created <BrowserRouter>
accepts an optional matchContext
prop as described above that injects additional context into the route resolution methods.
createFarceRouter
exposes additional configuration for customizing navigation management and route element resolution. To enable minimizing bundle size, it omits some defaults from createBrowserRouter
.
import { BrowserProtocol, queryMiddleware } from 'farce';
import { createFarceRouter, resolver } from 'found';
/* ... */
const FarceRouter = createFarceRouter({
historyProtocol: new BrowserProtocol(),
historyMiddlewares: [queryMiddleware],
routeConfig,
renderError: ({ error }) => (
<div>{error.status === 404 ? 'Not found' : 'Error'}</div>
),
});
ReactDOM.render(
<FarceRouter resolver={resolver} />,
document.getElementById('root'),
);
The options object for createFarceRouter
should have a historyProtocol
property that has a history protocol object. For example, to use the HTML History API as with createBrowserRouter
, you would provide new BrowserProtocol()
.
The created <FarceRouter>
manages setting up and providing a Redux store with the appropriate configuration internally. It also requires a resolver
prop with the route element resolver object. For routes configured as above, this should be the resolver
object in this library.
createConnectedRouter
creates a router that works with an existing Redux store and provider.
import {
Actions as FarceActions,
BrowserProtocol,
createHistoryEnhancer,
queryMiddleware,
} from 'farce';
import {
createConnectedRouter,
createMatchEnhancer,
createRender,
foundReducer,
Matcher,
resolver,
} from 'found';
import { Provider } from 'react-redux';
import { combineReducers, compose, createStore } from 'redux';
/* ... */
const store = createStore(
combineReducers({
found: foundReducer,
}),
compose(
createHistoryEnhancer({
protocol: new BrowserProtocol(),
middlewares: [queryMiddleware],
}),
createMatchEnhancer(new Matcher(routeConfig)),
),
);
store.dispatch(FarceActions.init());
const ConnectedRouter = createConnectedRouter({
render: createRender({
renderError: ({ error }) => (
<div>{error.status === 404 ? 'Not found' : 'Error'}</div>
),
}),
});
ReactDOM.render(
<Provider store={store}>
<ConnectedRouter resolver={resolver} />
</Provider>,
document.getElementById('root'),
);
Note: Found uses
redux
andreact-redux
as direct dependencies for the convenience of users not directly using Redux. If you are directly using Redux, either ensure that you have the same versions ofredux
andreact-redux
installed as used in Found, or use package manager or bundler resolutions to force Found to use the same versions of those packages that you are using directly. Found is compatible with any current release ofredux
orreact-redux
.
When creating a store for use with the created <ConnectedRouter>
, you should install the foundReducer
reducer under the found
key. You should also use a store enhancer created with createHistoryEnhancer
from Farce and a store enhancer created with createMatchEnhancer
, which must go after the history store enhancer. Dispatch FarceActions.init()
after setting up your store to initialize the event listeners and the initial location for the history store enhancer.
createConnectedRouter
ignores the historyProtocol
, historyMiddlewares
, and historyOptions
properties on its options object.
createConnectedRouter
also accepts an optional getFound
property. If you installed foundReducer
on a key other than found
, specify the getFound
function to retrieve the reducer state.
Found provides a high-level abstractions such as a link component for controlling browser navigation. Under the hood, it delegates to Farce for implementation, and as such can also be controlled directly via the Redux store.
The <Link>
component renders a link with optional active state indication.
const link1 = (
<Link to="/widgets/foo" activeClassName="active">
Foo widget
</Link>
);
const link2 = (
<Link
as={CustomAnchor}
to={{
pathname: '/widgets/bar',
query: { the: query },
}}
activePropName="active"
>
Bar widget with query
</Link>
);
const link3 = (
<Link
to={{
pathname: '/widgets/bar',
query: { the: query },
}}
>
{({ href, active, onClick }) => (
<CustomButton href={href} active={active} onClick={onClick} />
)}
</Link>
);
<Link>
accepts the following props:
to
: a location descriptor for the link's destinationexact
: if specified, the link will only render as active if the current location exactly matches theto
location descriptor; by default, the link also will render as active on subpaths of theto
location descriptoractiveClassName
: if specified, a CSS class to append to the component's CSS classes when the link is activeactiveStyle
: if specified, a style object to append merge with the component's style object when the link is activeactivePropName
: if specified, a prop to inject with a boolean value with the link's active stateas
: if specified, the custom element type to use for the link; by default, the link will render an<a>
element
A link will navigate per its to
location descriptor when clicked. You can prevent this navigation by providing an onClick
handler that calls event.preventDefault()
.
<Link>
accepts a function for children
. If children
is a function, then <Link>
will render the return value of that function, and will ignore activeClassName
, activeStyle
, activePropName
, and as
above. The function will be called with an object with the following properties:
href
: the URL for the linkactive
: whether the link is activeonClick
: the click event handler for the link element
Otherwise, <Link>
forwards additional props to the child element.
The withRouter
HOC wraps an existing component class or function and injects match
and router
props, as on route components above. You can use this HOC to create components that navigate programmatically in event handlers.
const propTypes = {
match: matchShape.isRequired,
router: routerShape.isRequired,
};
class MyButton extends React.Component {
onClick = () => {
this.props.router.replace('/widgets');
};
render() {
return (
<button onClick={this.onClick}>
Current widget: {this.props.match.params.widgetId}
</button>
);
}
}
MyButton.propTypes = propTypes;
export default withRouter(MyButton);
The useRouter
Hook provides the same capabilities.
function MyButton() {
const { match, router } = useRouter();
const onClick = useCallback(() => {
router.replace('/widgets');
}, [router]);
return (
<button onClick={onClick}>Current widget: {match.params.widgetId}</button>
);
}
The router.addNavigationListener
method adds a navigation listener that can block navigation. This method accepts a navigation listener function and an optional options object. It returns a function that removes the navigation listener.
function MyForm(props) {
const [dirty, setDirty] = useState(false);
const { router } = useRouter();
useEffect(
() =>
dirty
? router.addNavigationListener(
() =>
'You have unsaved input. Are you sure you want to leave this page?',
)
: undefined,
[dirty],
);
/* ... */
}
The navigation listener function receives the location to which the user is attempting to navigate as its argument. Return true
or false
from this function to allow or block navigation respectively. Return a string to display a default confirmation dialog to the user. Return a nully value to use the next navigation listener if present, or else allow navigation. Return a promise to defer allowing or blocking navigation until the promise resolves; you can use this to display a custom confirmation dialog.
If you want to run your navigation listeners when the user attempts to leave the page, set beforeUnload
in the options object. If this option is enabled, your navigation listeners will be called with a null
location when the user attempts to leave the page. In this scenario, the navigation listener must return a non-promise value.
router.addNavigationListener(
(location) => {
if (!location) {
return false;
}
return asyncConfirm(location);
},
{ beforeUnload: true },
);
The navigation listener usage example demonstrates the use of navigation listeners in more detail, including the use of the beforeUnload
option.
Found uses Redux to manage all serializable state. Farce uses Redux actions for navigation. As such, you can also access those serializable parts of the routing state from the store state, and you can navigate by dispatching actions.
If you are using your own Redux store, use createConnectedRouter
as described above to have a single store that contains both routing state and other application state. Additionally, if you need to make this store available in getData
methods on routes, pass it to matchContext
on the router component as described above.
To access the current routing state, connect to the resolvedMatch
property of the foundReducer
state. To navigate, dispatch the appropriate actions from Farce.
import { Actions as FarceActions } from 'farce';
import { connect } from 'react-redux';
const MyConnectedComponent = connect(
({ found: { resolvedMatch } }) => ({
location: resolvedMatch.location,
params: resolvedMatch.params,
}),
{
push: FarceActions.push,
},
)(MyComponent);
When using hot reloading via React Hot Loader, mark your route configuration with hotRouteConfig
to enable hot reloading for your route configuration as well.
export default hotRouteConfig(routeConfig);
This will replace the route configuration and rerun the match with the current location whenever the route configuration changes. As with React Hot Loader, this is safe to do unconditionally, as it will have no effect in production.
Note: Changes to route components also count as route configuration changes. If your routes have asynchronous data dependencies, ensure that the data are cached. Otherwise, the router will refetch data every time a route component changes.
createMatchEnhancer
takes an optional getFound
function as its second argument. If you installed foundReducer
on a key other than found
, specify the getFound
function to retrieve the reducer state to enable this hot reloading support.
You can also manually replace the route configuration and rerun the match by calling found.replaceRouteConfig
on a Found-enhanced store object.
Found supports server-side rendering for universal applications. Functionality specific to server-side rendering is available in found/server
.
To render your application on the server, use getFarceResult
.
import { getFarceResult } from 'found/server';
/* ... */
app.use(async (req, res) => {
const { redirect, status, element } = await getFarceResult({
url: req.url,
routeConfig,
render,
});
if (redirect) {
res.redirect(redirect.status, redirect.url);
return;
}
res.status(status).send(`
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Found Universal Example</title>
</head>
<body>
<div id="root">${ReactDOMServer.renderToString(element)}</div>
<script src="/static/bundle.js"></script>
</body>
</html>
`);
});
getFarceResult
takes an options object. This object must include the url
property that is the full path of the current request, along with the routeConfig
and render
properties needed to create a Farce router component class normally.
The options object for getFarceResult
also takes the historyMiddlewares
and historyOptions
properties, as above for creating Farce router component classes. This options object also takes optional matchContext
and resolver
properties, as described above as props for router components. resolver
defaults to the standard resolver
object in this library.
getFarceResult
returns a promise for an object with the following properties:
redirect
: if present, indicates that element resolution triggered a redirect;redirect.url
contains the full path for the redirect locationstatus
: if there was no redirect, the HTTP status code for the response; this will beerror.status
from any encounteredHttpError
, or 200 otherwiseelement
: if there was no redirect, the React element corresponding to the router component on the client
This promise resolves when all asynchronous dependencies are available. If your routes require asynchronous data, e.g. from getData
methods, you may want to dehydrate those data on the server, then rehydrate them on the client, to avoid the client having to request those data again.
When using server-side rendering, you need to delay the initial render on the client, such that the initial client-rendered markup matches the server-rendered markup. To do so, use createInitialBrowserRouter
or createInitialFarceRouter
instead of createBrowserRouter
or createFarceRouter
respectively.
import { createInitialBrowserRouter } from 'found';
/* ... */
(async () => {
const BrowserRouter = await createInitialBrowserRouter({
routeConfig,
render,
});
ReactDOM.render(<BrowserRouter />, document.getElementById('root'));
})();
These behave similarly to their counterparts above, except that the options object for createInitialBrowserRouter
requires a render
method, and ignores the renderPending
, renderReady
, and renderError
properties. Additionally, these functions take the initial matchContext
and resolver
if relevant as properties on the options object, rather than as props.
Found exposes lower-level functionality for doing server-side rendering for use with your own Redux store, as with createConnectedRouter
above. On the server, use getStoreRenderArgs
to get a promise for the arguments to your render
function, then wrap the rendered elements with a <RouterProvider>
.
import { getStoreRenderArgs } from 'found';
import { RouterProvider } from 'found/server';
/* ... */
app.use(async (req, res) => {
/* ... */
let renderArgs;
try {
renderArgs = await getStoreRenderArgs({
store,
matchContext,
resolver,
});
} catch (e) {
if (e.isFoundRedirectException) {
res.redirect(e.status, store.farce.createHref(e.location));
return;
}
throw e;
}
res.status(renderArgs.error ? renderArgs.error.status : 200).send(
renderPageToString(
<Provider store={store}>
<RouterProvider renderArgs={renderArgs}>
{render(renderArgs)}
</RouterProvider>
</Provider>,
store.getState(),
),
);
});
You must dispatch FarceActions.init()
before calling getStoreRenderArgs
. getStoreRenderArgs
takes an options object. This object must have the store
property for your store and the resolver
property as described above. It supports an optional matchContext
property as described above as well. getStoreRenderArgs
returns a promise that resolves to a renderArgs
object that can be passed into a render
function as above.
On the client, pass the value resolved by by getStoreRenderArgs
to your <ConnectedRouter>
as the initialRenderArgs
prop.
import { getStoreRenderArgs } from 'found';
/* ... */
(async () => {
const initialRenderArgs = await getStoreRenderArgs({
store,
matchContext,
resolver,
});
ReactDOM.render(
<Provider store={store}>
<ConnectedRouter
matchContext={matchContext}
resolver={resolver}
initialRenderArgs={initialRenderArgs}
/>
</Provider>,
document.getElementById('root'),
);
})();
The top-level found
package exports everything available in this library. It is unlikely that any single application will use all the features available. As such, for real applications, you should import the modules you need directly, to pull in only the code that you use.
import createBrowserRouter from 'found/createBrowserRouter';
import makeRouteConfig from 'found/makeRouteConfig';
import { routerShape } from 'found/PropTypes';
import Route from 'found/Route';
// Instead of:
// import {
// createBrowserRouter,
// makeRouteConfig,
// Route,
// routerShape,
// } from 'found';