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.
293 lines
12 KiB
JavaScript
293 lines
12 KiB
JavaScript
'use client';
|
|
|
|
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
const _excluded = ["children", "className", "color", "component", "disabled", "disableElevation", "disableFocusRipple", "disableRipple", "fullWidth", "orientation", "size", "variant"];
|
|
import * as React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import clsx from 'clsx';
|
|
import { unstable_composeClasses as composeClasses } from '@mui/base/composeClasses';
|
|
import { alpha } from '@mui/system';
|
|
import { getValidReactChildren } from '@mui/utils';
|
|
import capitalize from '../utils/capitalize';
|
|
import styled from '../styles/styled';
|
|
import useThemeProps from '../styles/useThemeProps';
|
|
import buttonGroupClasses, { getButtonGroupUtilityClass } from './buttonGroupClasses';
|
|
import ButtonGroupContext from './ButtonGroupContext';
|
|
import ButtonGroupButtonContext from './ButtonGroupButtonContext';
|
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
const overridesResolver = (props, styles) => {
|
|
const {
|
|
ownerState
|
|
} = props;
|
|
return [{
|
|
[`& .${buttonGroupClasses.grouped}`]: styles.grouped
|
|
}, {
|
|
[`& .${buttonGroupClasses.grouped}`]: styles[`grouped${capitalize(ownerState.orientation)}`]
|
|
}, {
|
|
[`& .${buttonGroupClasses.grouped}`]: styles[`grouped${capitalize(ownerState.variant)}`]
|
|
}, {
|
|
[`& .${buttonGroupClasses.grouped}`]: styles[`grouped${capitalize(ownerState.variant)}${capitalize(ownerState.orientation)}`]
|
|
}, {
|
|
[`& .${buttonGroupClasses.grouped}`]: styles[`grouped${capitalize(ownerState.variant)}${capitalize(ownerState.color)}`]
|
|
}, {
|
|
[`& .${buttonGroupClasses.firstButton}`]: styles.firstButton
|
|
}, {
|
|
[`& .${buttonGroupClasses.lastButton}`]: styles.lastButton
|
|
}, {
|
|
[`& .${buttonGroupClasses.middleButton}`]: styles.middleButton
|
|
}, styles.root, styles[ownerState.variant], ownerState.disableElevation === true && styles.disableElevation, ownerState.fullWidth && styles.fullWidth, ownerState.orientation === 'vertical' && styles.vertical];
|
|
};
|
|
const useUtilityClasses = ownerState => {
|
|
const {
|
|
classes,
|
|
color,
|
|
disabled,
|
|
disableElevation,
|
|
fullWidth,
|
|
orientation,
|
|
variant
|
|
} = ownerState;
|
|
const slots = {
|
|
root: ['root', variant, orientation === 'vertical' && 'vertical', fullWidth && 'fullWidth', disableElevation && 'disableElevation'],
|
|
grouped: ['grouped', `grouped${capitalize(orientation)}`, `grouped${capitalize(variant)}`, `grouped${capitalize(variant)}${capitalize(orientation)}`, `grouped${capitalize(variant)}${capitalize(color)}`, disabled && 'disabled'],
|
|
firstButton: ['firstButton'],
|
|
lastButton: ['lastButton'],
|
|
middleButton: ['middleButton']
|
|
};
|
|
return composeClasses(slots, getButtonGroupUtilityClass, classes);
|
|
};
|
|
const ButtonGroupRoot = styled('div', {
|
|
name: 'MuiButtonGroup',
|
|
slot: 'Root',
|
|
overridesResolver
|
|
})(({
|
|
theme,
|
|
ownerState
|
|
}) => _extends({
|
|
display: 'inline-flex',
|
|
borderRadius: (theme.vars || theme).shape.borderRadius
|
|
}, ownerState.variant === 'contained' && {
|
|
boxShadow: (theme.vars || theme).shadows[2]
|
|
}, ownerState.disableElevation && {
|
|
boxShadow: 'none'
|
|
}, ownerState.fullWidth && {
|
|
width: '100%'
|
|
}, ownerState.orientation === 'vertical' && {
|
|
flexDirection: 'column'
|
|
}, {
|
|
[`& .${buttonGroupClasses.grouped}`]: _extends({
|
|
minWidth: 40,
|
|
'&:hover': _extends({}, ownerState.variant === 'contained' && {
|
|
boxShadow: 'none'
|
|
})
|
|
}, ownerState.variant === 'contained' && {
|
|
boxShadow: 'none'
|
|
}),
|
|
[`& .${buttonGroupClasses.firstButton},& .${buttonGroupClasses.middleButton}`]: _extends({}, ownerState.orientation === 'horizontal' && {
|
|
borderTopRightRadius: 0,
|
|
borderBottomRightRadius: 0
|
|
}, ownerState.orientation === 'vertical' && {
|
|
borderBottomRightRadius: 0,
|
|
borderBottomLeftRadius: 0
|
|
}, ownerState.variant === 'text' && ownerState.orientation === 'horizontal' && {
|
|
borderRight: theme.vars ? `1px solid rgba(${theme.vars.palette.common.onBackgroundChannel} / 0.23)` : `1px solid ${theme.palette.mode === 'light' ? 'rgba(0, 0, 0, 0.23)' : 'rgba(255, 255, 255, 0.23)'}`,
|
|
[`&.${buttonGroupClasses.disabled}`]: {
|
|
borderRight: `1px solid ${(theme.vars || theme).palette.action.disabled}`
|
|
}
|
|
}, ownerState.variant === 'text' && ownerState.orientation === 'vertical' && {
|
|
borderBottom: theme.vars ? `1px solid rgba(${theme.vars.palette.common.onBackgroundChannel} / 0.23)` : `1px solid ${theme.palette.mode === 'light' ? 'rgba(0, 0, 0, 0.23)' : 'rgba(255, 255, 255, 0.23)'}`,
|
|
[`&.${buttonGroupClasses.disabled}`]: {
|
|
borderBottom: `1px solid ${(theme.vars || theme).palette.action.disabled}`
|
|
}
|
|
}, ownerState.variant === 'text' && ownerState.color !== 'inherit' && {
|
|
borderColor: theme.vars ? `rgba(${theme.vars.palette[ownerState.color].mainChannel} / 0.5)` : alpha(theme.palette[ownerState.color].main, 0.5)
|
|
}, ownerState.variant === 'outlined' && ownerState.orientation === 'horizontal' && {
|
|
borderRightColor: 'transparent'
|
|
}, ownerState.variant === 'outlined' && ownerState.orientation === 'vertical' && {
|
|
borderBottomColor: 'transparent'
|
|
}, ownerState.variant === 'contained' && ownerState.orientation === 'horizontal' && {
|
|
borderRight: `1px solid ${(theme.vars || theme).palette.grey[400]}`,
|
|
[`&.${buttonGroupClasses.disabled}`]: {
|
|
borderRight: `1px solid ${(theme.vars || theme).palette.action.disabled}`
|
|
}
|
|
}, ownerState.variant === 'contained' && ownerState.orientation === 'vertical' && {
|
|
borderBottom: `1px solid ${(theme.vars || theme).palette.grey[400]}`,
|
|
[`&.${buttonGroupClasses.disabled}`]: {
|
|
borderBottom: `1px solid ${(theme.vars || theme).palette.action.disabled}`
|
|
}
|
|
}, ownerState.variant === 'contained' && ownerState.color !== 'inherit' && {
|
|
borderColor: (theme.vars || theme).palette[ownerState.color].dark
|
|
}, {
|
|
'&:hover': _extends({}, ownerState.variant === 'outlined' && ownerState.orientation === 'horizontal' && {
|
|
borderRightColor: 'currentColor'
|
|
}, ownerState.variant === 'outlined' && ownerState.orientation === 'vertical' && {
|
|
borderBottomColor: 'currentColor'
|
|
})
|
|
}),
|
|
[`& .${buttonGroupClasses.lastButton},& .${buttonGroupClasses.middleButton}`]: _extends({}, ownerState.orientation === 'horizontal' && {
|
|
borderTopLeftRadius: 0,
|
|
borderBottomLeftRadius: 0
|
|
}, ownerState.orientation === 'vertical' && {
|
|
borderTopRightRadius: 0,
|
|
borderTopLeftRadius: 0
|
|
}, ownerState.variant === 'outlined' && ownerState.orientation === 'horizontal' && {
|
|
marginLeft: -1
|
|
}, ownerState.variant === 'outlined' && ownerState.orientation === 'vertical' && {
|
|
marginTop: -1
|
|
})
|
|
}));
|
|
const ButtonGroup = /*#__PURE__*/React.forwardRef(function ButtonGroup(inProps, ref) {
|
|
const props = useThemeProps({
|
|
props: inProps,
|
|
name: 'MuiButtonGroup'
|
|
});
|
|
const {
|
|
children,
|
|
className,
|
|
color = 'primary',
|
|
component = 'div',
|
|
disabled = false,
|
|
disableElevation = false,
|
|
disableFocusRipple = false,
|
|
disableRipple = false,
|
|
fullWidth = false,
|
|
orientation = 'horizontal',
|
|
size = 'medium',
|
|
variant = 'outlined'
|
|
} = props,
|
|
other = _objectWithoutPropertiesLoose(props, _excluded);
|
|
const ownerState = _extends({}, props, {
|
|
color,
|
|
component,
|
|
disabled,
|
|
disableElevation,
|
|
disableFocusRipple,
|
|
disableRipple,
|
|
fullWidth,
|
|
orientation,
|
|
size,
|
|
variant
|
|
});
|
|
const classes = useUtilityClasses(ownerState);
|
|
const context = React.useMemo(() => ({
|
|
className: classes.grouped,
|
|
color,
|
|
disabled,
|
|
disableElevation,
|
|
disableFocusRipple,
|
|
disableRipple,
|
|
fullWidth,
|
|
size,
|
|
variant
|
|
}), [color, disabled, disableElevation, disableFocusRipple, disableRipple, fullWidth, size, variant, classes.grouped]);
|
|
const validChildren = getValidReactChildren(children);
|
|
const childrenCount = validChildren.length;
|
|
const getButtonPositionClassName = index => {
|
|
const isFirstButton = index === 0;
|
|
const isLastButton = index === childrenCount - 1;
|
|
if (isFirstButton && isLastButton) {
|
|
return '';
|
|
}
|
|
if (isFirstButton) {
|
|
return classes.firstButton;
|
|
}
|
|
if (isLastButton) {
|
|
return classes.lastButton;
|
|
}
|
|
return classes.middleButton;
|
|
};
|
|
return /*#__PURE__*/_jsx(ButtonGroupRoot, _extends({
|
|
as: component,
|
|
role: "group",
|
|
className: clsx(classes.root, className),
|
|
ref: ref,
|
|
ownerState: ownerState
|
|
}, other, {
|
|
children: /*#__PURE__*/_jsx(ButtonGroupContext.Provider, {
|
|
value: context,
|
|
children: validChildren.map((child, index) => {
|
|
return /*#__PURE__*/_jsx(ButtonGroupButtonContext.Provider, {
|
|
value: getButtonPositionClassName(index),
|
|
children: child
|
|
}, index);
|
|
})
|
|
})
|
|
}));
|
|
});
|
|
process.env.NODE_ENV !== "production" ? ButtonGroup.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`. │
|
|
// └─────────────────────────────────────────────────────────────────────┘
|
|
/**
|
|
* The content of the component.
|
|
*/
|
|
children: PropTypes.node,
|
|
/**
|
|
* Override or extend the styles applied to the component.
|
|
*/
|
|
classes: PropTypes.object,
|
|
/**
|
|
* @ignore
|
|
*/
|
|
className: PropTypes.string,
|
|
/**
|
|
* The color of the component.
|
|
* It supports both default and custom theme colors, which can be added as shown in the
|
|
* [palette customization guide](https://mui.com/material-ui/customization/palette/#custom-colors).
|
|
* @default 'primary'
|
|
*/
|
|
color: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['inherit', 'primary', 'secondary', 'error', 'info', 'success', 'warning']), PropTypes.string]),
|
|
/**
|
|
* The component used for the root node.
|
|
* Either a string to use a HTML element or a component.
|
|
*/
|
|
component: PropTypes.elementType,
|
|
/**
|
|
* If `true`, the component is disabled.
|
|
* @default false
|
|
*/
|
|
disabled: PropTypes.bool,
|
|
/**
|
|
* If `true`, no elevation is used.
|
|
* @default false
|
|
*/
|
|
disableElevation: PropTypes.bool,
|
|
/**
|
|
* If `true`, the button keyboard focus ripple is disabled.
|
|
* @default false
|
|
*/
|
|
disableFocusRipple: PropTypes.bool,
|
|
/**
|
|
* If `true`, the button ripple effect is disabled.
|
|
* @default false
|
|
*/
|
|
disableRipple: PropTypes.bool,
|
|
/**
|
|
* If `true`, the buttons will take up the full width of its container.
|
|
* @default false
|
|
*/
|
|
fullWidth: PropTypes.bool,
|
|
/**
|
|
* The component orientation (layout flow direction).
|
|
* @default 'horizontal'
|
|
*/
|
|
orientation: PropTypes.oneOf(['horizontal', 'vertical']),
|
|
/**
|
|
* The size of the component.
|
|
* `small` is equivalent to the dense button styling.
|
|
* @default 'medium'
|
|
*/
|
|
size: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['small', 'medium', 'large']), PropTypes.string]),
|
|
/**
|
|
* 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]),
|
|
/**
|
|
* The variant to use.
|
|
* @default 'outlined'
|
|
*/
|
|
variant: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([PropTypes.oneOf(['contained', 'outlined', 'text']), PropTypes.string])
|
|
} : void 0;
|
|
export default ButtonGroup; |