"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 _react = require("react"); var _react2 = _interopRequireDefault(_react); var _propTypes = require("prop-types"); var _propTypes2 = _interopRequireDefault(_propTypes); var _warning = require("warning"); var _warning2 = _interopRequireDefault(_warning); var _invariant = require("invariant"); var _invariant2 = _interopRequireDefault(_invariant); var _history = require("history"); var _generatePath = require("./generatePath"); var _generatePath2 = _interopRequireDefault(_generatePath); 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; } /** * The public API for updating the location programmatically * with a component. */ var Redirect = function (_React$Component) { _inherits(Redirect, _React$Component); function Redirect() { _classCallCheck(this, Redirect); return _possibleConstructorReturn(this, _React$Component.apply(this, arguments)); } Redirect.prototype.isStatic = function isStatic() { return this.context.router && this.context.router.staticContext; }; Redirect.prototype.componentWillMount = function componentWillMount() { (0, _invariant2.default)(this.context.router, "You should not use outside a "); if (this.isStatic()) this.perform(); }; Redirect.prototype.componentDidMount = function componentDidMount() { if (!this.isStatic()) this.perform(); }; Redirect.prototype.componentDidUpdate = function componentDidUpdate(prevProps) { var prevTo = (0, _history.createLocation)(prevProps.to); var nextTo = (0, _history.createLocation)(this.props.to); if ((0, _history.locationsAreEqual)(prevTo, nextTo)) { (0, _warning2.default)(false, "You tried to redirect to the same route you're currently on: " + ("\"" + nextTo.pathname + nextTo.search + "\"")); return; } this.perform(); }; Redirect.prototype.computeTo = function computeTo(_ref) { var computedMatch = _ref.computedMatch, to = _ref.to; if (computedMatch) { if (typeof to === "string") { return (0, _generatePath2.default)(to, computedMatch.params); } else { return _extends({}, to, { pathname: (0, _generatePath2.default)(to.pathname, computedMatch.params) }); } } return to; }; Redirect.prototype.perform = function perform() { var history = this.context.router.history; var push = this.props.push; var to = this.computeTo(this.props); if (push) { history.push(to); } else { history.replace(to); } }; Redirect.prototype.render = function render() { return null; }; return Redirect; }(_react2.default.Component); Redirect.propTypes = { computedMatch: _propTypes2.default.object, // private, from push: _propTypes2.default.bool, from: _propTypes2.default.string, to: _propTypes2.default.oneOfType([_propTypes2.default.string, _propTypes2.default.object]).isRequired }; Redirect.defaultProps = { push: false }; Redirect.contextTypes = { router: _propTypes2.default.shape({ history: _propTypes2.default.shape({ push: _propTypes2.default.func.isRequired, replace: _propTypes2.default.func.isRequired }).isRequired, staticContext: _propTypes2.default.object }).isRequired }; exports.default = Redirect;