UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

436 lines (420 loc) 15.4 kB
import * as React from 'react'; import { Button } from 'primereact/button'; import { useEventListener, useMountEffect, useUpdateEffect } from 'primereact/hooks'; import { Ripple } from 'primereact/ripple'; import { ObjectUtils, DomHandler, classNames, IconUtils } from 'primereact/utils'; 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 _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); } 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 _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); } 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 _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; } function _iterableToArrayLimit(arr, i) { var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]; if (null != _i) { var _s, _e, _x, _r, _arr = [], _n = !0, _d = !1; try { if (_x = (_i = _i.call(arr)).next, 0 === i) { if (Object(_i) !== _i) return; _n = !1; } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0); } catch (err) { _d = !0, _e = err; } finally { try { if (!_n && null != _i["return"] && (_r = _i["return"](), Object(_r) !== _r)) return; } finally { if (_d) throw _e; } } return _arr; } } function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); } var SpeedDialBase = { defaultProps: { __TYPE: 'SpeedDial', id: null, model: null, visible: false, style: null, className: null, direction: 'up', transitionDelay: 30, type: 'linear', radius: 0, mask: false, disabled: false, hideOnClickOutside: true, buttonStyle: null, buttonClassName: null, buttonTemplate: null, 'aria-label': null, maskStyle: null, maskClassName: null, showIcon: 'pi pi-plus', hideIcon: null, rotateAnimation: true, onVisibleChange: null, onClick: null, onShow: null, onHide: null, children: undefined }, getProps: function getProps(props) { return ObjectUtils.getMergedProps(props, SpeedDialBase.defaultProps); }, getOtherProps: function getOtherProps(props) { return ObjectUtils.getDiffProps(props, SpeedDialBase.defaultProps); } }; 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; } var SpeedDial = /*#__PURE__*/React.memo( /*#__PURE__*/React.forwardRef(function (inProps, ref) { var _classNames2; var props = SpeedDialBase.getProps(inProps); var _React$useState = React.useState(false), _React$useState2 = _slicedToArray(_React$useState, 2), visibleState = _React$useState2[0], setVisibleState = _React$useState2[1]; var isItemClicked = React.useRef(false); var elementRef = React.useRef(null); var listRef = React.useRef(null); var visible = props.onVisibleChange ? props.visible : visibleState; var _useEventListener = useEventListener({ type: 'click', listener: function listener(event) { if (!isItemClicked.current && isOutsideClicked(event)) { hide(); } isItemClicked.current = false; }, when: visibleState }), _useEventListener2 = _slicedToArray(_useEventListener, 2), bindDocumentClickListener = _useEventListener2[0], unbindDocumentClickListener = _useEventListener2[1]; var show = function show() { props.onVisibleChange ? props.onVisibleChange(true) : setVisibleState(true); props.onShow && props.onShow(); }; var hide = function hide() { props.onVisibleChange ? props.onVisibleChange(false) : setVisibleState(false); props.onHide && props.onHide(); }; var onClick = function onClick(e) { visible ? hide() : show(); props.onClick && props.onClick(e); isItemClicked.current = true; }; var onItemClick = function onItemClick(e, item) { item.command && item.command({ originalEvent: e, item: item }); hide(); isItemClicked.current = true; e.preventDefault(); }; var isOutsideClicked = function isOutsideClicked(event) { return elementRef.current && !(elementRef.current.isSameNode(event.target) || elementRef.current.contains(event.target)); }; var calculateTransitionDelay = function calculateTransitionDelay(index) { var length = props.model.length; return (visible ? index : length - index - 1) * props.transitionDelay; }; var calculatePointStyle = function calculatePointStyle(index) { var type = props.type; if (type !== 'linear') { var length = props.model.length; var radius = props.radius || length * 20; if (type === 'circle') { var step = 2 * Math.PI / length; return { left: "calc(".concat(radius * Math.cos(step * index), "px + var(--item-diff-x, 0px))"), top: "calc(".concat(radius * Math.sin(step * index), "px + var(--item-diff-y, 0px))") }; } else if (type === 'semi-circle') { var direction = props.direction; var _step = Math.PI / (length - 1); var x = "calc(".concat(radius * Math.cos(_step * index), "px + var(--item-diff-x, 0px))"); var y = "calc(".concat(radius * Math.sin(_step * index), "px + var(--item-diff-y, 0px))"); if (direction === 'up') { return { left: x, bottom: y }; } else if (direction === 'down') { return { left: x, top: y }; } else if (direction === 'left') { return { right: y, top: x }; } else if (direction === 'right') { return { left: y, top: x }; } } else if (type === 'quarter-circle') { var _direction = props.direction; var _step2 = Math.PI / (2 * (length - 1)); var _x = "calc(".concat(radius * Math.cos(_step2 * index), "px + var(--item-diff-x, 0px))"); var _y = "calc(".concat(radius * Math.sin(_step2 * index), "px + var(--item-diff-y, 0px))"); if (_direction === 'up-left') { return { right: _x, bottom: _y }; } else if (_direction === 'up-right') { return { left: _x, bottom: _y }; } else if (_direction === 'down-left') { return { right: _y, top: _x }; } else if (_direction === 'down-right') { return { left: _y, top: _x }; } } } return {}; }; var getItemStyle = function getItemStyle(index) { var transitionDelay = calculateTransitionDelay(index); var pointStyle = calculatePointStyle(index); return _objectSpread({ transitionDelay: "".concat(transitionDelay, "ms") }, pointStyle); }; useMountEffect(function () { if (props.type !== 'linear') { var _button = DomHandler.findSingle(elementRef.current, '.p-speeddial-button'); var firstItem = DomHandler.findSingle(listRef.current, '.p-speeddial-item'); if (_button && firstItem) { var wDiff = Math.abs(_button.offsetWidth - firstItem.offsetWidth); var hDiff = Math.abs(_button.offsetHeight - firstItem.offsetHeight); listRef.current.style.setProperty('--item-diff-x', "".concat(wDiff / 2, "px")); listRef.current.style.setProperty('--item-diff-y', "".concat(hDiff / 2, "px")); } } }); useUpdateEffect(function () { if (visibleState) { props.hideOnClickOutside && bindDocumentClickListener(); } return function () { props.hideOnClickOutside && unbindDocumentClickListener(); }; }, [visibleState]); React.useImperativeHandle(ref, function () { return { props: props, show: show, hide: hide, getElement: function getElement() { return elementRef.current; } }; }); var createItem = function createItem(item, index) { if (item.visible === false) { return null; } var style = getItemStyle(index); var disabled = item.disabled, _icon = item.icon, label = item.label, template = item.template, url = item.url, target = item.target; var contentClassName = classNames('p-speeddial-action', { 'p-disabled': disabled }); var iconClassName = classNames('p-speeddial-action-icon', _icon); var icon = IconUtils.getJSXIcon(_icon, { className: 'p-speeddial-action-icon' }, { props: props }); var content = /*#__PURE__*/React.createElement("a", { href: url || '#', role: "menuitem", className: contentClassName, target: target, "data-pr-tooltip": label, onClick: function onClick(e) { return onItemClick(e, item); } }, icon, /*#__PURE__*/React.createElement(Ripple, null)); if (template) { var defaultContentOptions = { onClick: function onClick(e) { return onItemClick(e, item); }, className: contentClassName, iconClassName: iconClassName, element: content, props: props, visible: visible }; content = ObjectUtils.getJSXElement(template, item, defaultContentOptions); } return /*#__PURE__*/React.createElement("li", { key: index, className: "p-speeddial-item", style: style, role: "none" }, content); }; var createItems = function createItems() { return props.model ? props.model.map(createItem) : null; }; var createList = function createList() { var items = createItems(); return /*#__PURE__*/React.createElement("ul", { ref: listRef, className: "p-speeddial-list", role: "menu" }, items); }; var createButton = function createButton() { var _classNames; var showIconVisible = !visible && !!props.showIcon || !props.hideIcon; var hideIconVisible = visible && !!props.hideIcon; var className = classNames('p-speeddial-button p-button-rounded', { 'p-speeddial-rotate': props.rotateAnimation && !props.hideIcon }, props.buttonClassName); var iconClassName = classNames((_classNames = {}, _defineProperty(_classNames, "".concat(props.showIcon), !visible && !!props.showIcon || !props.hideIcon), _defineProperty(_classNames, "".concat(props.hideIcon), visible && !!props.hideIcon), _classNames)); var icon = IconUtils.getJSXIcon(showIconVisible ? props.showIcon : hideIconVisible ? props.hideIcon : null, undefined, { props: props }); var content = /*#__PURE__*/React.createElement(Button, { type: "button", style: props.buttonStyle, className: className, icon: icon, onClick: onClick, disabled: props.disabled, "aria-label": props['aria-label'] }); if (props.buttonTemplate) { var defaultContentOptions = { onClick: onClick, className: className, iconClassName: iconClassName, element: content, props: props, visible: visible }; return ObjectUtils.getJSXElement(props.buttonTemplate, defaultContentOptions); } return content; }; var createMask = function createMask() { if (props.mask) { var _className = classNames('p-speeddial-mask', { 'p-speeddial-mask-visible': visible }, props.maskClassName); return /*#__PURE__*/React.createElement("div", { className: _className, style: props.maskStyle }); } return null; }; var otherProps = SpeedDialBase.getOtherProps(props); var className = classNames("p-speeddial p-component p-speeddial-".concat(props.type), (_classNames2 = {}, _defineProperty(_classNames2, "p-speeddial-direction-".concat(props.direction), props.type !== 'circle'), _defineProperty(_classNames2, 'p-speeddial-opened', visible), _defineProperty(_classNames2, 'p-disabled', props.disabled), _classNames2), props.className); var button = createButton(); var list = createList(); var mask = createMask(); return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", _extends({ ref: elementRef, id: props.id, className: className, style: props.style }, otherProps), button, list), mask); })); SpeedDial.displayName = 'SpeedDial'; export { SpeedDial };