Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

77
node_modules/react-router-redux/ConnectedRouter.js generated vendored Normal file
View File

@@ -0,0 +1,77 @@
'use strict';
exports.__esModule = true;
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _propTypes = require('prop-types');
var _propTypes2 = _interopRequireDefault(_propTypes);
var _reactRouter = require('react-router');
var _reducer = require('./reducer');
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 ConnectedRouter = function (_Component) {
_inherits(ConnectedRouter, _Component);
function ConnectedRouter() {
var _temp, _this, _ret;
_classCallCheck(this, ConnectedRouter);
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return _ret = (_temp = (_this = _possibleConstructorReturn(this, _Component.call.apply(_Component, [this].concat(args))), _this), _this.handleLocationChange = function (location) {
_this.store.dispatch({
type: _reducer.LOCATION_CHANGE,
payload: location
});
}, _temp), _possibleConstructorReturn(_this, _ret);
}
ConnectedRouter.prototype.componentWillMount = function componentWillMount() {
var _props = this.props,
propsStore = _props.store,
history = _props.history,
isSSR = _props.isSSR;
this.store = propsStore || this.context.store;
this.handleLocationChange(history.location);
if (!isSSR) this.unsubscribeFromHistory = history.listen(this.handleLocationChange);
};
ConnectedRouter.prototype.componentWillUnmount = function componentWillUnmount() {
if (this.unsubscribeFromHistory) this.unsubscribeFromHistory();
};
ConnectedRouter.prototype.render = function render() {
return _react2.default.createElement(_reactRouter.Router, this.props);
};
return ConnectedRouter;
}(_react.Component);
ConnectedRouter.propTypes = {
store: _propTypes2.default.object,
history: _propTypes2.default.object.isRequired,
children: _propTypes2.default.node,
isSSR: _propTypes2.default.bool
};
ConnectedRouter.contextTypes = {
store: _propTypes2.default.object
};
exports.default = ConnectedRouter;

36
node_modules/react-router-redux/actions.js generated vendored Normal file
View File

@@ -0,0 +1,36 @@
'use strict';
exports.__esModule = true;
/**
* This action type will be dispatched by the history actions below.
* If you're writing a middleware to watch for navigation events, be sure to
* look for actions of this type.
*/
var CALL_HISTORY_METHOD = exports.CALL_HISTORY_METHOD = '@@router/CALL_HISTORY_METHOD';
function updateLocation(method) {
return function () {
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return {
type: CALL_HISTORY_METHOD,
payload: { method: method, args: args }
};
};
}
/**
* These actions correspond to the history API.
* The associated routerMiddleware will capture these events before they get to
* your reducer and reissue them as the matching function on your history.
*/
var push = exports.push = updateLocation('push');
var replace = exports.replace = updateLocation('replace');
var go = exports.go = updateLocation('go');
var goBack = exports.goBack = updateLocation('goBack');
var goForward = exports.goForward = updateLocation('goForward');
var routerActions = exports.routerActions = { push: push, replace: replace, go: go, goBack: goBack, goForward: goForward };

67
node_modules/react-router-redux/es/ConnectedRouter.js generated vendored Normal file
View File

@@ -0,0 +1,67 @@
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; }
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { Router } from 'react-router';
import { LOCATION_CHANGE } from './reducer';
var ConnectedRouter = function (_Component) {
_inherits(ConnectedRouter, _Component);
function ConnectedRouter() {
var _temp, _this, _ret;
_classCallCheck(this, ConnectedRouter);
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return _ret = (_temp = (_this = _possibleConstructorReturn(this, _Component.call.apply(_Component, [this].concat(args))), _this), _this.handleLocationChange = function (location) {
_this.store.dispatch({
type: LOCATION_CHANGE,
payload: location
});
}, _temp), _possibleConstructorReturn(_this, _ret);
}
ConnectedRouter.prototype.componentWillMount = function componentWillMount() {
var _props = this.props,
propsStore = _props.store,
history = _props.history,
isSSR = _props.isSSR;
this.store = propsStore || this.context.store;
this.handleLocationChange(history.location);
if (!isSSR) this.unsubscribeFromHistory = history.listen(this.handleLocationChange);
};
ConnectedRouter.prototype.componentWillUnmount = function componentWillUnmount() {
if (this.unsubscribeFromHistory) this.unsubscribeFromHistory();
};
ConnectedRouter.prototype.render = function render() {
return React.createElement(Router, this.props);
};
return ConnectedRouter;
}(Component);
ConnectedRouter.propTypes = {
store: PropTypes.object,
history: PropTypes.object.isRequired,
children: PropTypes.node,
isSSR: PropTypes.bool
};
ConnectedRouter.contextTypes = {
store: PropTypes.object
};
export default ConnectedRouter;

