|
- "use strict";
-
- exports.__esModule = true;
-
- var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
-
- var _warning = require("warning");
-
- var _warning2 = _interopRequireDefault(_warning);
-
- var _invariant = require("invariant");
-
- var _invariant2 = _interopRequireDefault(_invariant);
-
- var _react = require("react");
-
- var _react2 = _interopRequireDefault(_react);
-
- var _propTypes = require("prop-types");
-
- var _propTypes2 = _interopRequireDefault(_propTypes);
-
- var _matchPath = require("./matchPath");
-
- var _matchPath2 = _interopRequireDefault(_matchPath);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
-
- function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
-
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
-
- var isEmptyChildren = function isEmptyChildren(children) {
- return _react2.default.Children.count(children) === 0;
- };
-
- /**
- * The public API for matching a single path and rendering.
- */
-
- var Route = function (_React$Component) {
- _inherits(Route, _React$Component);
-
- function Route() {
- var _temp, _this, _ret;
-
- _classCallCheck(this, Route);
-
- for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
- args[_key] = arguments[_key];
- }
-
- return _ret = (_temp = (_this = _possibleConstructorReturn(this, _React$Component.call.apply(_React$Component, [this].concat(args))), _this), _this.state = {
- match: _this.computeMatch(_this.props, _this.context.router)
- }, _temp), _possibleConstructorReturn(_this, _ret);
- }
-
- Route.prototype.getChildContext = function getChildContext() {
- return {
- router: _extends({}, this.context.router, {
- route: {
- location: this.props.location || this.context.router.route.location,
- match: this.state.match
- }
- })
- };
- };
-
- Route.prototype.computeMatch = function computeMatch(_ref, router) {
- var computedMatch = _ref.computedMatch,
- location = _ref.location,
- path = _ref.path,
- strict = _ref.strict,
- exact = _ref.exact,
- sensitive = _ref.sensitive;
-
- if (computedMatch) return computedMatch; // <Switch> already computed the match for us
-
- (0, _invariant2.default)(router, "You should not use <Route> or withRouter() outside a <Router>");
-
- var route = router.route;
-
- var pathname = (location || route.location).pathname;
-
- return (0, _matchPath2.default)(pathname, { path: path, strict: strict, exact: exact, sensitive: sensitive }, route.match);
- };
-
- Route.prototype.componentWillMount = function componentWillMount() {
- (0, _warning2.default)(!(this.props.component && this.props.render), "You should not use <Route component> and <Route render> in the same route; <Route render> will be ignored");
-
- (0, _warning2.default)(!(this.props.component && this.props.children && !isEmptyChildren(this.props.children)), "You should not use <Route component> and <Route children> in the same route; <Route children> will be ignored");
-
- (0, _warning2.default)(!(this.props.render && this.props.children && !isEmptyChildren(this.props.children)), "You should not use <Route render> and <Route children> in the same route; <Route children> will be ignored");
- };
-
- Route.prototype.componentWillReceiveProps = function componentWillReceiveProps(nextProps, nextContext) {
- (0, _warning2.default)(!(nextProps.location && !this.props.location), '<Route> elements should not change from uncontrolled to controlled (or vice versa). You initially used no "location" prop and then provided one on a subsequent render.');
-
- (0, _warning2.default)(!(!nextProps.location && this.props.location), '<Route> elements should not change from controlled to uncontrolled (or vice versa). You provided a "location" prop initially but omitted it on a subsequent render.');
-
- this.setState({
- match: this.computeMatch(nextProps, nextContext.router)
- });
- };
-
- Route.prototype.render = function render() {
- var match = this.state.match;
- var _props = this.props,
- children = _props.children,
- component = _props.component,
- render = _props.render;
- var _context$router = this.context.router,
- history = _context$router.history,
- route = _context$router.route,
- staticContext = _context$router.staticContext;
-
- var location = this.props.location || route.location;
- var props = { match: match, location: location, history: history, staticContext: staticContext };
-
- if (component) return match ? _react2.default.createElement(component, props) : null;
-
- if (render) return match ? render(props) : null;
-
- if (typeof children === "function") return children(props);
-
- if (children && !isEmptyChildren(children)) return _react2.default.Children.only(children);
-
- return null;
- };
-
- return Route;
- }(_react2.default.Component);
-
- Route.propTypes = {
- computedMatch: _propTypes2.default.object, // private, from <Switch>
- path: _propTypes2.default.string,
- exact: _propTypes2.default.bool,
- strict: _propTypes2.default.bool,
- sensitive: _propTypes2.default.bool,
- component: _propTypes2.default.func,
- render: _propTypes2.default.func,
- children: _propTypes2.default.oneOfType([_propTypes2.default.func, _propTypes2.default.node]),
- location: _propTypes2.default.object
- };
- Route.contextTypes = {
- router: _propTypes2.default.shape({
- history: _propTypes2.default.object.isRequired,
- route: _propTypes2.default.object.isRequired,
- staticContext: _propTypes2.default.object
- })
- };
- Route.childContextTypes = {
- router: _propTypes2.default.object.isRequired
- };
- exports.default = Route;
|