You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
246 lines
8.0 KiB
JavaScript
246 lines
8.0 KiB
JavaScript
'use client';
|
|
|
|
// @inheritedComponent Tooltip
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
const _excluded = ["className", "delay", "FabProps", "icon", "id", "open", "TooltipClasses", "tooltipOpen", "tooltipPlacement", "tooltipTitle"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import clsx from 'clsx';
|
|
import { unstable_composeClasses as composeClasses } from '@mui/base/composeClasses';
|
|
import { emphasize } from '@mui/system';
|
|
import styled from '../styles/styled';
|
|
import useThemeProps from '../styles/useThemeProps';
|
|
import Fab from '../Fab';
|
|
import Tooltip from '../Tooltip';
|
|
import capitalize from '../utils/capitalize';
|
|
import speedDialActionClasses, { getSpeedDialActionUtilityClass } from './speedDialActionClasses';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
open,
|
|
tooltipPlacement,
|
|
classes
|
|
} = ownerState;
|
|
const slots = {
|
|
fab: ['fab', !open && 'fabClosed'],
|
|
staticTooltip: ['staticTooltip', `tooltipPlacement${capitalize(tooltipPlacement)}`, !open && 'staticTooltipClosed'],
|
|
staticTooltipLabel: ['staticTooltipLabel']
|
|
};
|
|
return composeClasses(slots, getSpeedDialActionUtilityClass, classes);
|
|
};
|
|
const SpeedDialActionFab = styled(Fab, {
|
|
name: 'MuiSpeedDialAction',
|
|
slot: 'Fab',
|
|
skipVariantsResolver: false,
|
|
overridesResolver: (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.fab, !ownerState.open && styles.fabClosed];
|
|
}
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => _extends({
|
|
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 : emphasize(theme.palette.background.paper, 0.15)
|
|
},
|
|
transition: `${theme.transitions.create('transform', {
|
|
duration: theme.transitions.duration.shorter
|
|
})}, opacity 0.8s`,
|
|
opacity: 1
|
|
}, !ownerState.open && {
|
|
opacity: 0,
|
|
transform: 'scale(0)'
|
|
}));
|
|
const SpeedDialActionStaticTooltip = styled('span', {
|
|
name: 'MuiSpeedDialAction',
|
|
slot: 'StaticTooltip',
|
|
overridesResolver: (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [styles.staticTooltip, !ownerState.open && styles.staticTooltipClosed, styles[`tooltipPlacement${capitalize(ownerState.tooltipPlacement)}`]];
|
|
}
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => ({
|
|
position: 'relative',
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
[`& .${speedDialActionClasses.staticTooltipLabel}`]: _extends({
|
|
transition: theme.transitions.create(['transform', 'opacity'], {
|
|
duration: theme.transitions.duration.shorter
|
|
}),
|
|
opacity: 1
|
|
}, !ownerState.open && {
|
|
opacity: 0,
|
|
transform: 'scale(0.5)'
|
|
}, ownerState.tooltipPlacement === 'left' && {
|
|
transformOrigin: '100% 50%',
|
|
right: '100%',
|
|
marginRight: 8
|
|
}, ownerState.tooltipPlacement === 'right' && {
|
|
transformOrigin: '0% 50%',
|
|
left: '100%',
|
|
marginLeft: 8
|
|
})
|
|
}));
|
|
const SpeedDialActionStaticTooltipLabel = styled('span', {
|
|
name: 'MuiSpeedDialAction',
|
|
slot: 'StaticTooltipLabel',
|
|
overridesResolver: (props, styles) => styles.staticTooltipLabel
|
|
})(({
|
|
theme
|
|
}) => _extends({
|
|
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 = useThemeProps({
|
|
props: inProps,
|
|
name: 'MuiSpeedDialAction'
|
|
});
|
|
const {
|
|
className,
|
|
delay = 0,
|
|
FabProps = {},
|
|
icon,
|
|
id,
|
|
open,
|
|
TooltipClasses,
|
|
tooltipOpen: tooltipOpenProp = false,
|
|
tooltipPlacement = 'left',
|
|
tooltipTitle
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const ownerState = _extends({}, 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__*/_jsx(SpeedDialActionFab, _extends({
|
|
size: "small",
|
|
className: clsx(classes.fab, className),
|
|
tabIndex: -1,
|
|
role: "menuitem",
|
|
ownerState: ownerState
|
|
}, FabProps, {
|
|
style: _extends({}, transitionStyle, FabProps.style),
|
|
children: icon
|
|
}));
|
|
if (tooltipOpenProp) {
|
|
return /*#__PURE__*/_jsxs(SpeedDialActionStaticTooltip, _extends({
|
|
id: id,
|
|
ref: ref,
|
|
className: classes.staticTooltip,
|
|
ownerState: ownerState
|
|
}, other, {
|
|
children: [/*#__PURE__*/_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__*/_jsx(Tooltip, _extends({
|
|
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.object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* Adds a transition delay, to allow a series of SpeedDialActions to be animated.
|
|
* @default 0
|
|
*/
|
|
delay: PropTypes.number,
|
|
/**
|
|
* Props applied to the [`Fab`](/material-ui/api/fab/) component.
|
|
* @default {}
|
|
*/
|
|
FabProps: PropTypes.object,
|
|
/**
|
|
* The icon to display in the SpeedDial Fab.
|
|
*/
|
|
icon: PropTypes.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.string,
|
|
/**
|
|
* If `true`, the component is shown.
|
|
*/
|
|
open: PropTypes.bool,
|
|
/**
|
|
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
*/
|
|
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
/**
|
|
* `classes` prop applied to the [`Tooltip`](/material-ui/api/tooltip/) element.
|
|
*/
|
|
TooltipClasses: PropTypes.object,
|
|
/**
|
|
* Make the tooltip always visible when the SpeedDial is open.
|
|
* @default false
|
|
*/
|
|
tooltipOpen: PropTypes.bool,
|
|
/**
|
|
* Placement of the tooltip.
|
|
* @default 'left'
|
|
*/
|
|
tooltipPlacement: PropTypes.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.node
|
|
} : void 0;
|
|
export default SpeedDialAction; |