33
node_modules/react-router-redux/es/actions.js generated vendored Normal file
View File

@@ -0,0 +1,33 @@
/**
* This action type will be dispatched by the history actions below.
* If you're writing a middleware to watch for navigation events, be sure to
* look for actions of this type.
*/
export var CALL_HISTORY_METHOD = '@@router/CALL_HISTORY_METHOD';
function updateLocation(method) {
return function () {
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return {
type: CALL_HISTORY_METHOD,
payload: { method: method, args: args }
};
};
}
/**
* These actions correspond to the history API.
* The associated routerMiddleware will capture these events before they get to
* your reducer and reissue them as the matching function on your history.
*/
export var push = updateLocation('push');
export var replace = updateLocation('replace');
export var go = updateLocation('go');
export var goBack = updateLocation('goBack');
export var goForward = updateLocation('goForward');
export var routerActions = { push: push, replace: replace, go: go, goBack: goBack, goForward: goForward };

8
node_modules/react-router-redux/es/index.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
import _ConnectedRouter from './ConnectedRouter';
export { _ConnectedRouter as ConnectedRouter };
export { getLocation, createMatchSelector } from './selectors';
export { LOCATION_CHANGE, routerReducer } from './reducer';
export { CALL_HISTORY_METHOD, push, replace, go, goBack, goForward, routerActions } from './actions';
import _routerMiddleware from './middleware';
export { _routerMiddleware as routerMiddleware };

24
node_modules/react-router-redux/es/middleware.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
import { CALL_HISTORY_METHOD } from './actions';
/**
* This middleware captures CALL_HISTORY_METHOD actions to redirect to the
* provided history object. This will prevent these actions from reaching your
* reducer or any middleware that comes after this one.
*/
export default function routerMiddleware(history) {
return function () {
return function (next) {
return function (action) {
if (action.type !== CALL_HISTORY_METHOD) {
return next(action);
}
var _action$payload = action.payload,
method = _action$payload.method,
args = _action$payload.args;
history[method].apply(history, args);
};
};
};
}

30
node_modules/react-router-redux/es/reducer.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
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; };
/**
* This action type will be dispatched when your history
* receives a location change.
*/
export var LOCATION_CHANGE = '@@router/LOCATION_CHANGE';
var initialState = {
location: null
/**
* This reducer will update the state with the most recent location history
* has transitioned to. This may not be in sync with the router, particularly
* if you have asynchronously-loaded routes, so reading from and relying on
* this state is discouraged.
*/
};export function routerReducer() {
var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState;
var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
type = _ref.type,
payload = _ref.payload;
if (type === LOCATION_CHANGE) {
return _extends({}, state, { location: payload });
}
return state;
}

24
node_modules/react-router-redux/es/selectors.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
import { matchPath } from 'react-router';
export var getLocation = function getLocation(state) {
return state.router.location;
};
export var createMatchSelector = function createMatchSelector(path) {
var lastPathname = null;
var lastMatch = null;
return function (state) {
var _ref = getLocation(state) || {},
pathname = _ref.pathname;
if (pathname === lastPathname) {
return lastMatch;
}
lastPathname = pathname;
var match = matchPath(pathname, path);
if (!match || !lastMatch || match.url !== lastMatch.url) {
lastMatch = match;
}
return lastMatch;
};
};

92
node_modules/react-router-redux/index.js generated vendored Normal file
View File

