Created
August 5, 2016 16:55
-
-
Save taion/935f6417551380fa95d0f7f67964b83a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import invariant from 'invariant'; | |
import React from 'react'; | |
import BaseRoute from 'react-router/lib/Route'; | |
import LoadingIndicator from './LoadingIndicator'; | |
// This is not a component. | |
/* eslint-disable react/prop-types */ | |
function render({ props, element }) { | |
if (!props) { | |
return <LoadingIndicator />; | |
} | |
if (this.renderFetched) { | |
return this.renderFetched(props); | |
} | |
return React.cloneElement(element, props); | |
} | |
/* eslint-enable react/prop-types */ | |
function createRoute(element) { | |
const route = BaseRoute.createRouteFromReactElement(element); | |
if (!route.render && (route.queries || route.getQueries)) { | |
route.render = render; | |
} | |
return route; | |
} | |
function Route() { | |
invariant(false, '`<Route>` should not be rendered.'); | |
} | |
Route.createRouteFromReactElement = createRoute; | |
export default Route; | |
function createIndexRoute(element, parentRoute) { | |
invariant(parentRoute, 'An `<IndexRoute>` must have a parent.'); | |
/* eslint-disable no-param-reassign */ | |
parentRoute.indexRoute = createRoute(element); | |
/* eslint-enable no-param-reassign */ | |
} | |
function IndexRoute() { | |
invariant(false, '`<IndexRoute>` should not be rendered.'); | |
} | |
IndexRoute.createRouteFromReactElement = createIndexRoute; | |
export { IndexRoute }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment