react-router
Version:
A complete routing library for React.js
50 lines (37 loc) • 1.89 kB
JavaScript
;
Object.defineProperty(exports, '__esModule', {
value: true
});
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
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'); } }
var _NavigationTypes = require('./NavigationTypes');
var _NavigationTypes2 = _interopRequireDefault(_NavigationTypes);
/**
* A Location answers two important questions:
*
* 1. Where am I?
* 2. How did I get here?
*/
var Location = (function () {
function Location() {
var pathname = arguments[0] === undefined ? '/' : arguments[0];
var query = arguments[1] === undefined ? null : arguments[1];
var state = arguments[2] === undefined ? null : arguments[2];
var navigationType = arguments[3] === undefined ? _NavigationTypes2['default'].POP : arguments[3];
_classCallCheck(this, Location);
this.pathname = pathname;
this.query = query;
this.state = state;
this.navigationType = navigationType;
}
_createClass(Location, null, [{
key: 'isLocation',
value: function isLocation(object) {
return object instanceof Location;
}
}]);
return Location;
})();
exports['default'] = Location;
module.exports = exports['default'];