@@ -0,0 +1,92 @@
'use strict';
exports.__esModule = true;
exports.routerMiddleware = exports.routerActions = exports.goForward = exports.goBack = exports.go = exports.replace = exports.push = exports.CALL_HISTORY_METHOD = exports.routerReducer = exports.LOCATION_CHANGE = exports.createMatchSelector = exports.getLocation = exports.ConnectedRouter = undefined;
var _selectors = require('./selectors');
Object.defineProperty(exports, 'getLocation', {
enumerable: true,
get: function get() {
return _selectors.getLocation;
}
});
Object.defineProperty(exports, 'createMatchSelector', {
enumerable: true,
get: function get() {
return _selectors.createMatchSelector;
}
});
var _reducer = require('./reducer');
Object.defineProperty(exports, 'LOCATION_CHANGE', {
enumerable: true,
get: function get() {
return _reducer.LOCATION_CHANGE;
}
});
Object.defineProperty(exports, 'routerReducer', {
enumerable: true,
get: function get() {
return _reducer.routerReducer;
}
});
var _actions = require('./actions');
Object.defineProperty(exports, 'CALL_HISTORY_METHOD', {
enumerable: true,
get: function get() {
return _actions.CALL_HISTORY_METHOD;
}
});
Object.defineProperty(exports, 'push', {
enumerable: true,
get: function get() {
return _actions.push;
}
});
Object.defineProperty(exports, 'replace', {
enumerable: true,
get: function get() {
return _actions.replace;
}
});
Object.defineProperty(exports, 'go', {
enumerable: true,
get: function get() {
return _actions.go;
}
});
Object.defineProperty(exports, 'goBack', {
enumerable: true,
get: function get() {
return _actions.goBack;
}
});
Object.defineProperty(exports, 'goForward', {
enumerable: true,
get: function get() {
return _actions.goForward;
}
});
Object.defineProperty(exports, 'routerActions', {
enumerable: true,
get: function get() {
return _actions.routerActions;
}
});
var _ConnectedRouter2 = require('./ConnectedRouter');
var _ConnectedRouter3 = _interopRequireDefault(_ConnectedRouter2);
var _middleware = require('./middleware');
var _middleware2 = _interopRequireDefault(_middleware);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.ConnectedRouter = _ConnectedRouter3.default;
exports.routerMiddleware = _middleware2.default;

29
node_modules/react-router-redux/middleware.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
'use strict';
exports.__esModule = true;
exports.default = routerMiddleware;
var _actions = require('./actions');
/**
* This middleware captures CALL_HISTORY_METHOD actions to redirect to the
* provided history object. This will prevent these actions from reaching your
* reducer or any middleware that comes after this one.
*/
function routerMiddleware(history) {
return function () {
return function (next) {
return function (action) {
if (action.type !== _actions.CALL_HISTORY_METHOD) {
return next(action);
}
var _action$payload = action.payload,
method = _action$payload.method,
args = _action$payload.args;
history[method].apply(history, args);
};
};
};
}

54
node_modules/react-router-redux/package.json generated vendored Normal file
View File

@@ -0,0 +1,54 @@
{
"name": "react-router-redux",
"version": "5.0.0-alpha.9",
"description": "Redux bindings for React Router",
"repository": "ReactTraining/react-router",
"license": "MIT",
"authors": [
"Tim Dorr"
],
"files": [
"ConnectedRouter.js",
"actions.js",
"es",
"index.js",
"selectors.js",
"middleware.js",
"reducer.js",
"umd"
],
"main": "index.js",
"module": "es/index.js",
"peerDependencies": {
"react": ">=15"
},
"dependencies": {
"history": "^4.7.2",
"prop-types": "^15.6.0",
"react-router": "^4.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.21.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.4.0",
"gzip-size": "^4.0.0",
"jest": "^21.2.1",
"pretty-bytes": "^4.0.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-test-renderer": "^16.1.0",
"redux": "^3.6.0",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-uglify": "^2.0.1"
}
}

35
node_modules/react-router-redux/reducer.js generated vendored Normal file
View File

@@ -0,0 +1,35 @@
'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; };
exports.routerReducer = routerReducer;
/**
* This action type will be dispatched when your history
* receives a location change.
*/
var LOCATION_CHANGE = exports.LOCATION_CHANGE = '@@router/LOCATION_CHANGE';
var initialState = {
location: null
/**
* This reducer will update the state with the most recent location history
* has transitioned to. This may not be in sync with the router, particularly
* if you have asynchronously-loaded routes, so reading from and relying on
* this state is discouraged.
*/
};function routerReducer() {
var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState;
var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
type = _ref.type,
payload = _ref.payload;
if (type === LOCATION_CHANGE) {
return _extends({}, state, { location: payload });
}
return state;
}

