@warp-works/warpjs-utils
Version:
Utility functions for WarpJS and plugins
82 lines (60 loc) • 4.01 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.SUFFIX = undefined;
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; }; }();
var _baseComponentName = require('./base-component-name');
var _baseComponentName2 = _interopRequireDefault(_baseComponentName);
var _debug2 = require('./debug');
var _debug3 = _interopRequireDefault(_debug2);
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 debug = (0, _debug3.default)('error-boundary');
var SUFFIX = exports.SUFFIX = 'ErrorBoundary';
exports.default = function (Component) {
var ErrorBoundary = function (_React$Component) {
_inherits(ErrorBoundary, _React$Component);
function ErrorBoundary(props) {
_classCallCheck(this, ErrorBoundary);
var _this = _possibleConstructorReturn(this, (ErrorBoundary.__proto__ || Object.getPrototypeOf(ErrorBoundary)).call(this, props));
_this.state = { hasError: false };
return _this;
}
_createClass(ErrorBoundary, [{
key: 'componentDidCatch',
value: function componentDidCatch(error, info) {
// You can also log the error to an error reporting service
debug("Got error:", error, info);
// eslint-disable-next-line no-console
console.error(ErrorBoundary.displayName + '.componentDidCatch(): info=', info && info.componentStack ? info.componentStack : info);
}
}, {
key: 'render',
value: function render() {
if (this.state.hasError) {
return React.createElement(
'h1',
{ className: 'text-danger' },
'*** REACT ERROR: Something went wrong. ***'
);
}
return React.createElement(Component, this.props);
}
}], [{
key: 'getDerivedStateFromError',
value: function getDerivedStateFromError(error) {
// Update state so the next render will show the fallback UI.
debug("getDerivedStateFromError(): error=", error);
return { hasError: true };
}
}]);
return ErrorBoundary;
}(React.Component);
ErrorBoundary.displayName = '' + (0, _baseComponentName2.default)(Component.displayName) + SUFFIX;
ErrorBoundary.propTypes = Component.propTypes;
ErrorBoundary.defaultProps = Component.defaultProps;
return ErrorBoundary;
};