@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
62 lines (61 loc) • 2.58 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var react_1 = __importDefault(require("react"));
var hoist_non_react_statics_1 = __importDefault(require("hoist-non-react-statics"));
function errorBoundary(Component, fallback) {
var WrappedComponent = /** @class */ (function (_super) {
__extends(WrappedComponent, _super);
function WrappedComponent() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.state = {
hasError: false
};
return _this;
}
WrappedComponent.getDerivedStateFromError = function () {
// Update state so the next render will show the fallback UI.
return { hasError: true };
};
WrappedComponent.prototype.componentDidCatch = function (error, info) {
// You can also log the error to an error reporting service
console.log(error);
console.log(info);
};
WrappedComponent.prototype.render = function () {
if (this.state.hasError) {
return fallback ? fallback : null;
}
return react_1.default.createElement(Component, __assign({}, this.props));
};
return WrappedComponent;
}(react_1.default.Component));
return hoist_non_react_statics_1.default(WrappedComponent, Component);
}
exports.default = errorBoundary;