[5d6f37a] | 1 | import { alpha, Theme } from '@mui/material/styles';
|
---|
| 2 | import { ButtonGroupProps, buttonGroupClasses } from '@mui/material/ButtonGroup';
|
---|
| 3 |
|
---|
| 4 | // ----------------------------------------------------------------------
|
---|
| 5 |
|
---|
| 6 | const COLORS = ['primary', 'secondary', 'info', 'success', 'warning', 'error'] as const;
|
---|
| 7 |
|
---|
| 8 | // NEW VARIANT
|
---|
| 9 | declare module '@mui/material/ButtonGroup' {
|
---|
| 10 | interface ButtonGroupPropsVariantOverrides {
|
---|
| 11 | soft: true;
|
---|
| 12 | }
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | // ----------------------------------------------------------------------
|
---|
| 16 |
|
---|
| 17 | export function buttonGroup(theme: Theme) {
|
---|
| 18 | const rootStyles = (ownerState: ButtonGroupProps) => {
|
---|
| 19 | const inheritColor = ownerState.color === 'inherit';
|
---|
| 20 |
|
---|
| 21 | const containedVariant = ownerState.variant === 'contained';
|
---|
| 22 |
|
---|
| 23 | const outlinedVariant = ownerState.variant === 'outlined';
|
---|
| 24 |
|
---|
| 25 | const textVariant = ownerState.variant === 'text';
|
---|
| 26 |
|
---|
| 27 | const softVariant = ownerState.variant === 'soft';
|
---|
| 28 |
|
---|
| 29 | const horizontalOrientation = ownerState.orientation === 'horizontal';
|
---|
| 30 |
|
---|
| 31 | const verticalOrientation = ownerState.orientation === 'vertical';
|
---|
| 32 |
|
---|
| 33 | const defaultStyle = {
|
---|
| 34 | [`& .${buttonGroupClasses.grouped}`]: {
|
---|
| 35 | '&:not(:last-of-type)': {
|
---|
| 36 | ...(!outlinedVariant && {
|
---|
| 37 | borderStyle: 'solid',
|
---|
| 38 | ...(inheritColor && {
|
---|
| 39 | borderColor: alpha(theme.palette.grey[500], 0.32),
|
---|
| 40 | }),
|
---|
| 41 | // HORIZONTAL
|
---|
| 42 | ...(horizontalOrientation && {
|
---|
| 43 | borderWidth: '0px 1px 0px 0px',
|
---|
| 44 | }),
|
---|
| 45 | // VERTICAL
|
---|
| 46 | ...(verticalOrientation && {
|
---|
| 47 | borderWidth: '0px 0px 1px 0px',
|
---|
| 48 | }),
|
---|
| 49 | }),
|
---|
| 50 | },
|
---|
| 51 | },
|
---|
| 52 | };
|
---|
| 53 |
|
---|
| 54 | const colorStyle = COLORS.map((color) => ({
|
---|
| 55 | [`& .${buttonGroupClasses.grouped}`]: {
|
---|
| 56 | '&:not(:last-of-type)': {
|
---|
| 57 | ...(!outlinedVariant && {
|
---|
| 58 | ...(ownerState.color === color && {
|
---|
| 59 | // CONTAINED
|
---|
| 60 | ...(containedVariant && {
|
---|
| 61 | borderColor: alpha(theme.palette[color].dark, 0.48),
|
---|
| 62 | }),
|
---|
| 63 | // TEXT
|
---|
| 64 | ...(textVariant && {
|
---|
| 65 | borderColor: alpha(theme.palette[color].main, 0.48),
|
---|
| 66 | }),
|
---|
| 67 | // SOFT
|
---|
| 68 | ...(softVariant && {
|
---|
| 69 | borderColor: alpha(theme.palette[color].dark, 0.24),
|
---|
| 70 | }),
|
---|
| 71 | }),
|
---|
| 72 | }),
|
---|
| 73 | },
|
---|
| 74 | },
|
---|
| 75 | }));
|
---|
| 76 |
|
---|
| 77 | const disabledState = {
|
---|
| 78 | [`& .${buttonGroupClasses.grouped}`]: {
|
---|
| 79 | [`&.${buttonGroupClasses.disabled}`]: {
|
---|
| 80 | '&:not(:last-of-type)': {
|
---|
| 81 | borderColor: theme.palette.action.disabledBackground,
|
---|
| 82 | },
|
---|
| 83 | },
|
---|
| 84 | },
|
---|
| 85 | };
|
---|
| 86 |
|
---|
| 87 | return [defaultStyle, ...colorStyle, disabledState];
|
---|
| 88 | };
|
---|
| 89 |
|
---|
| 90 | return {
|
---|
| 91 | MuiButtonGroup: {
|
---|
| 92 | styleOverrides: {
|
---|
| 93 | root: ({ ownerState }: { ownerState: ButtonGroupProps }) => rootStyles(ownerState),
|
---|
| 94 | },
|
---|
| 95 | },
|
---|
| 96 | };
|
---|
| 97 | }
|
---|