UNPKG

@elastic/eui

Version:

Elastic UI Component Library

245 lines (244 loc) 13.2 kB
var _excluded = ["children", "className", "id", "role", "element", "buttonElement", "buttonProps", "buttonClassName", "buttonContentClassName", "buttonContent", "arrowDisplay", "arrowProps", "extraAction", "paddingSize", "borders", "initialIsOpen", "forceState", "isLoading", "isLoadingMessage", "isDisabled", "theme"]; function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); } function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; } function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.indexOf(n) >= 0) continue; t[n] = r[n]; } return t; } function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); } function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } } function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; } function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); } function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); } function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; } function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); } function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); } function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); } function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /* * 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 { htmlIdGenerator, withEuiTheme } from '../../services'; import { EuiLoadingSpinner } from '../loading'; import { EuiAccordionTrigger } from './accordion_trigger'; import { EuiAccordionChildren } from './accordion_children'; import { euiAccordionStyles } from './accordion.styles'; import { jsx as ___EmotionJSX } from "@emotion/react"; export var PADDING_SIZES = ['none', 'xs', 's', 'm', 'l', 'xl']; export var EuiAccordionClass = /*#__PURE__*/function (_Component) { function EuiAccordionClass() { var _this; _classCallCheck(this, EuiAccordionClass); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _callSuper(this, EuiAccordionClass, [].concat(args)); _defineProperty(_this, "state", { isOpen: _this.props.forceState ? _this.props.forceState === 'open' : _this.props.initialIsOpen }); _defineProperty(_this, "onToggle", function () { var forceState = _this.props.forceState; if (forceState) { var _this$props$onToggle, _this$props; var nextState = !_this.isOpen; (_this$props$onToggle = (_this$props = _this.props).onToggle) === null || _this$props$onToggle === void 0 || _this$props$onToggle.call(_this$props, nextState); } else { _this.setState(function (prevState) { return { isOpen: !prevState.isOpen }; }, function () { var _this$props$onToggle2, _this$props2; (_this$props$onToggle2 = (_this$props2 = _this.props).onToggle) === null || _this$props$onToggle2 === void 0 || _this$props$onToggle2.call(_this$props2, _this.state.isOpen); }); } }); _defineProperty(_this, "generatedId", htmlIdGenerator()()); return _this; } _inherits(EuiAccordionClass, _Component); return _createClass(EuiAccordionClass, [{ key: "isOpen", get: function get() { return this.props.forceState ? this.props.forceState === 'open' : this.state.isOpen; } }, { key: "render", value: function render() { var _buttonProps$id; var _this$props3 = this.props, children = _this$props3.children, className = _this$props3.className, id = _this$props3.id, role = _this$props3.role, _this$props3$element = _this$props3.element, Element = _this$props3$element === void 0 ? 'div' : _this$props3$element, buttonElement = _this$props3.buttonElement, buttonProps = _this$props3.buttonProps, buttonClassName = _this$props3.buttonClassName, buttonContentClassName = _this$props3.buttonContentClassName, buttonContent = _this$props3.buttonContent, arrowDisplay = _this$props3.arrowDisplay, arrowProps = _this$props3.arrowProps, extraAction = _this$props3.extraAction, paddingSize = _this$props3.paddingSize, borders = _this$props3.borders, initialIsOpen = _this$props3.initialIsOpen, forceState = _this$props3.forceState, isLoading = _this$props3.isLoading, isLoadingMessage = _this$props3.isLoadingMessage, isDisabled = _this$props3.isDisabled, theme = _this$props3.theme, rest = _objectWithoutProperties(_this$props3, _excluded); var classes = classNames('euiAccordion', { 'euiAccordion-isOpen': this.isOpen }, className); var styles = euiAccordionStyles(theme); var cssStyles = [styles.euiAccordion, borders !== 'none' && styles.borders.borders, borders !== 'none' && styles.borders[borders]]; var buttonId = (_buttonProps$id = buttonProps === null || buttonProps === void 0 ? void 0 : buttonProps.id) !== null && _buttonProps$id !== void 0 ? _buttonProps$id : this.generatedId; return ___EmotionJSX(Element, _extends({ className: classes, css: cssStyles }, rest), ___EmotionJSX(EuiAccordionTrigger, { ariaControlsId: id, buttonId: buttonId // Force button element to be a legend if the element is a fieldset , buttonElement: Element === 'fieldset' ? 'legend' : buttonElement, buttonClassName: buttonClassName, buttonContent: buttonContent, buttonContentClassName: buttonContentClassName, buttonProps: buttonProps, arrowProps: arrowProps, arrowDisplay: arrowDisplay, isDisabled: isDisabled, isOpen: this.isOpen, onToggle: this.onToggle, extraAction: isLoading ? ___EmotionJSX(EuiLoadingSpinner, null) : extraAction }), ___EmotionJSX(EuiAccordionChildren, { role: role, id: id, "aria-labelledby": buttonId, paddingSize: paddingSize, isLoading: isLoading, isLoadingMessage: isLoadingMessage, isOpen: this.isOpen }, children)); } }]); }(Component); _defineProperty(EuiAccordionClass, "defaultProps", { initialIsOpen: false, borders: 'none', paddingSize: 'none', arrowDisplay: 'left', isLoading: false, isDisabled: false, isLoadingMessage: false, element: 'div', buttonElement: 'button', role: 'group' }); EuiAccordionClass.propTypes = { className: PropTypes.string, "aria-label": PropTypes.string, "data-test-subj": PropTypes.string, css: PropTypes.any, id: PropTypes.string.isRequired, /** * Applied to the entire .euiAccordion wrapper. * When using `fieldset`, it will enforce `buttonElement = legend` as well. */ element: PropTypes.oneOf(["div", "fieldset"]), /** * Defaults to the [group role](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/group_role). * * If your accordion contains significant enough content to be a document * [landmark role](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/region_role#accessibility_concerns), consider using the `region` role instead. * @default group */ role: PropTypes.any, /** * Class that will apply to the trigger for the accordion. */ buttonClassName: PropTypes.string, /** * Apply more props to the triggering button. * * Includes optional `paddingSize` prop which allows sizes of `s`, `m`, or `l`. * Note: Padding will not be present on the side closest to the accordion arrow. */ buttonProps: PropTypes.shape({ className: PropTypes.string, "aria-label": PropTypes.string, "data-test-subj": PropTypes.string, css: PropTypes.any, paddingSize: PropTypes.oneOf(["s", "m", "l"]) }), /** * Class that will apply to the trigger content for the accordion. */ buttonContentClassName: PropTypes.string, /** * The content of the clickable trigger */ buttonContent: PropTypes.node, /** * Applied to the main button receiving the `onToggle` event. * Anything other than the default `button` does not support removing the arrow display (for accessibility of focus). */ buttonElement: PropTypes.oneOf(["div", "legend", "button"]), /** * Extra props to pass to the EuiButtonIcon containing the arrow. */ arrowProps: PropTypes.any, /** * Will appear right aligned against the button. Useful for separate actions like deletions. */ extraAction: PropTypes.node, /** * The accordion will start in the open state. */ initialIsOpen: PropTypes.bool, /** * Optional callback method called on open and close with a single `isOpen` parameter */ onToggle: PropTypes.func, /** * The padding around the exposed accordion content. */ paddingSize: PropTypes.any, /** * Placement of the arrow indicator, or 'none' to hide it. */ arrowDisplay: PropTypes.oneOf(["left", "right", "none"]), /** * Optional border styling. Defaults to 'none'. */ borders: PropTypes.oneOf(["horizontal", "all", "none"]), /** * Control the opening of accordion via prop */ forceState: PropTypes.oneOf(["closed", "open"]), /** * Change `extraAction` and children into a loading spinner */ isLoading: PropTypes.bool, /** * Choose whether the loading message replaces the content. Customize the message by passing a node */ isLoadingMessage: PropTypes.oneOfType([PropTypes.bool.isRequired, PropTypes.node.isRequired]), /** * Disable the open/close interaction and visually subdues the trigger */ isDisabled: PropTypes.bool }; export var EuiAccordion = withEuiTheme(EuiAccordionClass);