UNPKG

2.74 kBJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _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; }; }();
8
9var _react = require('react');
10
11var _react2 = _interopRequireDefault(_react);
12
13function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
15function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
16
17function _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; }
18
19function _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; }
20
21var ErrorBoundary = function (_React$Component) {
22 _inherits(ErrorBoundary, _React$Component);
23
24 function ErrorBoundary(props) {
25 _classCallCheck(this, ErrorBoundary);
26
27 var _this = _possibleConstructorReturn(this, (ErrorBoundary.__proto__ || Object.getPrototypeOf(ErrorBoundary)).call(this, props));
28
29 _this.state = { hasError: false };
30 return _this;
31 }
32
33 _createClass(ErrorBoundary, [{
34 key: 'componentDidCatch',
35 value: function componentDidCatch(error, info) {
36 this.setState({ hasError: true });
37 }
38 }, {
39 key: 'unstable_handleError',
40 value: function unstable_handleError(error, info) {
41 this.setState({ hasError: true });
42 }
43 }, {
44 key: 'render',
45 value: function render() {
46 if (this.state.hasError) {
47 return _react2.default.createElement(
48 'h1',
49 null,
50 'Slider error.'
51 );
52 }
53 return this.props.children;
54 }
55 }]);
56
57 return ErrorBoundary;
58}(_react2.default.Component);
59
60exports.default = ErrorBoundary;
\No newline at end of file