[5d6f37a] | 1 | import { Theme, alpha } from '@mui/material/styles';
|
---|
| 2 | import { AlertProps, alertClasses } from '@mui/material/Alert';
|
---|
| 3 |
|
---|
| 4 | // ----------------------------------------------------------------------
|
---|
| 5 |
|
---|
| 6 | const COLORS = ['info', 'success', 'warning', 'error'] as const;
|
---|
| 7 |
|
---|
| 8 | // ----------------------------------------------------------------------
|
---|
| 9 |
|
---|
| 10 | export function alert(theme: Theme) {
|
---|
| 11 | const lightMode = theme.palette.mode === 'light';
|
---|
| 12 |
|
---|
| 13 | const rootStyles = (ownerState: AlertProps) => {
|
---|
| 14 | const standardVariant = ownerState.variant === 'standard';
|
---|
| 15 |
|
---|
| 16 | const filledVariant = ownerState.variant === 'filled';
|
---|
| 17 |
|
---|
| 18 | const outlinedVariant = ownerState.variant === 'outlined';
|
---|
| 19 |
|
---|
| 20 | const colorStyle = COLORS.map((color) => ({
|
---|
| 21 | ...(ownerState.severity === color && {
|
---|
| 22 | // STANDARD
|
---|
| 23 | ...(standardVariant && {
|
---|
| 24 | color: theme.palette[color][lightMode ? 'darker' : 'lighter'],
|
---|
| 25 | backgroundColor: theme.palette[color][lightMode ? 'lighter' : 'darker'],
|
---|
| 26 | [`& .${alertClasses.icon}`]: {
|
---|
| 27 | color: theme.palette[color][lightMode ? 'main' : 'light'],
|
---|
| 28 | },
|
---|
| 29 | }),
|
---|
| 30 | // FILLED
|
---|
| 31 | ...(filledVariant && {
|
---|
| 32 | color: theme.palette[color].contrastText,
|
---|
| 33 | backgroundColor: theme.palette[color].main,
|
---|
| 34 | }),
|
---|
| 35 | // OUTLINED
|
---|
| 36 | ...(outlinedVariant && {
|
---|
| 37 | backgroundColor: alpha(theme.palette[color].main, 0.08),
|
---|
| 38 | color: theme.palette[color][lightMode ? 'dark' : 'light'],
|
---|
| 39 | border: `solid 1px ${alpha(theme.palette[color].main, 0.16)}`,
|
---|
| 40 | [`& .${alertClasses.icon}`]: {
|
---|
| 41 | color: theme.palette[color].main,
|
---|
| 42 | },
|
---|
| 43 | }),
|
---|
| 44 | }),
|
---|
| 45 | }));
|
---|
| 46 |
|
---|
| 47 | return [...colorStyle];
|
---|
| 48 | };
|
---|
| 49 |
|
---|
| 50 | return {
|
---|
| 51 | MuiAlert: {
|
---|
| 52 | styleOverrides: {
|
---|
| 53 | root: ({ ownerState }: { ownerState: AlertProps }) => rootStyles(ownerState),
|
---|
| 54 | icon: {
|
---|
| 55 | opacity: 1,
|
---|
| 56 | },
|
---|
| 57 | },
|
---|
| 58 | },
|
---|
| 59 | MuiAlertTitle: {
|
---|
| 60 | styleOverrides: {
|
---|
| 61 | root: {
|
---|
| 62 | marginBottom: theme.spacing(0.5),
|
---|
| 63 | fontWeight: theme.typography.fontWeightSemiBold,
|
---|
| 64 | },
|
---|
| 65 | },
|
---|
| 66 | },
|
---|
| 67 | };
|
---|
| 68 | }
|
---|