@elastic/eui
Version:
Elastic UI Component Library
341 lines (337 loc) • 20.4 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
var _typeof = require("@babel/runtime/helpers/typeof");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PADDING_SIZES = exports.EuiAccordionClass = exports.EuiAccordion = void 0;
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
var _react = _interopRequireWildcard(require("react"));
var _propTypes = _interopRequireDefault(require("prop-types"));
var _classnames = _interopRequireDefault(require("classnames"));
var _loading = require("../loading");
var _resize_observer = require("../observer/resize_observer");
var _text = require("../text");
var _i18n = require("../i18n");
var _services = require("../../services");
var _button = require("../button");
var _accordion = require("./accordion.styles");
var _global_styling = require("../../global_styling");
var _react2 = require("@emotion/react");
var _excluded = ["children", "buttonContent", "className", "id", "element", "buttonClassName", "buttonContentClassName", "extraAction", "paddingSize", "initialIsOpen", "arrowDisplay", "forceState", "isLoading", "isLoadingMessage", "isDisabled", "buttonProps", "buttonElement", "arrowProps", "theme"];
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
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; } } /*
* 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.
*/
var PADDING_SIZES = ['none', 'xs', 's', 'm', 'l', 'xl'];
exports.PADDING_SIZES = PADDING_SIZES;
var EuiAccordionClass = /*#__PURE__*/function (_Component) {
(0, _inherits2.default)(EuiAccordionClass, _Component);
var _super = _createSuper(EuiAccordionClass);
function EuiAccordionClass() {
var _this;
(0, _classCallCheck2.default)(this, EuiAccordionClass);
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
_this = _super.call.apply(_super, [this].concat(args));
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "childContent", null);
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "childWrapper", null);
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "state", {
isOpen: _this.props.forceState ? _this.props.forceState === 'open' : _this.props.initialIsOpen
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "setChildContentHeight", function () {
var forceState = _this.props.forceState;
requestAnimationFrame(function () {
var height = _this.childContent && (forceState ? forceState === 'open' : _this.state.isOpen) ? _this.childContent.clientHeight : 0;
_this.childWrapper && _this.childWrapper.setAttribute('style', (0, _global_styling.logicalCSS)('height', "".concat(height, "px")));
});
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "onToggle", function () {
var forceState = _this.props.forceState;
if (forceState) {
_this.props.onToggle && _this.props.onToggle(forceState === 'open' ? false : true);
} else {
_this.setState(function (prevState) {
return {
isOpen: !prevState.isOpen
};
}, function () {
if (_this.state.isOpen && _this.childWrapper) {
_this.childWrapper.focus();
}
_this.props.onToggle && _this.props.onToggle(_this.state.isOpen);
});
}
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "setChildContentRef", function (node) {
_this.childContent = node;
});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "generatedId", (0, _services.htmlIdGenerator)()());
// Storing resize/observer refs as an instance variable is a performance optimization
// and also resolves https://github.com/elastic/eui/issues/5903
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "resizeRef", function () {});
(0, _defineProperty2.default)((0, _assertThisInitialized2.default)(_this), "observerRef", function (ref) {
_this.setChildContentRef(ref);
_this.resizeRef(ref);
});
return _this;
}
(0, _createClass2.default)(EuiAccordionClass, [{
key: "componentDidMount",
value: function componentDidMount() {
this.setChildContentHeight();
}
}, {
key: "componentDidUpdate",
value: function componentDidUpdate() {
this.setChildContentHeight();
}
}, {
key: "render",
value: function render() {
var _buttonProps$id,
_this2 = this;
var _this$props = this.props,
children = _this$props.children,
buttonContent = _this$props.buttonContent,
className = _this$props.className,
id = _this$props.id,
_this$props$element = _this$props.element,
Element = _this$props$element === void 0 ? 'div' : _this$props$element,
buttonClassName = _this$props.buttonClassName,
buttonContentClassName = _this$props.buttonContentClassName,
extraAction = _this$props.extraAction,
paddingSize = _this$props.paddingSize,
initialIsOpen = _this$props.initialIsOpen,
arrowDisplay = _this$props.arrowDisplay,
forceState = _this$props.forceState,
isLoading = _this$props.isLoading,
isLoadingMessage = _this$props.isLoadingMessage,
isDisabled = _this$props.isDisabled,
buttonProps = _this$props.buttonProps,
_this$props$buttonEle = _this$props.buttonElement,
_ButtonElement = _this$props$buttonEle === void 0 ? 'button' : _this$props$buttonEle,
arrowProps = _this$props.arrowProps,
theme = _this$props.theme,
rest = (0, _objectWithoutProperties2.default)(_this$props, _excluded);
var isOpen = forceState ? forceState === 'open' : this.state.isOpen;
// Force button element to be a legend if the element is a fieldset
var ButtonElement = Element === 'fieldset' ? 'legend' : _ButtonElement;
var buttonElementIsFocusable = ButtonElement === 'button';
// Force visibility of arrow button if button element is not focusable
var _arrowDisplay = arrowDisplay === 'none' && !buttonElementIsFocusable ? 'left' : arrowDisplay;
var classes = (0, _classnames.default)('euiAccordion', {
'euiAccordion-isOpen': isOpen
}, className);
var childrenClasses = (0, _classnames.default)('euiAccordion__children', {
'euiAccordion__children-isLoading': isLoading
});
var buttonClasses = (0, _classnames.default)('euiAccordion__button', buttonClassName, buttonProps === null || buttonProps === void 0 ? void 0 : buttonProps.className);
var buttonContentClasses = (0, _classnames.default)('euiAccordion__buttonContent', buttonContentClassName);
var iconButtonClasses = (0, _classnames.default)('euiAccordion__iconButton', {
'euiAccordion__iconButton-isOpen': isOpen,
'euiAccordion__iconButton--right': _arrowDisplay === 'right'
}, arrowProps === null || arrowProps === void 0 ? void 0 : arrowProps.className);
// Emotion styles
var buttonStyles = (0, _accordion.euiAccordionButtonStyles)(theme);
var cssButtonStyles = [buttonStyles.euiAccordion__button, isDisabled && buttonStyles.disabled, buttonProps === null || buttonProps === void 0 ? void 0 : buttonProps.css];
var childrenStyles = (0, _accordion.euiAccordionChildrenStyles)(theme);
var cssChildrenStyles = [childrenStyles.euiAccordion__children, isLoading && childrenStyles.isLoading, paddingSize && paddingSize !== 'none' && childrenStyles[paddingSize]];
var childWrapperStyles = (0, _accordion.euiAccordionChildWrapperStyles)(theme);
var cssChildWrapperStyles = [childWrapperStyles.euiAccordion__childWrapper, isOpen && childWrapperStyles.isOpen];
var iconButtonStyles = (0, _accordion.euiAccordionIconButtonStyles)(theme);
var cssIconButtonStyles = [iconButtonStyles.euiAccordion__iconButton, isOpen && iconButtonStyles.isOpen, _arrowDisplay === 'right' && iconButtonStyles.arrowRight, arrowProps === null || arrowProps === void 0 ? void 0 : arrowProps.css];
var optionalActionStyles = (0, _accordion.euiAccordionOptionalActionStyles)();
var cssOptionalActionStyles = [optionalActionStyles.euiAccordion__optionalAction];
var spinnerStyles = (0, _accordion.euiAccordionSpinnerStyles)(theme);
var cssSpinnerStyles = [spinnerStyles.euiAccordion__spinner];
var triggerWrapperStyles = (0, _accordion.euiAccordionTriggerWrapperStyles)();
var cssTriggerWrapperStyles = [triggerWrapperStyles.euiAccordion__triggerWrapper];
var iconButton;
var buttonId = (_buttonProps$id = buttonProps === null || buttonProps === void 0 ? void 0 : buttonProps.id) !== null && _buttonProps$id !== void 0 ? _buttonProps$id : this.generatedId;
if (_arrowDisplay !== 'none') {
iconButton = (0, _react2.jsx)(_button.EuiButtonIcon, (0, _extends2.default)({
color: "text"
}, arrowProps, {
className: iconButtonClasses,
css: cssIconButtonStyles,
iconType: "arrowRight",
onClick: this.onToggle,
"aria-controls": id,
"aria-expanded": isOpen,
"aria-labelledby": buttonId,
tabIndex: buttonElementIsFocusable ? -1 : 0,
isDisabled: isDisabled
}));
}
var optionalAction = null;
if (isLoading || extraAction) {
optionalAction = (0, _react2.jsx)("div", {
className: "euiAccordion__optionalAction",
css: cssOptionalActionStyles
}, isLoading ? (0, _react2.jsx)(_loading.EuiLoadingSpinner, null) : extraAction);
}
var childrenContent;
if (isLoading && isLoadingMessage) {
childrenContent = (0, _react2.jsx)(_react.default.Fragment, null, (0, _react2.jsx)(_loading.EuiLoadingSpinner, {
className: "euiAccordion__spinner",
css: cssSpinnerStyles
}), (0, _react2.jsx)(_text.EuiText, {
size: "s"
}, (0, _react2.jsx)("p", null, isLoadingMessage !== true ? isLoadingMessage : (0, _react2.jsx)(_i18n.EuiI18n, {
token: "euiAccordion.isLoading",
default: "Loading"
}))));
} else {
childrenContent = children;
}
var button = (0, _react2.jsx)(ButtonElement, (0, _extends2.default)({}, buttonProps, {
id: buttonId,
className: buttonClasses,
css: cssButtonStyles,
"aria-controls": id
// `aria-expanded` is only a valid attribute on interactive controls - axe-core throws a violation otherwise
,
"aria-expanded": ButtonElement === 'button' ? isOpen : undefined,
onClick: isDisabled ? undefined : this.onToggle,
type: ButtonElement === 'button' ? 'button' : undefined,
disabled: ButtonElement === 'button' ? isDisabled : undefined
}), (0, _react2.jsx)("span", {
className: buttonContentClasses
}, buttonContent));
return (0, _react2.jsx)(Element, (0, _extends2.default)({
className: classes
}, rest), (0, _react2.jsx)("div", {
className: "euiAccordion__triggerWrapper",
css: cssTriggerWrapperStyles
}, _arrowDisplay === 'left' && iconButton, button, optionalAction, _arrowDisplay === 'right' && iconButton), (0, _react2.jsx)("div", {
className: "euiAccordion__childWrapper",
css: cssChildWrapperStyles,
ref: function ref(node) {
_this2.childWrapper = node;
},
tabIndex: -1,
role: "region",
"aria-labelledby": buttonId,
id: id
}, (0, _react2.jsx)(_resize_observer.EuiResizeObserver, {
onResize: this.setChildContentHeight
}, function (resizeRef) {
_this2.resizeRef = resizeRef;
return (0, _react2.jsx)("div", {
ref: _this2.observerRef
}, (0, _react2.jsx)("div", {
className: childrenClasses,
css: cssChildrenStyles
}, childrenContent));
})));
}
}]);
return EuiAccordionClass;
}(_react.Component);
exports.EuiAccordionClass = EuiAccordionClass;
(0, _defineProperty2.default)(EuiAccordionClass, "defaultProps", {
initialIsOpen: false,
paddingSize: 'none',
arrowDisplay: 'left',
isLoading: false,
isDisabled: false,
isLoadingMessage: false,
element: 'div',
buttonElement: 'button'
});
EuiAccordionClass.propTypes = {
className: _propTypes.default.string,
"aria-label": _propTypes.default.string,
"data-test-subj": _propTypes.default.string,
css: _propTypes.default.any,
id: _propTypes.default.string.isRequired,
/**
* Applied to the entire .euiAccordion wrapper.
* When using `fieldset`, it will enforce `buttonElement = legend` as well.
*/
element: _propTypes.default.oneOf(["div", "fieldset"]),
/**
* Class that will apply to the trigger for the accordion.
*/
buttonClassName: _propTypes.default.string,
/**
* Apply more props to the triggering button
*/
buttonProps: _propTypes.default.shape({
className: _propTypes.default.string,
"aria-label": _propTypes.default.string,
"data-test-subj": _propTypes.default.string,
css: _propTypes.default.any
}),
/**
* Class that will apply to the trigger content for the accordion.
*/
buttonContentClassName: _propTypes.default.string,
/**
* The content of the clickable trigger
*/
buttonContent: _propTypes.default.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.default.oneOf(["div", "legend", "button"]),
/**
* Extra props to pass to the EuiButtonIcon containing the arrow.
*/
arrowProps: _propTypes.default.any,
/**
* Will appear right aligned against the button. Useful for separate actions like deletions.
*/
extraAction: _propTypes.default.node,
/**
* The accordion will start in the open state.
*/
initialIsOpen: _propTypes.default.bool,
/**
* Optional callback method called on open and close with a single `isOpen` parameter
*/
onToggle: _propTypes.default.func,
/**
* The padding around the exposed accordion content.
*/
paddingSize: _propTypes.default.any,
/**
* Placement of the arrow indicator, or 'none' to hide it.
*/
arrowDisplay: _propTypes.default.oneOf(["left", "right", "none"]),
/**
* Control the opening of accordion via prop
*/
forceState: _propTypes.default.oneOf(["closed", "open"]),
/**
* Change `extraAction` and children into a loading spinner
*/
isLoading: _propTypes.default.bool,
/**
* Choose whether the loading message replaces the content. Customize the message by passing a node
*/
isLoadingMessage: _propTypes.default.oneOfType([_propTypes.default.bool.isRequired, _propTypes.default.node.isRequired]),
/**
* Disable the open/close interaction and visually subdues the trigger
*/
isDisabled: _propTypes.default.bool
};
var EuiAccordion = (0, _services.withEuiTheme)(EuiAccordionClass);
exports.EuiAccordion = EuiAccordion;