123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- "use strict";
- exports.__esModule = true;
- exports.PersistGate = void 0;
- var _react = _interopRequireWildcard(require("react"));
- function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
- function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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); } }
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
- var PersistGate =
- /*#__PURE__*/
- function (_PureComponent) {
- _inherits(PersistGate, _PureComponent);
- function PersistGate() {
- var _getPrototypeOf2;
- var _this;
- _classCallCheck(this, PersistGate);
- for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
- args[_key] = arguments[_key];
- }
- _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(PersistGate)).call.apply(_getPrototypeOf2, [this].concat(args)));
- _defineProperty(_assertThisInitialized(_this), "state", {
- bootstrapped: false
- });
- _defineProperty(_assertThisInitialized(_this), "_unsubscribe", void 0);
- _defineProperty(_assertThisInitialized(_this), "handlePersistorState", function () {
- var persistor = _this.props.persistor;
- var _persistor$getState = persistor.getState(),
- bootstrapped = _persistor$getState.bootstrapped;
- if (bootstrapped) {
- if (_this.props.onBeforeLift) {
- Promise.resolve(_this.props.onBeforeLift()).finally(function () {
- return _this.setState({
- bootstrapped: true
- });
- });
- } else {
- _this.setState({
- bootstrapped: true
- });
- }
- _this._unsubscribe && _this._unsubscribe();
- }
- });
- return _this;
- }
- _createClass(PersistGate, [{
- key: "componentDidMount",
- value: function componentDidMount() {
- this._unsubscribe = this.props.persistor.subscribe(this.handlePersistorState);
- this.handlePersistorState();
- }
- }, {
- key: "componentWillUnmount",
- value: function componentWillUnmount() {
- this._unsubscribe && this._unsubscribe();
- }
- }, {
- key: "render",
- value: function render() {
- if (process.env.NODE_ENV !== 'production') {
- if (typeof this.props.children === 'function' && this.props.loading) console.error('redux-persist: PersistGate expects either a function child or loading prop, but not both. The loading prop will be ignored.');
- }
- if (typeof this.props.children === 'function') {
- return this.props.children(this.state.bootstrapped);
- }
- return this.state.bootstrapped ? this.props.children : this.props.loading;
- }
- }]);
- return PersistGate;
- }(_react.PureComponent);
- exports.PersistGate = PersistGate;
- _defineProperty(PersistGate, "defaultProps", {
- children: null,
- loading: null
- });
|