[5d6f37a] | 1 | import { alpha, Theme } from '@mui/material/styles';
|
---|
| 2 | import { ChipProps, chipClasses } from '@mui/material/Chip';
|
---|
| 3 |
|
---|
| 4 | // ----------------------------------------------------------------------
|
---|
| 5 |
|
---|
| 6 | const COLORS = ['primary', 'secondary', 'info', 'success', 'warning', 'error'] as const;
|
---|
| 7 |
|
---|
| 8 | // NEW VARIANT
|
---|
| 9 | declare module '@mui/material/Chip' {
|
---|
| 10 | interface ChipPropsVariantOverrides {
|
---|
| 11 | soft: true;
|
---|
| 12 | }
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | // ----------------------------------------------------------------------
|
---|
| 16 |
|
---|
| 17 | export function chip(theme: Theme) {
|
---|
| 18 | const lightMode = theme.palette.mode === 'light';
|
---|
| 19 |
|
---|
| 20 | const rootStyles = (ownerState: ChipProps) => {
|
---|
| 21 | const defaultColor = ownerState.color === 'default';
|
---|
| 22 |
|
---|
| 23 | const filledVariant = ownerState.variant === 'filled';
|
---|
| 24 |
|
---|
| 25 | const outlinedVariant = ownerState.variant === 'outlined';
|
---|
| 26 |
|
---|
| 27 | const softVariant = ownerState.variant === 'soft';
|
---|
| 28 |
|
---|
| 29 | const defaultStyle = {
|
---|
| 30 | [`& .${chipClasses.deleteIcon}`]: {
|
---|
| 31 | opacity: 0.48,
|
---|
| 32 | color: 'currentColor',
|
---|
| 33 | '&:hover': {
|
---|
| 34 | opacity: 1,
|
---|
| 35 | color: 'currentColor',
|
---|
| 36 | },
|
---|
| 37 | },
|
---|
| 38 |
|
---|
| 39 | ...(defaultColor && {
|
---|
| 40 | [`& .${chipClasses.avatar}`]: {
|
---|
| 41 | color: theme.palette.text.primary,
|
---|
| 42 | },
|
---|
| 43 | // FILLED
|
---|
| 44 | ...(filledVariant && {
|
---|
| 45 | color: lightMode ? theme.palette.common.white : theme.palette.grey[800],
|
---|
| 46 | backgroundColor: theme.palette.text.primary,
|
---|
| 47 | '&:hover': {
|
---|
| 48 | backgroundColor: lightMode ? theme.palette.grey[700] : theme.palette.grey[100],
|
---|
| 49 | },
|
---|
| 50 | [`& .${chipClasses.icon}`]: {
|
---|
| 51 | color: lightMode ? theme.palette.common.white : theme.palette.grey[800],
|
---|
| 52 | },
|
---|
| 53 | }),
|
---|
| 54 | // OUTLINED
|
---|
| 55 | ...(outlinedVariant && {
|
---|
| 56 | border: `solid 1px ${alpha(theme.palette.grey[500], 0.32)}`,
|
---|
| 57 | }),
|
---|
| 58 | // SOFT
|
---|
| 59 | ...(softVariant && {
|
---|
| 60 | color: theme.palette.text.primary,
|
---|
| 61 | backgroundColor: alpha(theme.palette.grey[500], 0.16),
|
---|
| 62 | '&:hover': {
|
---|
| 63 | backgroundColor: alpha(theme.palette.grey[500], 0.32),
|
---|
| 64 | },
|
---|
| 65 | }),
|
---|
| 66 | }),
|
---|
| 67 | };
|
---|
| 68 |
|
---|
| 69 | const colorStyle = COLORS.map((color) => ({
|
---|
| 70 | ...(ownerState.color === color && {
|
---|
| 71 | [`& .${chipClasses.avatar}`]: {
|
---|
| 72 | color: theme.palette[color].lighter,
|
---|
| 73 | backgroundColor: theme.palette[color].dark,
|
---|
| 74 | },
|
---|
| 75 | // SOFT
|
---|
| 76 | ...(softVariant && {
|
---|
| 77 | color: theme.palette[color][lightMode ? 'dark' : 'light'],
|
---|
| 78 | backgroundColor: alpha(theme.palette[color].main, 0.16),
|
---|
| 79 | '&:hover': {
|
---|
| 80 | backgroundColor: alpha(theme.palette[color].main, 0.32),
|
---|
| 81 | },
|
---|
| 82 | }),
|
---|
| 83 | }),
|
---|
| 84 | }));
|
---|
| 85 |
|
---|
| 86 | const disabledState = {
|
---|
| 87 | [`&.${chipClasses.disabled}`]: {
|
---|
| 88 | opacity: 1,
|
---|
| 89 | color: theme.palette.action.disabled,
|
---|
| 90 | [`& .${chipClasses.icon}`]: {
|
---|
| 91 | color: theme.palette.action.disabled,
|
---|
| 92 | },
|
---|
| 93 | [`& .${chipClasses.avatar}`]: {
|
---|
| 94 | color: theme.palette.action.disabled,
|
---|
| 95 | backgroundColor: theme.palette.action.disabledBackground,
|
---|
| 96 | },
|
---|
| 97 | // FILLED
|
---|
| 98 | ...(filledVariant && {
|
---|
| 99 | backgroundColor: theme.palette.action.disabledBackground,
|
---|
| 100 | }),
|
---|
| 101 | // OUTLINED
|
---|
| 102 | ...(outlinedVariant && {
|
---|
| 103 | borderColor: theme.palette.action.disabledBackground,
|
---|
| 104 | }),
|
---|
| 105 | // SOFT
|
---|
| 106 | ...(softVariant && {
|
---|
| 107 | backgroundColor: theme.palette.action.disabledBackground,
|
---|
| 108 | }),
|
---|
| 109 | },
|
---|
| 110 | };
|
---|
| 111 |
|
---|
| 112 | return [
|
---|
| 113 | defaultStyle,
|
---|
| 114 | ...colorStyle,
|
---|
| 115 | disabledState,
|
---|
| 116 | {
|
---|
| 117 | fontWeight: 500,
|
---|
| 118 | borderRadius: theme.shape.borderRadius,
|
---|
| 119 | },
|
---|
| 120 | ];
|
---|
| 121 | };
|
---|
| 122 |
|
---|
| 123 | return {
|
---|
| 124 | MuiChip: {
|
---|
| 125 | styleOverrides: {
|
---|
| 126 | root: ({ ownerState }: { ownerState: ChipProps }) => rootStyles(ownerState),
|
---|
| 127 | },
|
---|
| 128 | },
|
---|
| 129 | };
|
---|
| 130 | }
|
---|