UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

280 lines (279 loc) 9.25 kB
"use strict"; 'use client'; // @inheritedComponent Tooltip var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default; var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var React = _interopRequireWildcard(require("react")); var _propTypes = _interopRequireDefault(require("prop-types")); var _clsx = _interopRequireDefault(require("clsx")); var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses")); var _colorManipulator = require("@mui/system/colorManipulator"); var _zeroStyled = require("../zero-styled"); var _memoTheme = _interopRequireDefault(require("../utils/memoTheme")); var _DefaultPropsProvider = require("../DefaultPropsProvider"); var _Fab = _interopRequireDefault(require("../Fab")); var _Tooltip = _interopRequireDefault(require("../Tooltip")); var _capitalize = _interopRequireDefault(require("../utils/capitalize")); var _speedDialActionClasses = _interopRequireWildcard(require("./speedDialActionClasses")); var _jsxRuntime = require("react/jsx-runtime"); const useUtilityClasses = ownerState => { const { open, tooltipPlacement, classes } = ownerState; const slots = { fab: ['fab', !open && 'fabClosed'], staticTooltip: ['staticTooltip', `tooltipPlacement${(0, _capitalize.default)(tooltipPlacement)}`, !open && 'staticTooltipClosed'], staticTooltipLabel: ['staticTooltipLabel'] }; return (0, _composeClasses.default)(slots, _speedDialActionClasses.getSpeedDialActionUtilityClass, classes); }; const SpeedDialActionFab = (0, _zeroStyled.styled)(_Fab.default, { name: 'MuiSpeedDialAction', slot: 'Fab', skipVariantsResolver: false, overridesResolver: (props, styles) => { const { ownerState } = props; return [styles.fab, !ownerState.open && styles.fabClosed]; } })((0, _memoTheme.default)(({ theme }) => ({ margin: 8, color: (theme.vars || theme).palette.text.secondary, backgroundColor: (theme.vars || theme).palette.background.paper, '&:hover': { backgroundColor: theme.vars ? theme.vars.palette.SpeedDialAction.fabHoverBg : (0, _colorManipulator.emphasize)(theme.palette.background.paper, 0.15) }, transition: `${theme.transitions.create('transform', { duration: theme.transitions.duration.shorter })}, opacity 0.8s`, opacity: 1, variants: [{ props: ({ ownerState }) => !ownerState.open, style: { opacity: 0, transform: 'scale(0)' } }] }))); const SpeedDialActionStaticTooltip = (0, _zeroStyled.styled)('span', { name: 'MuiSpeedDialAction', slot: 'StaticTooltip', overridesResolver: (props, styles) => { const { ownerState } = props; return [styles.staticTooltip, !ownerState.open && styles.staticTooltipClosed, styles[`tooltipPlacement${(0, _capitalize.default)(ownerState.tooltipPlacement)}`]]; } })((0, _memoTheme.default)(({ theme }) => ({ position: 'relative', display: 'flex', alignItems: 'center', [`& .${_speedDialActionClasses.default.staticTooltipLabel}`]: { transition: theme.transitions.create(['transform', 'opacity'], { duration: theme.transitions.duration.shorter }), opacity: 1 }, variants: [{ props: ({ ownerState }) => !ownerState.open, style: { [`& .${_speedDialActionClasses.default.staticTooltipLabel}`]: { opacity: 0, transform: 'scale(0.5)' } } }, { props: { tooltipPlacement: 'left' }, style: { [`& .${_speedDialActionClasses.default.staticTooltipLabel}`]: { transformOrigin: '100% 50%', right: '100%', marginRight: 8 } } }, { props: { tooltipPlacement: 'right' }, style: { [`& .${_speedDialActionClasses.default.staticTooltipLabel}`]: { transformOrigin: '0% 50%', left: '100%', marginLeft: 8 } } }] }))); const SpeedDialActionStaticTooltipLabel = (0, _zeroStyled.styled)('span', { name: 'MuiSpeedDialAction', slot: 'StaticTooltipLabel', overridesResolver: (props, styles) => styles.staticTooltipLabel })((0, _memoTheme.default)(({ theme }) => ({ position: 'absolute', ...theme.typography.body1, backgroundColor: (theme.vars || theme).palette.background.paper, borderRadius: (theme.vars || theme).shape.borderRadius, boxShadow: (theme.vars || theme).shadows[1], color: (theme.vars || theme).palette.text.secondary, padding: '4px 16px', wordBreak: 'keep-all' }))); const SpeedDialAction = /*#__PURE__*/React.forwardRef(function SpeedDialAction(inProps, ref) { const props = (0, _DefaultPropsProvider.useDefaultProps)({ props: inProps, name: 'MuiSpeedDialAction' }); const { className, delay = 0, FabProps = {}, icon, id, open, TooltipClasses, tooltipOpen: tooltipOpenProp = false, tooltipPlacement = 'left', tooltipTitle, ...other } = props; const ownerState = { ...props, tooltipPlacement }; const classes = useUtilityClasses(ownerState); const [tooltipOpen, setTooltipOpen] = React.useState(tooltipOpenProp); const handleTooltipClose = () => { setTooltipOpen(false); }; const handleTooltipOpen = () => { setTooltipOpen(true); }; const transitionStyle = { transitionDelay: `${delay}ms` }; const fab = /*#__PURE__*/(0, _jsxRuntime.jsx)(SpeedDialActionFab, { size: "small", className: (0, _clsx.default)(classes.fab, className), tabIndex: -1, role: "menuitem", ownerState: ownerState, ...FabProps, style: { ...transitionStyle, ...FabProps.style }, children: icon }); if (tooltipOpenProp) { return /*#__PURE__*/(0, _jsxRuntime.jsxs)(SpeedDialActionStaticTooltip, { id: id, ref: ref, className: classes.staticTooltip, ownerState: ownerState, ...other, children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(SpeedDialActionStaticTooltipLabel, { style: transitionStyle, id: `${id}-label`, className: classes.staticTooltipLabel, ownerState: ownerState, children: tooltipTitle }), /*#__PURE__*/React.cloneElement(fab, { 'aria-labelledby': `${id}-label` })] }); } if (!open && tooltipOpen) { setTooltipOpen(false); } return /*#__PURE__*/(0, _jsxRuntime.jsx)(_Tooltip.default, { id: id, ref: ref, title: tooltipTitle, placement: tooltipPlacement, onClose: handleTooltipClose, onOpen: handleTooltipOpen, open: open && tooltipOpen, classes: TooltipClasses, ...other, children: fab }); }); process.env.NODE_ENV !== "production" ? SpeedDialAction.propTypes /* remove-proptypes */ = { // ┌────────────────────────────── Warning ──────────────────────────────┐ // │ These PropTypes are generated from the TypeScript type definitions. │ // │ To update them, edit the d.ts file and run `pnpm proptypes`. │ // └─────────────────────────────────────────────────────────────────────┘ /** * Override or extend the styles applied to the component. */ classes: _propTypes.default.object, /** * @ignore */ className: _propTypes.default.string, /** * Adds a transition delay, to allow a series of SpeedDialActions to be animated. * @default 0 */ delay: _propTypes.default.number, /** * Props applied to the [`Fab`](https://mui.com/material-ui/api/fab/) component. * @default {} */ FabProps: _propTypes.default.object, /** * The icon to display in the SpeedDial Fab. */ icon: _propTypes.default.node, /** * This prop is used to help implement the accessibility logic. * If you don't provide this prop. It falls back to a randomly generated id. */ id: _propTypes.default.string, /** * If `true`, the component is shown. */ open: _propTypes.default.bool, /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object]), /** * `classes` prop applied to the [`Tooltip`](https://mui.com/material-ui/api/tooltip/) element. */ TooltipClasses: _propTypes.default.object, /** * Make the tooltip always visible when the SpeedDial is open. * @default false */ tooltipOpen: _propTypes.default.bool, /** * Placement of the tooltip. * @default 'left' */ tooltipPlacement: _propTypes.default.oneOf(['bottom-end', 'bottom-start', 'bottom', 'left-end', 'left-start', 'left', 'right-end', 'right-start', 'right', 'top-end', 'top-start', 'top']), /** * Label to display in the tooltip. */ tooltipTitle: _propTypes.default.node } : void 0; var _default = exports.default = SpeedDialAction;