UNPKG

@elastic/eui

Version:

Elastic UI Component Library

133 lines (130 loc) 9.18 kB
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); } var _excluded = ["children"], _excluded2 = ["errorMessage", "className", "data-test-subj"]; function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; } function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } 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, _toPropertyKey(descriptor.key), descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); } 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 } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ import React, { Component } from 'react'; import PropTypes from "prop-types"; import classNames from 'classnames'; import { EuiTitle } from '../title'; import { EuiCodeBlock } from '../code'; import { EuiI18n } from '../i18n'; import { useEuiTheme } from '../../services'; import { euiErrorBoundaryStyles } from './error_boundary.styles'; import { jsx as ___EmotionJSX } from "@emotion/react"; export var EuiErrorBoundary = /*#__PURE__*/function (_Component) { _inherits(EuiErrorBoundary, _Component); var _super = _createSuper(EuiErrorBoundary); function EuiErrorBoundary(props) { var _this; _classCallCheck(this, EuiErrorBoundary); _this = _super.call(this, props); var errorState = { hasError: false, errorMessage: undefined }; _this.state = errorState; return _this; } _createClass(EuiErrorBoundary, [{ key: "componentDidCatch", value: function componentDidCatch(error) { var _this$props$onError, _this$props; // Display fallback UI // Only Chrome includes the `message` property as part of `stack`. // For consistency, rebuild the full error text from the Error subparts. var message = error.message, stack = error.stack; var idx = (stack === null || stack === void 0 ? void 0 : stack.indexOf(message)) || -1; var stackStr = idx > -1 ? stack === null || stack === void 0 ? void 0 : stack.substr(idx + message.length + 1) : stack; var errorMessage = "Error: ".concat(message, "\n").concat(stackStr); this.setState({ hasError: true, errorMessage: errorMessage }); // Pass back the error to the consumer (_this$props$onError = (_this$props = this.props).onError) === null || _this$props$onError === void 0 ? void 0 : _this$props$onError.call(_this$props, error); } }, { key: "render", value: function render() { var _this$props2 = this.props, children = _this$props2.children, rest = _objectWithoutProperties(_this$props2, _excluded); var _this$state = this.state, hasError = _this$state.hasError, errorMessage = _this$state.errorMessage; if (hasError) { // You can render any custom fallback UI return ___EmotionJSX(EuiErrorMessage, _extends({}, rest, { errorMessage: errorMessage })); } return children; } }]); return EuiErrorBoundary; }(Component); /** * Split out into a separate styling-only component for easier use of hooks, * and also for internal re-use by EUI's docs/playgrounds */ EuiErrorBoundary.propTypes = { className: PropTypes.string, "aria-label": PropTypes.string, "data-test-subj": PropTypes.string, css: PropTypes.any, /** * ReactNode to render as this component's content */ children: PropTypes.node.isRequired, /** * Callback that fires when an error is caught. Passes back the full error */ onError: PropTypes.func }; export var EuiErrorMessage = function EuiErrorMessage(_ref) { var errorMessage = _ref.errorMessage, className = _ref.className, dataTestSubj = _ref['data-test-subj'], rest = _objectWithoutProperties(_ref, _excluded2); var euiTheme = useEuiTheme(); var styles = euiErrorBoundaryStyles(euiTheme); return ___EmotionJSX("div", _extends({ css: styles.euiErrorBoundary, className: classNames('euiErrorBoundary', className), "data-test-subj": classNames('euiErrorBoundary', dataTestSubj) }, rest), ___EmotionJSX(EuiCodeBlock, null, ___EmotionJSX(EuiTitle, { size: "xs" }, ___EmotionJSX("p", null, ___EmotionJSX(EuiI18n, { token: "euiErrorBoundary.error", default: "Error" }))), errorMessage)); }; EuiErrorMessage.propTypes = { className: PropTypes.string, "aria-label": PropTypes.string, "data-test-subj": PropTypes.string, css: PropTypes.any, errorMessage: PropTypes.string };