@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
56 lines (55 loc) • 2.27 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);
};
import React from 'react';
import hoistNonReactStatics from 'hoist-non-react-statics';
export default 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.createElement(Component, __assign({}, this.props));
};
return WrappedComponent;
}(React.Component));
return hoistNonReactStatics(WrappedComponent, Component);
}