react-history
Advanced tools
Comparing version 0.16.0 to 0.16.1
@@ -5,4 +5,2 @@ 'use strict'; | ||
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'); | ||
@@ -16,6 +14,4 @@ | ||
var _HistoryProvider = require('./HistoryProvider'); | ||
var _PropTypes = require('./PropTypes'); | ||
var _HistoryProvider2 = _interopRequireDefault(_HistoryProvider); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
@@ -29,2 +25,6 @@ | ||
/** | ||
* Manages session history using the HTML5 history API including | ||
* pushState, replaceState, and the popstate event. | ||
*/ | ||
var BrowserHistory = function (_React$Component) { | ||
@@ -39,3 +39,11 @@ _inherits(BrowserHistory, _React$Component); | ||
BrowserHistory.prototype.getChildContext = function getChildContext() { | ||
return { | ||
history: this.history | ||
}; | ||
}; | ||
BrowserHistory.prototype.componentWillMount = function componentWillMount() { | ||
var _this2 = this; | ||
var _props = this.props; | ||
@@ -54,6 +62,24 @@ var basename = _props.basename; | ||
}); | ||
// Do this here so we catch actions in cDM. | ||
this.unlisten = this.history.listen(function () { | ||
return _this2.forceUpdate(); | ||
}); | ||
}; | ||
BrowserHistory.prototype.componentWillUnmount = function componentWillUnmount() { | ||
this.unlisten(); | ||
}; | ||
BrowserHistory.prototype.render = function render() { | ||
return _react2.default.createElement(_HistoryProvider2.default, _extends({}, this.props, { history: this.history })); | ||
var children = this.props.children; | ||
if (typeof children !== 'function') return _react2.default.Children.only(children); | ||
return children({ | ||
action: this.history.action, | ||
location: this.history.location, | ||
history: this.history | ||
}); | ||
}; | ||
@@ -68,4 +94,8 @@ | ||
getUserConfirmation: _react.PropTypes.func, | ||
keyLength: _react.PropTypes.number | ||
keyLength: _react.PropTypes.number, | ||
children: _react.PropTypes.oneOfType([_react.PropTypes.node, _react.PropTypes.func]).isRequired | ||
}; | ||
BrowserHistory.childContextTypes = { | ||
history: _PropTypes.history.isRequired | ||
}; | ||
exports.default = BrowserHistory; |
@@ -5,4 +5,2 @@ 'use strict'; | ||
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'); | ||
@@ -16,6 +14,4 @@ | ||
var _HistoryProvider = require('./HistoryProvider'); | ||
var _PropTypes = require('./PropTypes'); | ||
var _HistoryProvider2 = _interopRequireDefault(_HistoryProvider); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
@@ -29,2 +25,5 @@ | ||
/** | ||
* Manages session history using window.location.hash. | ||
*/ | ||
var HashHistory = function (_React$Component) { | ||
@@ -39,3 +38,11 @@ _inherits(HashHistory, _React$Component); | ||
HashHistory.prototype.getChildContext = function getChildContext() { | ||
return { | ||
history: this.history | ||
}; | ||
}; | ||
HashHistory.prototype.componentWillMount = function componentWillMount() { | ||
var _this2 = this; | ||
var _props = this.props; | ||
@@ -52,6 +59,24 @@ var basename = _props.basename; | ||
}); | ||
// Do this here so we catch actions in cDM. | ||
this.unlisten = this.history.listen(function () { | ||
return _this2.forceUpdate(); | ||
}); | ||
}; | ||
HashHistory.prototype.componentWillUnmount = function componentWillUnmount() { | ||
this.unlisten(); | ||
}; | ||
HashHistory.prototype.render = function render() { | ||
return _react2.default.createElement(_HistoryProvider2.default, _extends({}, this.props, { history: this.history })); | ||
var children = this.props.children; | ||
if (typeof children !== 'function') return _react2.default.Children.only(children); | ||
return children({ | ||
action: this.history.action, | ||
location: this.history.location, | ||
history: this.history | ||
}); | ||
}; | ||
@@ -65,4 +90,8 @@ | ||
getUserConfirmation: _react.PropTypes.func, | ||
hashType: _react.PropTypes.oneOf(['hashbang', 'noslash', 'slash']) | ||
hashType: _react.PropTypes.oneOf(['hashbang', 'noslash', 'slash']), | ||
children: _react.PropTypes.oneOfType([_react.PropTypes.node, _react.PropTypes.func]).isRequired | ||
}; | ||
HashHistory.childContextTypes = { | ||
history: _PropTypes.history.isRequired | ||
}; | ||
exports.default = HashHistory; |
@@ -5,4 +5,2 @@ 'use strict'; | ||
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'); | ||
@@ -16,6 +14,4 @@ | ||
var _HistoryProvider = require('./HistoryProvider'); | ||
var _PropTypes = require('./PropTypes'); | ||
var _HistoryProvider2 = _interopRequireDefault(_HistoryProvider); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
@@ -29,2 +25,5 @@ | ||
/** | ||
* Manages session history using in-memory storage. | ||
*/ | ||
var MemoryHistory = function (_React$Component) { | ||
@@ -39,3 +38,11 @@ _inherits(MemoryHistory, _React$Component); | ||
MemoryHistory.prototype.getChildContext = function getChildContext() { | ||
return { | ||
history: this.history | ||
}; | ||
}; | ||
MemoryHistory.prototype.componentWillMount = function componentWillMount() { | ||
var _this2 = this; | ||
var _props = this.props; | ||
@@ -54,6 +61,24 @@ var getUserConfirmation = _props.getUserConfirmation; | ||
}); | ||
// Do this here so we catch actions in cDM. | ||
this.unlisten = this.history.listen(function () { | ||
return _this2.forceUpdate(); | ||
}); | ||
}; | ||
MemoryHistory.prototype.componentWillUnmount = function componentWillUnmount() { | ||
this.unlisten(); | ||
}; | ||
MemoryHistory.prototype.render = function render() { | ||
return _react2.default.createElement(_HistoryProvider2.default, _extends({}, this.props, { history: this.history })); | ||
var children = this.props.children; | ||
if (typeof children !== 'function') return _react2.default.Children.only(children); | ||
return children({ | ||
action: this.history.action, | ||
location: this.history.location, | ||
history: this.history | ||
}); | ||
}; | ||
@@ -68,4 +93,8 @@ | ||
initialIndex: _react.PropTypes.number, | ||
keyLength: _react.PropTypes.number | ||
keyLength: _react.PropTypes.number, | ||
children: _react.PropTypes.oneOfType([_react.PropTypes.node, _react.PropTypes.func]).isRequired | ||
}; | ||
MemoryHistory.childContextTypes = { | ||
history: _PropTypes.history.isRequired | ||
}; | ||
exports.default = MemoryHistory; |
{ | ||
"name": "react-history", | ||
"version": "0.16.0", | ||
"version": "0.16.1", | ||
"description": "Manage session history with React", | ||
@@ -5,0 +5,0 @@ "repository": "mjackson/react-history", |
@@ -22,6 +22,6 @@ # react-history [![Travis][build-badge]][build] [![npm package][npm-badge]][npm] | ||
```js | ||
// using an ES6 transpiler, like babel | ||
// using ES6 modules | ||
import { BrowserHistory } from 'react-history' | ||
// not using an ES6 transpiler | ||
// using CommonJS modules | ||
var BrowserHistory = require('react-history').BrowserHistory | ||
@@ -221,6 +221,6 @@ ``` | ||
<History basename="/the/base"> | ||
{({ location }) => ( | ||
// When the URL is /the/base/home, location.pathname is just /home. | ||
<p>The current pathname is {location.pathname}.</p> | ||
)} | ||
{({ location }) => ( | ||
// When the URL is /the/base/home, location.pathname is just /home. | ||
<p>The current pathname is {location.pathname}.</p> | ||
)} | ||
</History> | ||
@@ -227,0 +227,0 @@ ``` |
@@ -78,11 +78,11 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
var _HashHistory2 = __webpack_require__(15); | ||
var _HashHistory2 = __webpack_require__(14); | ||
var _HashHistory3 = _interopRequireDefault(_HashHistory2); | ||
var _MemoryHistory2 = __webpack_require__(17); | ||
var _MemoryHistory2 = __webpack_require__(16); | ||
var _MemoryHistory3 = _interopRequireDefault(_MemoryHistory2); | ||
var _Prompt2 = __webpack_require__(19); | ||
var _Prompt2 = __webpack_require__(18); | ||
@@ -240,4 +240,2 @@ var _Prompt3 = _interopRequireDefault(_Prompt2); | ||
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 = __webpack_require__(2); | ||
@@ -251,6 +249,4 @@ | ||
var _HistoryProvider = __webpack_require__(14); | ||
var _PropTypes = __webpack_require__(3); | ||
var _HistoryProvider2 = _interopRequireDefault(_HistoryProvider); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
@@ -264,2 +260,6 @@ | ||
/** | ||
* Manages session history using the HTML5 history API including | ||
* pushState, replaceState, and the popstate event. | ||
*/ | ||
var BrowserHistory = function (_React$Component) { | ||
@@ -274,3 +274,11 @@ _inherits(BrowserHistory, _React$Component); | ||
BrowserHistory.prototype.getChildContext = function getChildContext() { | ||
return { | ||
history: this.history | ||
}; | ||
}; | ||
BrowserHistory.prototype.componentWillMount = function componentWillMount() { | ||
var _this2 = this; | ||
var _props = this.props; | ||
@@ -289,6 +297,24 @@ var basename = _props.basename; | ||
}); | ||
// Do this here so we catch actions in cDM. | ||
this.unlisten = this.history.listen(function () { | ||
return _this2.forceUpdate(); | ||
}); | ||
}; | ||
BrowserHistory.prototype.componentWillUnmount = function componentWillUnmount() { | ||
this.unlisten(); | ||
}; | ||
BrowserHistory.prototype.render = function render() { | ||
return _react2.default.createElement(_HistoryProvider2.default, _extends({}, this.props, { history: this.history })); | ||
var children = this.props.children; | ||
if (typeof children !== 'function') return _react2.default.Children.only(children); | ||
return children({ | ||
action: this.history.action, | ||
location: this.history.location, | ||
history: this.history | ||
}); | ||
}; | ||
@@ -299,2 +325,5 @@ | ||
BrowserHistory.childContextTypes = { | ||
history: _PropTypes.history.isRequired | ||
}; | ||
exports.default = BrowserHistory; | ||
@@ -1048,2 +1077,6 @@ | ||
var _createHashHistory = __webpack_require__(15); | ||
var _createHashHistory2 = _interopRequireDefault(_createHashHistory); | ||
var _PropTypes = __webpack_require__(3); | ||
@@ -1060,9 +1093,9 @@ | ||
/** | ||
* The common public API for all *History components. | ||
* Manages session history using window.location.hash. | ||
*/ | ||
var HistoryProvider = function (_React$Component) { | ||
_inherits(HistoryProvider, _React$Component); | ||
var HashHistory = function (_React$Component) { | ||
_inherits(HashHistory, _React$Component); | ||
function HistoryProvider() { | ||
_classCallCheck(this, HistoryProvider); | ||
function HashHistory() { | ||
_classCallCheck(this, HashHistory); | ||
@@ -1072,12 +1105,25 @@ return _possibleConstructorReturn(this, _React$Component.apply(this, arguments)); | ||
HistoryProvider.prototype.getChildContext = function getChildContext() { | ||
HashHistory.prototype.getChildContext = function getChildContext() { | ||
return { | ||
history: this.props.history | ||
history: this.history | ||
}; | ||
}; | ||
HistoryProvider.prototype.componentWillMount = function componentWillMount() { | ||
HashHistory.prototype.componentWillMount = function componentWillMount() { | ||
var _this2 = this; | ||
this.unlisten = this.props.history.listen(function () { | ||
var _props = this.props; | ||
var basename = _props.basename; | ||
var getUserConfirmation = _props.getUserConfirmation; | ||
var hashType = _props.hashType; | ||
this.history = (0, _createHashHistory2.default)({ | ||
basename: basename, | ||
getUserConfirmation: getUserConfirmation, | ||
hashType: hashType | ||
}); | ||
// Do this here so we catch actions in cDM. | ||
this.unlisten = this.history.listen(function () { | ||
return _this2.forceUpdate(); | ||
@@ -1087,10 +1133,8 @@ }); | ||
HistoryProvider.prototype.componentWillUnmount = function componentWillUnmount() { | ||
HashHistory.prototype.componentWillUnmount = function componentWillUnmount() { | ||
this.unlisten(); | ||
}; | ||
HistoryProvider.prototype.render = function render() { | ||
var _props = this.props; | ||
var children = _props.children; | ||
var history = _props.history; | ||
HashHistory.prototype.render = function render() { | ||
var children = this.props.children; | ||
@@ -1101,15 +1145,15 @@ | ||
return children({ | ||
action: history.action, | ||
location: history.location, | ||
history: history | ||
action: this.history.action, | ||
location: this.history.location, | ||
history: this.history | ||
}); | ||
}; | ||
return HistoryProvider; | ||
return HashHistory; | ||
}(_react2.default.Component); | ||
HistoryProvider.childContextTypes = { | ||
HashHistory.childContextTypes = { | ||
history: _PropTypes.history.isRequired | ||
}; | ||
exports.default = HistoryProvider; | ||
exports.default = HashHistory; | ||
@@ -1126,64 +1170,2 @@ /***/ }, | ||
var _react = __webpack_require__(2); | ||
var _react2 = _interopRequireDefault(_react); | ||
var _createHashHistory = __webpack_require__(16); | ||
var _createHashHistory2 = _interopRequireDefault(_createHashHistory); | ||
var _HistoryProvider = __webpack_require__(14); | ||
var _HistoryProvider2 = _interopRequireDefault(_HistoryProvider); | ||
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 HashHistory = function (_React$Component) { | ||
_inherits(HashHistory, _React$Component); | ||
function HashHistory() { | ||
_classCallCheck(this, HashHistory); | ||
return _possibleConstructorReturn(this, _React$Component.apply(this, arguments)); | ||
} | ||
HashHistory.prototype.componentWillMount = function componentWillMount() { | ||
var _props = this.props; | ||
var basename = _props.basename; | ||
var getUserConfirmation = _props.getUserConfirmation; | ||
var hashType = _props.hashType; | ||
this.history = (0, _createHashHistory2.default)({ | ||
basename: basename, | ||
getUserConfirmation: getUserConfirmation, | ||
hashType: hashType | ||
}); | ||
}; | ||
HashHistory.prototype.render = function render() { | ||
return _react2.default.createElement(_HistoryProvider2.default, _extends({}, this.props, { history: this.history })); | ||
}; | ||
return HashHistory; | ||
}(_react2.default.Component); | ||
exports.default = HashHistory; | ||
/***/ }, | ||
/* 16 */ | ||
/***/ function(module, exports, __webpack_require__) { | ||
'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 = __webpack_require__(6); | ||
@@ -1505,3 +1487,3 @@ | ||
/***/ }, | ||
/* 17 */ | ||
/* 16 */ | ||
/***/ function(module, exports, __webpack_require__) { | ||
@@ -1513,4 +1495,2 @@ | ||
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 = __webpack_require__(2); | ||
@@ -1520,10 +1500,8 @@ | ||
var _createMemoryHistory = __webpack_require__(18); | ||
var _createMemoryHistory = __webpack_require__(17); | ||
var _createMemoryHistory2 = _interopRequireDefault(_createMemoryHistory); | ||
var _HistoryProvider = __webpack_require__(14); | ||
var _PropTypes = __webpack_require__(3); | ||
var _HistoryProvider2 = _interopRequireDefault(_HistoryProvider); | ||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | ||
@@ -1537,2 +1515,5 @@ | ||
/** | ||
* Manages session history using in-memory storage. | ||
*/ | ||
var MemoryHistory = function (_React$Component) { | ||
@@ -1547,3 +1528,11 @@ _inherits(MemoryHistory, _React$Component); | ||
MemoryHistory.prototype.getChildContext = function getChildContext() { | ||
return { | ||
history: this.history | ||
}; | ||
}; | ||
MemoryHistory.prototype.componentWillMount = function componentWillMount() { | ||
var _this2 = this; | ||
var _props = this.props; | ||
@@ -1562,6 +1551,24 @@ var getUserConfirmation = _props.getUserConfirmation; | ||
}); | ||
// Do this here so we catch actions in cDM. | ||
this.unlisten = this.history.listen(function () { | ||
return _this2.forceUpdate(); | ||
}); | ||
}; | ||
MemoryHistory.prototype.componentWillUnmount = function componentWillUnmount() { | ||
this.unlisten(); | ||
}; | ||
MemoryHistory.prototype.render = function render() { | ||
return _react2.default.createElement(_HistoryProvider2.default, _extends({}, this.props, { history: this.history })); | ||
var children = this.props.children; | ||
if (typeof children !== 'function') return _react2.default.Children.only(children); | ||
return children({ | ||
action: this.history.action, | ||
location: this.history.location, | ||
history: this.history | ||
}); | ||
}; | ||
@@ -1572,6 +1579,9 @@ | ||
MemoryHistory.childContextTypes = { | ||
history: _PropTypes.history.isRequired | ||
}; | ||
exports.default = MemoryHistory; | ||
/***/ }, | ||
/* 18 */ | ||
/* 17 */ | ||
/***/ function(module, exports, __webpack_require__) { | ||
@@ -1746,3 +1756,3 @@ | ||
/***/ }, | ||
/* 19 */ | ||
/* 18 */ | ||
/***/ function(module, exports, __webpack_require__) { | ||
@@ -1749,0 +1759,0 @@ |
@@ -1,1 +0,1 @@ | ||
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("react")):"function"==typeof define&&define.amd?define(["react"],e):"object"==typeof exports?exports.ReactHistory=e(require("react")):t.ReactHistory=e(t.React)}(this,function(t){return function(t){function e(o){if(n[o])return n[o].exports;var r=n[o]={exports:{},id:o,loaded:!1};return t[o].call(r.exports,r,r.exports,e),r.loaded=!0,r.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0,e.Prompt=e.MemoryHistory=e.HashHistory=e.BrowserHistory=void 0;var r=n(11);Object.keys(r).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(e,t,{enumerable:!0,get:function(){return r[t]}})});var i=n(12),a=o(i),u=n(13),c=o(u),s=n(14),f=o(s),l=n(15),p=o(l);e.BrowserHistory=a["default"],e.HashHistory=c["default"],e.MemoryHistory=f["default"],e.Prompt=p["default"]},function(e,n){e.exports=t},function(t,e,n){"use strict";var o=function(){};t.exports=o},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}e.__esModule=!0;var u=n(1),c=o(u),s=n(4),f=function(t){function e(){return r(this,e),i(this,t.apply(this,arguments))}return a(e,t),e.prototype.getChildContext=function(){return{history:this.props.history}},e.prototype.componentWillMount=function(){var t=this;this.unlisten=this.props.history.listen(function(){return t.forceUpdate()})},e.prototype.componentWillUnmount=function(){this.unlisten()},e.prototype.render=function(){var t=this.props,e=t.children,n=t.history;return"function"!=typeof e?c["default"].Children.only(e):e({action:n.action,location:n.location,history:n})},e}(c["default"].Component);f.childContextTypes={history:s.history.isRequired},e["default"]=f},function(t,e,n){"use strict";e.__esModule=!0,e.history=e.location=e.action=void 0;var o=n(1),r=e.action=o.PropTypes.oneOf(["PUSH","REPLACE","POP"]),i=e.location=o.PropTypes.shape({pathname:o.PropTypes.string.isRequired,search:o.PropTypes.string.isRequired,hash:o.PropTypes.string.isRequired,state:o.PropTypes.object,key:o.PropTypes.string});e.history=o.PropTypes.shape({action:r.isRequired,location:i.isRequired,push:o.PropTypes.func.isRequired,replace:o.PropTypes.func.isRequired,go:o.PropTypes.func.isRequired,goBack:o.PropTypes.func.isRequired,goForward:o.PropTypes.func.isRequired,canGo:o.PropTypes.func,block:o.PropTypes.func.isRequired})},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0,e.locationsAreEqual=e.createLocation=void 0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol?"symbol":typeof t},i=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o])}return t},a=n(19),u=o(a),c=n(6),s=(e.createLocation=function(t,e,n,o){var r=void 0;return"string"==typeof t?(r=(0,c.parsePath)(t),r.state=e):(r=i({},t),void 0===r.pathname&&(r.pathname=""),r.search?"?"!==r.search.charAt(0)&&(r.search="?"+r.search):r.search="",r.hash?"#"!==r.hash.charAt(0)&&(r.hash="#"+r.hash):r.hash="",void 0!==e&&void 0===r.state&&(r.state=e)),r.key=n,o&&(r.pathname?"/"!==r.pathname.charAt(0)&&(r.pathname=(0,u["default"])(r.pathname,o.pathname)):r.pathname=o.pathname),r},function f(t,e){if(null==t)return t==e;var n="undefined"==typeof t?"undefined":r(t),o="undefined"==typeof e?"undefined":r(e);if(n!==o)return!1;if(Array.isArray(t))return!(!Array.isArray(e)||t.length!==e.length)&&t.every(function(t,n){return f(t,e[n])});if("object"===n){var i=Object.keys(t),a=Object.keys(e);return i.length===a.length&&i.every(function(n){return f(t[n],e[n])})}return t===e});e.locationsAreEqual=function(t,e){return t.pathname===e.pathname&&t.search===e.search&&t.hash===e.hash&&t.key===e.key&&s(t.state,e.state)}},function(t,e){"use strict";e.__esModule=!0;e.addLeadingSlash=function(t){return"/"===t.charAt(0)?t:"/"+t},e.stripLeadingSlash=function(t){return"/"===t.charAt(0)?t.substr(1):t},e.stripPrefix=function(t,e){return 0===t.indexOf(e)?t.substr(e.length):t},e.parsePath=function(t){var e=t||"/",n="",o="",r=e.indexOf("#");r!==-1&&(o=e.substr(r),e=e.substr(0,r));var i=e.indexOf("?");return i!==-1&&(n=e.substr(i),e=e.substr(0,i)),{pathname:e,search:"?"===n?"":n,hash:"#"===o?"":o}},e.createPath=function(t){var e=t.pathname,n=t.search,o=t.hash,r=e||"/";return n&&"?"!==n&&(r+="?"===n.charAt(0)?n:"?"+n),o&&"#"!==o&&(r+="#"===o.charAt(0)?o:"#"+o),r}},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0;var r=n(2),i=(o(r),function(){var t=null,e=function(e){return t=e,function(){t===e&&(t=null)}},n=function(e,n,o,r){if(null!=t){var i="function"==typeof t?t(e,n):t;"string"==typeof i?"function"==typeof o?o(i,r):r(!0):r(i!==!1)}else r(!0)},o=[],r=function(t){return o.push(t),function(){o=o.filter(function(e){return e!==t})}},i=function(){for(var t=arguments.length,e=Array(t),n=0;n<t;n++)e[n]=arguments[n];return o.forEach(function(t){return t.apply(void 0,e)})};return{setPrompt:e,confirmTransitionTo:n,appendListener:r,notifyListeners:i}});e["default"]=i},function(t,e){"use strict";e.__esModule=!0;e.addEventListener=function(t,e,n){return t.addEventListener?t.addEventListener(e,n,!1):t.attachEvent("on"+e,n)},e.removeEventListener=function(t,e,n){return t.removeEventListener?t.removeEventListener(e,n,!1):t.detachEvent("on"+e,n)},e.getConfirmation=function(t,e){return e(window.confirm(t))},e.supportsHistory=function(){var t=window.navigator.userAgent;return(t.indexOf("Android 2.")===-1&&t.indexOf("Android 4.0")===-1||t.indexOf("Mobile Safari")===-1||t.indexOf("Chrome")!==-1||t.indexOf("Windows Phone")!==-1)&&(window.history&&"pushState"in window.history)},e.supportsPopStateOnHashChange=function(){return window.navigator.userAgent.indexOf("Trident")===-1},e.supportsGoWithoutReloadUsingHash=function(){return window.navigator.userAgent.indexOf("Firefox")===-1}},function(t,e){"use strict";e.__esModule=!0;e.canUseDOM=!("undefined"==typeof window||!window.document||!window.document.createElement)},function(t,e,n){"use strict";var o=function(t,e,n,o,r,i,a,u){if(!t){var c;if(void 0===e)c=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var s=[n,o,r,i,a,u],f=0;c=new Error(e.replace(/%s/g,function(){return s[f++]})),c.name="Invariant Violation"}throw c.framesToPop=1,c}};t.exports=o},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}e.__esModule=!0,e.Forward=e.Back=e.Pop=e.Replace=e.Push=void 0;var u=n(1),c=o(u),s=n(4),f=function(t){function e(){return r(this,e),i(this,t.apply(this,arguments))}return a(e,t),e.prototype.performAction=function(){this.props.perform(this.context.history)},e.prototype.componentDidMount=function(){this.performAction()},e.prototype.componentDidUpdate=function(){this.performAction()},e.prototype.render=function(){return null},e}(c["default"].Component);f.contextTypes={history:s.history.isRequired};var l=(e.Push=function(t){var e=t.location,n=t.path,o=t.state;return c["default"].createElement(f,{perform:function(t){return t.push(e||n,o)}})},e.Replace=function(t){var e=t.location,n=t.path,o=t.state;return c["default"].createElement(f,{perform:function(t){return t.replace(e||n,o)}})},e.Pop=function(t){var e=t.go;return c["default"].createElement(f,{perform:function(t){return t.go(e)}})});l.defaultProps={go:-1};e.Back=function(){return c["default"].createElement(f,{perform:function(t){return t.goBack()}})},e.Forward=function(){return c["default"].createElement(f,{perform:function(t){return t.goForward()}})}},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}e.__esModule=!0;var u=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o])}return t},c=n(1),s=o(c),f=n(16),l=o(f),p=n(3),h=o(p),d=function(t){function e(){return r(this,e),i(this,t.apply(this,arguments))}return a(e,t),e.prototype.componentWillMount=function(){var t=this.props,e=t.basename,n=t.forceRefresh,o=t.getUserConfirmation,r=t.keyLength;this.history=(0,l["default"])({basename:e,forceRefresh:n,getUserConfirmation:o,keyLength:r})},e.prototype.render=function(){return s["default"].createElement(h["default"],u({},this.props,{history:this.history}))},e}(s["default"].Component);e["default"]=d},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}e.__esModule=!0;var u=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o])}return t},c=n(1),s=o(c),f=n(17),l=o(f),p=n(3),h=o(p),d=function(t){function e(){return r(this,e),i(this,t.apply(this,arguments))}return a(e,t),e.prototype.componentWillMount=function(){var t=this.props,e=t.basename,n=t.getUserConfirmation,o=t.hashType;this.history=(0,l["default"])({basename:e,getUserConfirmation:n,hashType:o})},e.prototype.render=function(){return s["default"].createElement(h["default"],u({},this.props,{history:this.history}))},e}(s["default"].Component);e["default"]=d},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}e.__esModule=!0;var u=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o])}return t},c=n(1),s=o(c),f=n(18),l=o(f),p=n(3),h=o(p),d=function(t){function e(){return r(this,e),i(this,t.apply(this,arguments))}return a(e,t),e.prototype.componentWillMount=function(){var t=this.props,e=t.getUserConfirmation,n=t.initialEntries,o=t.initialIndex,r=t.keyLength;this.history=(0,l["default"])({getUserConfirmation:e,initialEntries:n,initialIndex:o,keyLength:r})},e.prototype.render=function(){return s["default"].createElement(h["default"],u({},this.props,{history:this.history}))},e}(s["default"].Component);e["default"]=d},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}e.__esModule=!0;var u=n(1),c=o(u),s=n(4),f=function(t){function e(){return r(this,e),i(this,t.apply(this,arguments))}return a(e,t),e.prototype.block=function(){this.teardownPrompt||(this.teardownPrompt=this.context.history.block(this.props.message))},e.prototype.unblock=function(){this.teardownPrompt&&(this.teardownPrompt(),this.teardownPrompt=null)},e.prototype.componentWillMount=function(){this.props.when&&this.block()},e.prototype.componentWillReceiveProps=function(t){t.when?this.block():this.unblock()},e.prototype.componentWillUnmount=function(){this.unblock()},e.prototype.render=function(){return null},e}(c["default"].Component);f.contextTypes={history:s.history.isRequired},f.defaultProps={when:!0},e["default"]=f},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0;var r=("function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol?"symbol":typeof t},Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o])}return t}),i=n(2),a=(o(i),n(10)),u=o(a),c=n(5),s=n(6),f=n(7),l=o(f),p=n(9),h=n(8),d="popstate",y="hashchange",v=function(){try{return window.history.state||{}}catch(t){return{}}},m=function(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];p.canUseDOM?void 0:(0,u["default"])(!1);var e=window.history,n=(0,h.supportsHistory)(),o=!(0,h.supportsPopStateOnHashChange)(),i=t.basename,a=void 0===i?"":i,f=t.forceRefresh,m=void 0!==f&&f,b=t.getUserConfirmation,g=void 0===b?h.getConfirmation:b,w=t.keyLength,P=void 0===w?6:w,O=function(t){var e=t||{},n=e.key,o=e.state,i=window.location,u=i.pathname,c=i.search,f=i.hash,l=u+c+f;return a&&(l=(0,s.stripPrefix)(l,a)),r({},(0,s.parsePath)(l),{state:o,key:n})},_=function(){return Math.random().toString(36).substr(2,P)},x=(0,l["default"])(),E=function(t){r(G,t),G.length=e.length,x.notifyListeners(G.location,G.action)},T=function(t){void 0!==t.state&&M(O(t.state))},j=function(){M(O(v()))},L=!1,M=function(t){L?(L=!1,E()):!function(){var e="POP";x.confirmTransitionTo(t,e,g,function(n){n?E({action:e,location:t}):k(t)})}()},k=function(t){var e=G.location,n=C.indexOf(e.key);n===-1&&(n=0);var o=C.indexOf(t.key);o===-1&&(o=0);var r=n-o;r&&(L=!0,U(r))},S=O(v()),C=[S.key],R=function(t,o){var r="PUSH",i=(0,c.createLocation)(t,o,_(),G.location);x.confirmTransitionTo(i,r,g,function(t){if(t){var o=a+(0,s.createPath)(i),u=i.key,c=i.state;if(n)if(e.pushState({key:u,state:c},null,o),m)window.location.href=o;else{var f=C.indexOf(G.location.key),l=C.slice(0,f===-1?0:f+1);l.push(i.key),C=l,E({action:r,location:i})}else window.location.href=o}})},A=function(t,o){var r="REPLACE",i=(0,c.createLocation)(t,o,_(),G.location);x.confirmTransitionTo(i,r,g,function(t){if(t){var o=a+(0,s.createPath)(i),u=i.key,c=i.state;if(n)if(e.replaceState({key:u,state:c},null,o),m)window.location.replace(o);else{var f=C.indexOf(G.location.key);f!==-1&&(C[f]=i.key),E({action:r,location:i})}else window.location.replace(o)}})},U=function(t){e.go(t)},H=function(){return U(-1)},q=function(){return U(1)},W=0,B=function(t){W+=t,1===W?((0,h.addEventListener)(window,d,T),o&&(0,h.addEventListener)(window,y,j)):0===W&&((0,h.removeEventListener)(window,d,T),o&&(0,h.removeEventListener)(window,y,j))},F=!1,I=function(){var t=!(arguments.length<=0||void 0===arguments[0])&&arguments[0],e=x.setPrompt(t);return F||(B(1),F=!0),function(){return F&&(F=!1,B(-1)),e()}},D=function(t){var e=x.appendListener(t);return B(1),function(){return B(-1),e()}},G={length:e.length,action:"POP",location:S,push:R,replace:A,go:U,goBack:H,goForward:q,block:I,listen:D};return G};e["default"]=m},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0;var r=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o])}return t},i=n(2),a=(o(i),n(10)),u=o(a),c=n(5),s=n(6),f=n(7),l=o(f),p=n(9),h=n(8),d="hashchange",y={hashbang:{encodePath:function(t){return"!"===t.charAt(0)?t:"!/"+(0,s.stripLeadingSlash)(t)},decodePath:function(t){return"!"===t.charAt(0)?t.substr(1):t}},noslash:{encodePath:s.stripLeadingSlash,decodePath:s.addLeadingSlash},slash:{encodePath:s.addLeadingSlash,decodePath:s.addLeadingSlash}},v=function(){var t=window.location.href,e=t.indexOf("#");return e===-1?"":t.substring(e+1)},m=function(t){return window.location.hash=t},b=function(t){var e=window.location.href.indexOf("#");window.location.replace(window.location.href.slice(0,e>=0?e:0)+"#"+t)},g=function(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];p.canUseDOM?void 0:(0,u["default"])(!1);var e=window.history,n=((0,h.supportsGoWithoutReloadUsingHash)(),t.basename),o=void 0===n?"":n,i=t.getUserConfirmation,a=void 0===i?h.getConfirmation:i,f=t.hashType,g=void 0===f?"slash":f,w=y[g],P=w.encodePath,O=w.decodePath,_=function(){var t=O(v());return o&&(t=(0,s.stripPrefix)(t,o)),(0,s.parsePath)(t)},x=(0,l["default"])(),E=function(t){r(z,t),z.length=e.length,x.notifyListeners(z.location,z.action)},T=!1,j=null,L=function(){var t=v(),e=P(t);if(t!==e)b(e);else{var n=_(),o=z.location;if(!T&&(0,c.locationsAreEqual)(o,n))return;if(j===(0,s.createPath)(n))return;j=null,M(n)}},M=function(t){T?(T=!1,E()):!function(){var e="POP";x.confirmTransitionTo(t,e,a,function(n){n?E({action:e,location:t}):k(t)})}()},k=function(t){var e=z.location,n=A.lastIndexOf((0,s.createPath)(e));n===-1&&(n=0);var o=A.lastIndexOf((0,s.createPath)(t));o===-1&&(o=0);var r=n-o;r&&(T=!0,q(r))},S=v(),C=P(S);S!==C&&b(C);var R=_(),A=[(0,s.createPath)(R)],U=function(t,e){var n="PUSH",r=(0,c.createLocation)(t,void 0,void 0,z.location);x.confirmTransitionTo(r,n,a,function(t){if(t){var e=(0,s.createPath)(r),i=P(o+e),a=v()!==i;if(a){j=e,m(i);var u=A.lastIndexOf((0,s.createPath)(z.location)),c=A.slice(0,u===-1?0:u+1);c.push(e),A=c,E({action:n,location:r})}else E()}})},H=function(t,e){var n="REPLACE",r=(0,c.createLocation)(t,void 0,void 0,z.location);x.confirmTransitionTo(r,n,a,function(t){if(t){var e=(0,s.createPath)(r),i=P(o+e),a=v()!==i;a&&(j=e,b(i));var u=A.indexOf((0,s.createPath)(z.location));u!==-1&&(A[u]=e),E({action:n,location:r})}})},q=function(t){e.go(t)},W=function(){return q(-1)},B=function(){return q(1)},F=0,I=function(t){F+=t,1===F?(0,h.addEventListener)(window,d,L):0===F&&(0,h.removeEventListener)(window,d,L)},D=!1,G=function(){var t=!(arguments.length<=0||void 0===arguments[0])&&arguments[0],e=x.setPrompt(t);return D||(I(1),D=!0),function(){return D&&(D=!1,I(-1)),e()}},V=function(t){var e=x.appendListener(t);return I(1),function(){return I(-1),e()}},z={length:e.length,action:"POP",location:R,push:U,replace:H,go:q,goBack:W,goForward:B,block:G,listen:V};return z};e["default"]=g},function(t,e,n){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}e.__esModule=!0;var r=("function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol?"symbol":typeof t},Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(t[o]=n[o])}return t}),i=n(2),a=(o(i),n(5)),u=n(7),c=o(u),s=function(t,e,n){return Math.min(Math.max(t,e),n)},f=function(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],e=t.getUserConfirmation,n=t.initialEntries,o=void 0===n?["/"]:n,i=t.initialIndex,u=void 0===i?0:i,f=t.keyLength,l=void 0===f?6:f,p=(0,c["default"])(),h=function(t){r(E,t),E.length=E.entries.length,p.notifyListeners(E.location,E.action)},d=function(){return Math.random().toString(36).substr(2,l)},y=s(u,0,o.length-1),v=o.map(function(t,e){return"string"==typeof t?(0,a.createLocation)(t,void 0,e?d():void 0):(0,a.createLocation)(t,void 0,e?t.key||d():void 0)}),m=function(t,n){var o="PUSH",r=(0,a.createLocation)(t,n,d(),E.location);p.confirmTransitionTo(r,o,e,function(t){if(t){var e=E.index,n=e+1,i=E.entries.slice(0);i.length>n?i.splice(n,i.length-n,r):i.push(r),h({action:o,location:r,index:n,entries:i})}})},b=function(t,n){var o="REPLACE",r=(0,a.createLocation)(t,n,d(),E.location);p.confirmTransitionTo(r,o,e,function(t){t&&(E.entries[E.index]=r,h({action:o,location:r}))})},g=function(t){var n=s(E.index+t,0,E.entries.length-1),o="POP",r=E.entries[n];p.confirmTransitionTo(r,o,e,function(t){t?h({action:o,location:r,index:n}):h()})},w=function(){return g(-1)},P=function(){return g(1)},O=function(t){var e=E.index+t;return e>=0&&e<E.entries.length},_=function(){var t=!(arguments.length<=0||void 0===arguments[0])&&arguments[0];return p.setPrompt(t)},x=function(t){return p.appendListener(t)},E={length:v.length,action:"POP",location:v[y],index:y,entries:v,push:m,replace:b,go:g,goBack:w,goForward:P,canGo:O,block:_,listen:x};return E};e["default"]=f},function(t,e,n){!function(e,n){t.exports=n()}(this,function(){return function(t){function e(o){if(n[o])return n[o].exports;var r=n[o]={exports:{},id:o,loaded:!1};return t[o].call(r.exports,r,r.exports,e),r.loaded=!0,r.exports}var n={};return e.m=t,e.c=n,e.p="",e(0)}([function(t,e){"use strict";var n=function(t){return"/"===t.charAt(0)},o=function(t,e){for(var n=e,o=n+1,r=t.length;r>o;n+=1,o+=1)t[n]=t[o];t.pop()},r=function(t){var e=arguments.length<=1||void 0===arguments[1]?"":arguments[1],r=t&&t.split("/")||[],i=e&&e.split("/")||[],a=t&&n(t),u=e&&n(e),c=a||u;if(t&&n(t)?i=r:r.length&&(i.pop(),i=i.concat(r)),!i.length)return"/";var s=void 0;if(i.length){var f=i[i.length-1];s="."===f||".."===f||""===f}else s=!1;for(var l=0,p=i.length;p>=0;p--){var h=i[p];"."===h?o(i,p):".."===h?(o(i,p),l++):l&&(o(i,p),l--)}if(!c)for(;l--;l)i.unshift("..");!c||""===i[0]||i[0]&&n(i[0])||i.unshift("");var d=i.join("/");return s&&"/"!==d.substr(-1)&&(d+="/"),d};t.exports=r}])})}])}); | ||
!function(t,n){"object"==typeof exports&&"object"==typeof module?module.exports=n(require("react")):"function"==typeof define&&define.amd?define(["react"],n):"object"==typeof exports?exports.ReactHistory=n(require("react")):t.ReactHistory=n(t.React)}(this,function(t){return function(t){function n(o){if(e[o])return e[o].exports;var r=e[o]={exports:{},id:o,loaded:!1};return t[o].call(r.exports,r,r.exports,n),r.loaded=!0,r.exports}var e={};return n.m=t,n.c=e,n.p="",n(0)}([function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}n.__esModule=!0,n.Prompt=n.MemoryHistory=n.HashHistory=n.BrowserHistory=void 0;var r=e(10);Object.keys(r).forEach(function(t){"default"!==t&&"__esModule"!==t&&Object.defineProperty(n,t,{enumerable:!0,get:function(){return r[t]}})});var i=e(11),a=o(i),u=e(12),c=o(u),s=e(13),f=o(s),l=e(14),p=o(l);n.BrowserHistory=a["default"],n.HashHistory=c["default"],n.MemoryHistory=f["default"],n.Prompt=p["default"]},function(n,e){n.exports=t},function(t,n,e){"use strict";n.__esModule=!0,n.history=n.location=n.action=void 0;var o=e(1),r=n.action=o.PropTypes.oneOf(["PUSH","REPLACE","POP"]),i=n.location=o.PropTypes.shape({pathname:o.PropTypes.string.isRequired,search:o.PropTypes.string.isRequired,hash:o.PropTypes.string.isRequired,state:o.PropTypes.object,key:o.PropTypes.string});n.history=o.PropTypes.shape({action:r.isRequired,location:i.isRequired,push:o.PropTypes.func.isRequired,replace:o.PropTypes.func.isRequired,go:o.PropTypes.func.isRequired,goBack:o.PropTypes.func.isRequired,goForward:o.PropTypes.func.isRequired,canGo:o.PropTypes.func,block:o.PropTypes.func.isRequired})},function(t,n,e){"use strict";var o=function(){};t.exports=o},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}n.__esModule=!0,n.locationsAreEqual=n.createLocation=void 0;var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol?"symbol":typeof t},i=Object.assign||function(t){for(var n=1;n<arguments.length;n++){var e=arguments[n];for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])}return t},a=e(18),u=o(a),c=e(5),s=(n.createLocation=function(t,n,e,o){var r=void 0;return"string"==typeof t?(r=(0,c.parsePath)(t),r.state=n):(r=i({},t),void 0===r.pathname&&(r.pathname=""),r.search?"?"!==r.search.charAt(0)&&(r.search="?"+r.search):r.search="",r.hash?"#"!==r.hash.charAt(0)&&(r.hash="#"+r.hash):r.hash="",void 0!==n&&void 0===r.state&&(r.state=n)),r.key=e,o&&(r.pathname?"/"!==r.pathname.charAt(0)&&(r.pathname=(0,u["default"])(r.pathname,o.pathname)):r.pathname=o.pathname),r},function f(t,n){if(null==t)return t==n;var e="undefined"==typeof t?"undefined":r(t),o="undefined"==typeof n?"undefined":r(n);if(e!==o)return!1;if(Array.isArray(t))return!(!Array.isArray(n)||t.length!==n.length)&&t.every(function(t,e){return f(t,n[e])});if("object"===e){var i=Object.keys(t),a=Object.keys(n);return i.length===a.length&&i.every(function(e){return f(t[e],n[e])})}return t===n});n.locationsAreEqual=function(t,n){return t.pathname===n.pathname&&t.search===n.search&&t.hash===n.hash&&t.key===n.key&&s(t.state,n.state)}},function(t,n){"use strict";n.__esModule=!0;n.addLeadingSlash=function(t){return"/"===t.charAt(0)?t:"/"+t},n.stripLeadingSlash=function(t){return"/"===t.charAt(0)?t.substr(1):t},n.stripPrefix=function(t,n){return 0===t.indexOf(n)?t.substr(n.length):t},n.parsePath=function(t){var n=t||"/",e="",o="",r=n.indexOf("#");r!==-1&&(o=n.substr(r),n=n.substr(0,r));var i=n.indexOf("?");return i!==-1&&(e=n.substr(i),n=n.substr(0,i)),{pathname:n,search:"?"===e?"":e,hash:"#"===o?"":o}},n.createPath=function(t){var n=t.pathname,e=t.search,o=t.hash,r=n||"/";return e&&"?"!==e&&(r+="?"===e.charAt(0)?e:"?"+e),o&&"#"!==o&&(r+="#"===o.charAt(0)?o:"#"+o),r}},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}n.__esModule=!0;var r=e(3),i=(o(r),function(){var t=null,n=function(n){return t=n,function(){t===n&&(t=null)}},e=function(n,e,o,r){if(null!=t){var i="function"==typeof t?t(n,e):t;"string"==typeof i?"function"==typeof o?o(i,r):r(!0):r(i!==!1)}else r(!0)},o=[],r=function(t){return o.push(t),function(){o=o.filter(function(n){return n!==t})}},i=function(){for(var t=arguments.length,n=Array(t),e=0;e<t;e++)n[e]=arguments[e];return o.forEach(function(t){return t.apply(void 0,n)})};return{setPrompt:n,confirmTransitionTo:e,appendListener:r,notifyListeners:i}});n["default"]=i},function(t,n){"use strict";n.__esModule=!0;n.addEventListener=function(t,n,e){return t.addEventListener?t.addEventListener(n,e,!1):t.attachEvent("on"+n,e)},n.removeEventListener=function(t,n,e){return t.removeEventListener?t.removeEventListener(n,e,!1):t.detachEvent("on"+n,e)},n.getConfirmation=function(t,n){return n(window.confirm(t))},n.supportsHistory=function(){var t=window.navigator.userAgent;return(t.indexOf("Android 2.")===-1&&t.indexOf("Android 4.0")===-1||t.indexOf("Mobile Safari")===-1||t.indexOf("Chrome")!==-1||t.indexOf("Windows Phone")!==-1)&&(window.history&&"pushState"in window.history)},n.supportsPopStateOnHashChange=function(){return window.navigator.userAgent.indexOf("Trident")===-1},n.supportsGoWithoutReloadUsingHash=function(){return window.navigator.userAgent.indexOf("Firefox")===-1}},function(t,n){"use strict";n.__esModule=!0;n.canUseDOM=!("undefined"==typeof window||!window.document||!window.document.createElement)},function(t,n,e){"use strict";var o=function(t,n,e,o,r,i,a,u){if(!t){var c;if(void 0===n)c=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var s=[e,o,r,i,a,u],f=0;c=new Error(n.replace(/%s/g,function(){return s[f++]})),c.name="Invariant Violation"}throw c.framesToPop=1,c}};t.exports=o},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function i(t,n){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!n||"object"!=typeof n&&"function"!=typeof n?t:n}function a(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function, not "+typeof n);t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),n&&(Object.setPrototypeOf?Object.setPrototypeOf(t,n):t.__proto__=n)}n.__esModule=!0,n.Forward=n.Back=n.Pop=n.Replace=n.Push=void 0;var u=e(1),c=o(u),s=e(2),f=function(t){function n(){return r(this,n),i(this,t.apply(this,arguments))}return a(n,t),n.prototype.performAction=function(){this.props.perform(this.context.history)},n.prototype.componentDidMount=function(){this.performAction()},n.prototype.componentDidUpdate=function(){this.performAction()},n.prototype.render=function(){return null},n}(c["default"].Component);f.contextTypes={history:s.history.isRequired};var l=(n.Push=function(t){var n=t.location,e=t.path,o=t.state;return c["default"].createElement(f,{perform:function(t){return t.push(n||e,o)}})},n.Replace=function(t){var n=t.location,e=t.path,o=t.state;return c["default"].createElement(f,{perform:function(t){return t.replace(n||e,o)}})},n.Pop=function(t){var n=t.go;return c["default"].createElement(f,{perform:function(t){return t.go(n)}})});l.defaultProps={go:-1};n.Back=function(){return c["default"].createElement(f,{perform:function(t){return t.goBack()}})},n.Forward=function(){return c["default"].createElement(f,{perform:function(t){return t.goForward()}})}},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function i(t,n){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!n||"object"!=typeof n&&"function"!=typeof n?t:n}function a(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function, not "+typeof n);t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),n&&(Object.setPrototypeOf?Object.setPrototypeOf(t,n):t.__proto__=n)}n.__esModule=!0;var u=e(1),c=o(u),s=e(15),f=o(s),l=e(2),p=function(t){function n(){return r(this,n),i(this,t.apply(this,arguments))}return a(n,t),n.prototype.getChildContext=function(){return{history:this.history}},n.prototype.componentWillMount=function(){var t=this,n=this.props,e=n.basename,o=n.forceRefresh,r=n.getUserConfirmation,i=n.keyLength;this.history=(0,f["default"])({basename:e,forceRefresh:o,getUserConfirmation:r,keyLength:i}),this.unlisten=this.history.listen(function(){return t.forceUpdate()})},n.prototype.componentWillUnmount=function(){this.unlisten()},n.prototype.render=function(){var t=this.props.children;return"function"!=typeof t?c["default"].Children.only(t):t({action:this.history.action,location:this.history.location,history:this.history})},n}(c["default"].Component);p.childContextTypes={history:l.history.isRequired},n["default"]=p},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function i(t,n){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!n||"object"!=typeof n&&"function"!=typeof n?t:n}function a(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function, not "+typeof n);t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),n&&(Object.setPrototypeOf?Object.setPrototypeOf(t,n):t.__proto__=n)}n.__esModule=!0;var u=e(1),c=o(u),s=e(16),f=o(s),l=e(2),p=function(t){function n(){return r(this,n),i(this,t.apply(this,arguments))}return a(n,t),n.prototype.getChildContext=function(){return{history:this.history}},n.prototype.componentWillMount=function(){var t=this,n=this.props,e=n.basename,o=n.getUserConfirmation,r=n.hashType;this.history=(0,f["default"])({basename:e,getUserConfirmation:o,hashType:r}),this.unlisten=this.history.listen(function(){return t.forceUpdate()})},n.prototype.componentWillUnmount=function(){this.unlisten()},n.prototype.render=function(){var t=this.props.children;return"function"!=typeof t?c["default"].Children.only(t):t({action:this.history.action,location:this.history.location,history:this.history})},n}(c["default"].Component);p.childContextTypes={history:l.history.isRequired},n["default"]=p},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function i(t,n){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!n||"object"!=typeof n&&"function"!=typeof n?t:n}function a(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function, not "+typeof n);t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),n&&(Object.setPrototypeOf?Object.setPrototypeOf(t,n):t.__proto__=n)}n.__esModule=!0;var u=e(1),c=o(u),s=e(17),f=o(s),l=e(2),p=function(t){function n(){return r(this,n),i(this,t.apply(this,arguments))}return a(n,t),n.prototype.getChildContext=function(){return{history:this.history}},n.prototype.componentWillMount=function(){var t=this,n=this.props,e=n.getUserConfirmation,o=n.initialEntries,r=n.initialIndex,i=n.keyLength;this.history=(0,f["default"])({getUserConfirmation:e,initialEntries:o,initialIndex:r,keyLength:i}),this.unlisten=this.history.listen(function(){return t.forceUpdate()})},n.prototype.componentWillUnmount=function(){this.unlisten()},n.prototype.render=function(){var t=this.props.children;return"function"!=typeof t?c["default"].Children.only(t):t({action:this.history.action,location:this.history.location,history:this.history})},n}(c["default"].Component);p.childContextTypes={history:l.history.isRequired},n["default"]=p},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}function r(t,n){if(!(t instanceof n))throw new TypeError("Cannot call a class as a function")}function i(t,n){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!n||"object"!=typeof n&&"function"!=typeof n?t:n}function a(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Super expression must either be null or a function, not "+typeof n);t.prototype=Object.create(n&&n.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),n&&(Object.setPrototypeOf?Object.setPrototypeOf(t,n):t.__proto__=n)}n.__esModule=!0;var u=e(1),c=o(u),s=e(2),f=function(t){function n(){return r(this,n),i(this,t.apply(this,arguments))}return a(n,t),n.prototype.block=function(){this.teardownPrompt||(this.teardownPrompt=this.context.history.block(this.props.message))},n.prototype.unblock=function(){this.teardownPrompt&&(this.teardownPrompt(),this.teardownPrompt=null)},n.prototype.componentWillMount=function(){this.props.when&&this.block()},n.prototype.componentWillReceiveProps=function(t){t.when?this.block():this.unblock()},n.prototype.componentWillUnmount=function(){this.unblock()},n.prototype.render=function(){return null},n}(c["default"].Component);f.contextTypes={history:s.history.isRequired},f.defaultProps={when:!0},n["default"]=f},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}n.__esModule=!0;var r=("function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol?"symbol":typeof t},Object.assign||function(t){for(var n=1;n<arguments.length;n++){var e=arguments[n];for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])}return t}),i=e(3),a=(o(i),e(9)),u=o(a),c=e(4),s=e(5),f=e(6),l=o(f),p=e(8),h=e(7),d="popstate",y="hashchange",v=function(){try{return window.history.state||{}}catch(t){return{}}},m=function(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];p.canUseDOM?void 0:(0,u["default"])(!1);var n=window.history,e=(0,h.supportsHistory)(),o=!(0,h.supportsPopStateOnHashChange)(),i=t.basename,a=void 0===i?"":i,f=t.forceRefresh,m=void 0!==f&&f,g=t.getUserConfirmation,w=void 0===g?h.getConfirmation:g,b=t.keyLength,P=void 0===b?6:b,O=function(t){var n=t||{},e=n.key,o=n.state,i=window.location,u=i.pathname,c=i.search,f=i.hash,l=u+c+f;return a&&(l=(0,s.stripPrefix)(l,a)),r({},(0,s.parsePath)(l),{state:o,key:e})},_=function(){return Math.random().toString(36).substr(2,P)},x=(0,l["default"])(),T=function(t){r(G,t),G.length=n.length,x.notifyListeners(G.location,G.action)},E=function(t){void 0!==t.state&&M(O(t.state))},L=function(){M(O(v()))},k=!1,M=function(t){k?(k=!1,T()):!function(){var n="POP";x.confirmTransitionTo(t,n,w,function(e){e?T({action:n,location:t}):C(t)})}()},C=function(t){var n=G.location,e=R.indexOf(n.key);e===-1&&(e=0);var o=R.indexOf(t.key);o===-1&&(o=0);var r=e-o;r&&(k=!0,U(r))},j=O(v()),R=[j.key],S=function(t,o){var r="PUSH",i=(0,c.createLocation)(t,o,_(),G.location);x.confirmTransitionTo(i,r,w,function(t){if(t){var o=a+(0,s.createPath)(i),u=i.key,c=i.state;if(e)if(n.pushState({key:u,state:c},null,o),m)window.location.href=o;else{var f=R.indexOf(G.location.key),l=R.slice(0,f===-1?0:f+1);l.push(i.key),R=l,T({action:r,location:i})}else window.location.href=o}})},A=function(t,o){var r="REPLACE",i=(0,c.createLocation)(t,o,_(),G.location);x.confirmTransitionTo(i,r,w,function(t){if(t){var o=a+(0,s.createPath)(i),u=i.key,c=i.state;if(e)if(n.replaceState({key:u,state:c},null,o),m)window.location.replace(o);else{var f=R.indexOf(G.location.key);f!==-1&&(R[f]=i.key),T({action:r,location:i})}else window.location.replace(o)}})},U=function(t){n.go(t)},q=function(){return U(-1)},H=function(){return U(1)},W=0,B=function(t){W+=t,1===W?((0,h.addEventListener)(window,d,E),o&&(0,h.addEventListener)(window,y,L)):0===W&&((0,h.removeEventListener)(window,d,E),o&&(0,h.removeEventListener)(window,y,L))},F=!1,I=function(){var t=!(arguments.length<=0||void 0===arguments[0])&&arguments[0],n=x.setPrompt(t);return F||(B(1),F=!0),function(){return F&&(F=!1,B(-1)),n()}},D=function(t){var n=x.appendListener(t);return B(1),function(){return B(-1),n()}},G={length:n.length,action:"POP",location:j,push:S,replace:A,go:U,goBack:q,goForward:H,block:I,listen:D};return G};n["default"]=m},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}n.__esModule=!0;var r=Object.assign||function(t){for(var n=1;n<arguments.length;n++){var e=arguments[n];for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])}return t},i=e(3),a=(o(i),e(9)),u=o(a),c=e(4),s=e(5),f=e(6),l=o(f),p=e(8),h=e(7),d="hashchange",y={hashbang:{encodePath:function(t){return"!"===t.charAt(0)?t:"!/"+(0,s.stripLeadingSlash)(t)},decodePath:function(t){return"!"===t.charAt(0)?t.substr(1):t}},noslash:{encodePath:s.stripLeadingSlash,decodePath:s.addLeadingSlash},slash:{encodePath:s.addLeadingSlash,decodePath:s.addLeadingSlash}},v=function(){var t=window.location.href,n=t.indexOf("#");return n===-1?"":t.substring(n+1)},m=function(t){return window.location.hash=t},g=function(t){var n=window.location.href.indexOf("#");window.location.replace(window.location.href.slice(0,n>=0?n:0)+"#"+t)},w=function(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];p.canUseDOM?void 0:(0,u["default"])(!1);var n=window.history,e=((0,h.supportsGoWithoutReloadUsingHash)(),t.basename),o=void 0===e?"":e,i=t.getUserConfirmation,a=void 0===i?h.getConfirmation:i,f=t.hashType,w=void 0===f?"slash":f,b=y[w],P=b.encodePath,O=b.decodePath,_=function(){var t=O(v());return o&&(t=(0,s.stripPrefix)(t,o)),(0,s.parsePath)(t)},x=(0,l["default"])(),T=function(t){r(z,t),z.length=n.length,x.notifyListeners(z.location,z.action)},E=!1,L=null,k=function(){var t=v(),n=P(t);if(t!==n)g(n);else{var e=_(),o=z.location;if(!E&&(0,c.locationsAreEqual)(o,e))return;if(L===(0,s.createPath)(e))return;L=null,M(e)}},M=function(t){E?(E=!1,T()):!function(){var n="POP";x.confirmTransitionTo(t,n,a,function(e){e?T({action:n,location:t}):C(t)})}()},C=function(t){var n=z.location,e=A.lastIndexOf((0,s.createPath)(n));e===-1&&(e=0);var o=A.lastIndexOf((0,s.createPath)(t));o===-1&&(o=0);var r=e-o;r&&(E=!0,H(r))},j=v(),R=P(j);j!==R&&g(R);var S=_(),A=[(0,s.createPath)(S)],U=function(t,n){var e="PUSH",r=(0,c.createLocation)(t,void 0,void 0,z.location);x.confirmTransitionTo(r,e,a,function(t){if(t){var n=(0,s.createPath)(r),i=P(o+n),a=v()!==i;if(a){L=n,m(i);var u=A.lastIndexOf((0,s.createPath)(z.location)),c=A.slice(0,u===-1?0:u+1);c.push(n),A=c,T({action:e,location:r})}else T()}})},q=function(t,n){var e="REPLACE",r=(0,c.createLocation)(t,void 0,void 0,z.location);x.confirmTransitionTo(r,e,a,function(t){if(t){var n=(0,s.createPath)(r),i=P(o+n),a=v()!==i;a&&(L=n,g(i));var u=A.indexOf((0,s.createPath)(z.location));u!==-1&&(A[u]=n),T({action:e,location:r})}})},H=function(t){n.go(t)},W=function(){return H(-1)},B=function(){return H(1)},F=0,I=function(t){F+=t,1===F?(0,h.addEventListener)(window,d,k):0===F&&(0,h.removeEventListener)(window,d,k)},D=!1,G=function(){var t=!(arguments.length<=0||void 0===arguments[0])&&arguments[0],n=x.setPrompt(t);return D||(I(1),D=!0),function(){return D&&(D=!1,I(-1)),n()}},V=function(t){var n=x.appendListener(t);return I(1),function(){return I(-1),n()}},z={length:n.length,action:"POP",location:S,push:U,replace:q,go:H,goBack:W,goForward:B,block:G,listen:V};return z};n["default"]=w},function(t,n,e){"use strict";function o(t){return t&&t.__esModule?t:{"default":t}}n.__esModule=!0;var r=("function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol?"symbol":typeof t},Object.assign||function(t){for(var n=1;n<arguments.length;n++){var e=arguments[n];for(var o in e)Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o])}return t}),i=e(3),a=(o(i),e(4)),u=e(6),c=o(u),s=function(t,n,e){return Math.min(Math.max(t,n),e)},f=function(){var t=arguments.length<=0||void 0===arguments[0]?{}:arguments[0],n=t.getUserConfirmation,e=t.initialEntries,o=void 0===e?["/"]:e,i=t.initialIndex,u=void 0===i?0:i,f=t.keyLength,l=void 0===f?6:f,p=(0,c["default"])(),h=function(t){r(T,t),T.length=T.entries.length,p.notifyListeners(T.location,T.action)},d=function(){return Math.random().toString(36).substr(2,l)},y=s(u,0,o.length-1),v=o.map(function(t,n){return"string"==typeof t?(0,a.createLocation)(t,void 0,n?d():void 0):(0,a.createLocation)(t,void 0,n?t.key||d():void 0)}),m=function(t,e){var o="PUSH",r=(0,a.createLocation)(t,e,d(),T.location);p.confirmTransitionTo(r,o,n,function(t){if(t){var n=T.index,e=n+1,i=T.entries.slice(0);i.length>e?i.splice(e,i.length-e,r):i.push(r),h({action:o,location:r,index:e,entries:i})}})},g=function(t,e){var o="REPLACE",r=(0,a.createLocation)(t,e,d(),T.location);p.confirmTransitionTo(r,o,n,function(t){t&&(T.entries[T.index]=r,h({action:o,location:r}))})},w=function(t){var e=s(T.index+t,0,T.entries.length-1),o="POP",r=T.entries[e];p.confirmTransitionTo(r,o,n,function(t){t?h({action:o,location:r,index:e}):h()})},b=function(){return w(-1)},P=function(){return w(1)},O=function(t){var n=T.index+t;return n>=0&&n<T.entries.length},_=function(){var t=!(arguments.length<=0||void 0===arguments[0])&&arguments[0];return p.setPrompt(t)},x=function(t){return p.appendListener(t)},T={length:v.length,action:"POP",location:v[y],index:y,entries:v,push:m,replace:g,go:w,goBack:b,goForward:P,canGo:O,block:_,listen:x};return T};n["default"]=f},function(t,n,e){!function(n,e){t.exports=e()}(this,function(){return function(t){function n(o){if(e[o])return e[o].exports;var r=e[o]={exports:{},id:o,loaded:!1};return t[o].call(r.exports,r,r.exports,n),r.loaded=!0,r.exports}var e={};return n.m=t,n.c=e,n.p="",n(0)}([function(t,n){"use strict";var e=function(t){return"/"===t.charAt(0)},o=function(t,n){for(var e=n,o=e+1,r=t.length;r>o;e+=1,o+=1)t[e]=t[o];t.pop()},r=function(t){var n=arguments.length<=1||void 0===arguments[1]?"":arguments[1],r=t&&t.split("/")||[],i=n&&n.split("/")||[],a=t&&e(t),u=n&&e(n),c=a||u;if(t&&e(t)?i=r:r.length&&(i.pop(),i=i.concat(r)),!i.length)return"/";var s=void 0;if(i.length){var f=i[i.length-1];s="."===f||".."===f||""===f}else s=!1;for(var l=0,p=i.length;p>=0;p--){var h=i[p];"."===h?o(i,p):".."===h?(o(i,p),l++):l&&(o(i,p),l--)}if(!c)for(;l--;l)i.unshift("..");!c||""===i[0]||i[0]&&e(i[0])||i.unshift("");var d=i.join("/");return s&&"/"!==d.substr(-1)&&(d+="/"),d};t.exports=r}])})}])}); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
1730
0
112105
12