UNPKG

@elastic/eui

Version:

Elastic UI Component Library

100 lines (99 loc) 6.55 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 = ["className", "children", "initialFocus", "onClose", "maxWidth", "style"]; 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 ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; } function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; } function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } 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 _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; } /* * 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 from 'react'; import PropTypes from "prop-types"; import classnames from 'classnames'; import { keys, useEuiTheme } from '../../services'; import { EuiButtonIcon } from '../button'; import { EuiFocusTrap } from '../focus_trap'; import { EuiOverlayMask } from '../overlay_mask'; import { EuiI18n } from '../i18n'; import { euiModalStyles } from './modal.styles'; import { jsx as ___EmotionJSX } from "@emotion/react"; export var EuiModal = function EuiModal(_ref) { var className = _ref.className, children = _ref.children, initialFocus = _ref.initialFocus, onClose = _ref.onClose, _ref$maxWidth = _ref.maxWidth, maxWidth = _ref$maxWidth === void 0 ? true : _ref$maxWidth, style = _ref.style, rest = _objectWithoutProperties(_ref, _excluded); var onKeyDown = function onKeyDown(event) { if (event.key === keys.ESCAPE) { event.preventDefault(); event.stopPropagation(); onClose(event); } }; var newStyle = style; if (typeof maxWidth !== 'boolean') { newStyle = _objectSpread(_objectSpread({}, newStyle), {}, { maxInlineSize: maxWidth }); } var classes = classnames('euiModal', className); var euiTheme = useEuiTheme(); var styles = euiModalStyles(euiTheme); var cssStyles = [styles.euiModal, maxWidth === true && styles.defaultMaxWidth]; var cssCloseIconStyles = [styles.euiModal__closeIcon]; return ___EmotionJSX(EuiOverlayMask, null, ___EmotionJSX(EuiFocusTrap, { initialFocus: initialFocus, scrollLock: true, preventScrollOnFocus: true }, ___EmotionJSX("div", _extends({ css: cssStyles, className: classes, onKeyDown: onKeyDown, tabIndex: 0, style: newStyle }, rest), ___EmotionJSX(EuiI18n, { token: "euiModal.closeModal", default: "Closes this modal window" }, function (closeModal) { return ___EmotionJSX(EuiButtonIcon, { iconType: "cross", onClick: onClose, css: cssCloseIconStyles, className: "euiModal__closeIcon", color: "text", "aria-label": closeModal }); }), children))); }; EuiModal.propTypes = { className: PropTypes.string, /** * ReactNode to render as this component's content */ children: PropTypes.node.isRequired, onClose: PropTypes.func.isRequired, /** * Sets the max-width of the modal. * Set to `true` to use the default (`euiBreakpoints 'm'`), * set to `false` to not restrict the width, * set to a number for a custom width in px, * set to a string for a custom width in custom measurement. */ maxWidth: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.number.isRequired, PropTypes.string.isRequired]), /** * Specifies what element should initially have focus. * Can be a DOM node, or a selector string (which will be passed to document.querySelector() to find the DOM node), or a function that returns a DOM node. */ initialFocus: PropTypes.oneOfType([PropTypes.any.isRequired, PropTypes.func.isRequired, PropTypes.string.isRequired]) };