29
node_modules/react-router-redux/selectors.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
'use strict';
exports.__esModule = true;
exports.createMatchSelector = exports.getLocation = undefined;
var _reactRouter = require('react-router');
var getLocation = exports.getLocation = function getLocation(state) {
return state.router.location;
};
var createMatchSelector = exports.createMatchSelector = function createMatchSelector(path) {
var lastPathname = null;
var lastMatch = null;
return function (state) {
var _ref = getLocation(state) || {},
pathname = _ref.pathname;
if (pathname === lastPathname) {
return lastMatch;
}
lastPathname = pathname;
var match = (0, _reactRouter.matchPath)(pathname, path);
if (!match || !lastMatch || match.url !== lastMatch.url) {
lastMatch = match;
}
return lastMatch;
};
};

View File

@@ -0,0 +1,195 @@
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('react'), require('prop-types'), require('react-router')) :
typeof define === 'function' && define.amd ? define(['exports', 'react', 'prop-types', 'react-router'], factory) :
(factory((global.ReactRouterRedux = {}),global.React,global.PropTypes,global.ReactRouter));
}(this, (function (exports,React,PropTypes,reactRouter) { 'use strict';
var React__default = 'default' in React ? React['default'] : React;
PropTypes = PropTypes && PropTypes.hasOwnProperty('default') ? PropTypes['default'] : PropTypes;
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; };
/**
* This action type will be dispatched when your history
* receives a location change.
*/
var LOCATION_CHANGE = '@@router/LOCATION_CHANGE';
var initialState = {
location: null
/**
* This reducer will update the state with the most recent location history
* has transitioned to. This may not be in sync with the router, particularly
* if you have asynchronously-loaded routes, so reading from and relying on
* this state is discouraged.
*/
};function routerReducer() {
var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : initialState;
var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
type = _ref.type,
payload = _ref.payload;
if (type === LOCATION_CHANGE) {
return _extends({}, state, { location: payload });
}
return state;
}
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 ConnectedRouter = function (_Component) {
_inherits(ConnectedRouter, _Component);
function ConnectedRouter() {
var _temp, _this, _ret;
_classCallCheck(this, ConnectedRouter);
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return _ret = (_temp = (_this = _possibleConstructorReturn(this, _Component.call.apply(_Component, [this].concat(args))), _this), _this.handleLocationChange = function (location) {
_this.store.dispatch({
type: LOCATION_CHANGE,
payload: location
});
}, _temp), _possibleConstructorReturn(_this, _ret);
}
ConnectedRouter.prototype.componentWillMount = function componentWillMount() {
var _props = this.props,
propsStore = _props.store,
history = _props.history,
isSSR = _props.isSSR;
this.store = propsStore || this.context.store;
this.handleLocationChange(history.location);
if (!isSSR) this.unsubscribeFromHistory = history.listen(this.handleLocationChange);
};
ConnectedRouter.prototype.componentWillUnmount = function componentWillUnmount() {
if (this.unsubscribeFromHistory) this.unsubscribeFromHistory();
};
ConnectedRouter.prototype.render = function render() {
return React__default.createElement(reactRouter.Router, this.props);
};
return ConnectedRouter;
}(React.Component);
ConnectedRouter.propTypes = {
store: PropTypes.object,
history: PropTypes.object.isRequired,
children: PropTypes.node,
isSSR: PropTypes.bool
};
ConnectedRouter.contextTypes = {
store: PropTypes.object
};
var getLocation = function getLocation(state) {
return state.router.location;
};
var createMatchSelector = function createMatchSelector(path) {
var lastPathname = null;
var lastMatch = null;
return function (state) {
var _ref = getLocation(state) || {},
pathname = _ref.pathname;
if (pathname === lastPathname) {
return lastMatch;
}
lastPathname = pathname;
var match = reactRouter.matchPath(pathname, path);
if (!match || !lastMatch || match.url !== lastMatch.url) {
lastMatch = match;
}
return lastMatch;
};
};
/**
* This action type will be dispatched by the history actions below.
* If you're writing a middleware to watch for navigation events, be sure to
* look for actions of this type.
*/
var CALL_HISTORY_METHOD = '@@router/CALL_HISTORY_METHOD';
function updateLocation(method) {
return function () {
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return {
type: CALL_HISTORY_METHOD,
payload: { method: method, args: args }
};
};
}
/**
* These actions correspond to the history API.
* The associated routerMiddleware will capture these events before they get to
* your reducer and reissue them as the matching function on your history.
*/
var push = updateLocation('push');
var replace = updateLocation('replace');
var go = updateLocation('go');
var goBack = updateLocation('goBack');
var goForward = updateLocation('goForward');
var routerActions = { push: push, replace: replace, go: go, goBack: goBack, goForward: goForward };
/**
* This middleware captures CALL_HISTORY_METHOD actions to redirect to the
* provided history object. This will prevent these actions from reaching your
* reducer or any middleware that comes after this one.
*/
function routerMiddleware(history) {
return function () {
return function (next) {
return function (action) {
if (action.type !== CALL_HISTORY_METHOD) {
return next(action);
}
var _action$payload = action.payload,
method = _action$payload.method,
args = _action$payload.args;
history[method].apply(history, args);
};
};
};
}
exports.ConnectedRouter = ConnectedRouter;
exports.routerMiddleware = routerMiddleware;
exports.getLocation = getLocation;
exports.createMatchSelector = createMatchSelector;
exports.LOCATION_CHANGE = LOCATION_CHANGE;
exports.routerReducer = routerReducer;
exports.CALL_HISTORY_METHOD = CALL_HISTORY_METHOD;
exports.push = push;
exports.replace = replace;
exports.go = go;
exports.goBack = goBack;
exports.goForward = goForward;
exports.routerActions = routerActions;
Object.defineProperty(exports, '__esModule', { value: true });
})));

View File

@@ -0,0 +1 @@
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports,require("react"),require("prop-types"),require("react-router")):"function"==typeof define&&define.amd?define(["exports","react","prop-types","react-router"],e):e(t.ReactRouterRedux={},t.React,t.PropTypes,t.ReactRouter)}(this,function(t,e,r,o){"use strict";function n(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){return function(){for(var e=arguments.length,r=Array(e),o=0;e>o;o++)r[o]=arguments[o];return{type:f,payload:{method:t,args:r}}}}var i="default"in e?e.default:e;r=r&&r.hasOwnProperty("default")?r.default:r;var u=Object.assign||function(t){for(var e=1;arguments.length>e;e++){var r=arguments[e];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(t[o]=r[o])}return t},c="@@router/LOCATION_CHANGE",s={location:null},p=function(t){function e(){var r,o,a;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);for(var i=arguments.length,u=Array(i),s=0;i>s;s++)u[s]=arguments[s];return r=o=n(this,t.call.apply(t,[this].concat(u))),o.handleLocationChange=function(t){o.store.dispatch({type:c,payload:t})},a=r,n(o,a)}return function(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,t),e.prototype.componentWillMount=function(){var t=this.props,e=t.history,r=t.isSSR;this.store=t.store||this.context.store,this.handleLocationChange(e.location),r||(this.unsubscribeFromHistory=e.listen(this.handleLocationChange))},e.prototype.componentWillUnmount=function(){this.unsubscribeFromHistory&&this.unsubscribeFromHistory()},e.prototype.render=function(){return i.createElement(o.Router,this.props)},e}(e.Component);p.propTypes={store:r.object,history:r.object.isRequired,children:r.node,isSSR:r.bool},p.contextTypes={store:r.object};var l=function(t){return t.router.location},f="@@router/CALL_HISTORY_METHOD",h=a("push"),y=a("replace"),d=a("go"),b=a("goBack"),g=a("goForward"),v={push:h,replace:y,go:d,goBack:b,goForward:g};t.ConnectedRouter=p,t.routerMiddleware=function(t){return function(){return function(e){return function(r){if(r.type!==f)return e(r);var o=r.payload;t[o.method].apply(t,o.args)}}}},t.getLocation=l,t.createMatchSelector=function(t){var e=null,r=null;return function(n){var a=(l(n)||{}).pathname;if(a===e)return r;e=a;var i=o.matchPath(a,t);return i&&r&&i.url===r.url||(r=i),r}},t.LOCATION_CHANGE=c,t.routerReducer=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.type===c?u({},t,{location:e.payload}):t},t.CALL_HISTORY_METHOD=f,t.push=h,t.replace=y,t.go=d,t.goBack=b,t.goForward=g,t.routerActions=v,Object.defineProperty(t,"__esModule",{value:!0})});