[5d6f37a] | 1 | import { alpha, Theme } from '@mui/material/styles';
|
---|
| 2 | import { PaginationProps } from '@mui/material/Pagination';
|
---|
| 3 | import { paginationItemClasses } from '@mui/material/PaginationItem';
|
---|
| 4 |
|
---|
| 5 | // ----------------------------------------------------------------------
|
---|
| 6 |
|
---|
| 7 | const COLORS = ['primary', 'secondary', 'info', 'success', 'warning', 'error'] as const;
|
---|
| 8 |
|
---|
| 9 | // NEW VARIANT
|
---|
| 10 | declare module '@mui/material/Pagination' {
|
---|
| 11 | interface PaginationPropsVariantOverrides {
|
---|
| 12 | soft: true;
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | interface PaginationPropsColorOverrides {
|
---|
| 16 | info: true;
|
---|
| 17 | success: true;
|
---|
| 18 | warning: true;
|
---|
| 19 | error: true;
|
---|
| 20 | }
|
---|
| 21 | }
|
---|
| 22 |
|
---|
| 23 | // ----------------------------------------------------------------------
|
---|
| 24 |
|
---|
| 25 | export function pagination(theme: Theme) {
|
---|
| 26 | const lightMode = theme.palette.mode === 'light';
|
---|
| 27 |
|
---|
| 28 | const rootStyles = (ownerState: PaginationProps) => {
|
---|
| 29 | const defaultColor = ownerState.color === 'standard';
|
---|
| 30 |
|
---|
| 31 | const filledVariant = ownerState.variant === 'text';
|
---|
| 32 |
|
---|
| 33 | const outlinedVariant = ownerState.variant === 'outlined';
|
---|
| 34 |
|
---|
| 35 | const softVariant = ownerState.variant === 'soft';
|
---|
| 36 |
|
---|
| 37 | const defaultStyle = {
|
---|
| 38 | [`& .${paginationItemClasses.root}`]: {
|
---|
| 39 | ...(outlinedVariant && {
|
---|
| 40 | borderColor: alpha(theme.palette.grey[500], 0.24),
|
---|
| 41 | }),
|
---|
| 42 |
|
---|
| 43 | [`&.${paginationItemClasses.selected}`]: {
|
---|
| 44 | fontWeight: theme.typography.fontWeightSemiBold,
|
---|
| 45 | ...(outlinedVariant && {
|
---|
| 46 | borderColor: 'currentColor',
|
---|
| 47 | }),
|
---|
| 48 |
|
---|
| 49 | ...(defaultColor && {
|
---|
| 50 | backgroundColor: alpha(theme.palette.grey[500], 0.08),
|
---|
| 51 | ...(filledVariant && {
|
---|
| 52 | color: lightMode ? theme.palette.common.white : theme.palette.grey[800],
|
---|
| 53 | backgroundColor: theme.palette.text.primary,
|
---|
| 54 | '&:hover': {
|
---|
| 55 | backgroundColor: lightMode ? theme.palette.grey[700] : theme.palette.grey[100],
|
---|
| 56 | },
|
---|
| 57 | }),
|
---|
| 58 | }),
|
---|
| 59 | },
|
---|
| 60 | },
|
---|
| 61 | };
|
---|
| 62 |
|
---|
| 63 | const colorStyle = COLORS.map((color) => ({
|
---|
| 64 | ...(ownerState.color === color && {
|
---|
| 65 | [`& .${paginationItemClasses.root}`]: {
|
---|
| 66 | [`&.${paginationItemClasses.selected}`]: {
|
---|
| 67 | ...(ownerState.color === color && {
|
---|
| 68 | // SOFT
|
---|
| 69 | ...(softVariant && {
|
---|
| 70 | color: theme.palette[color][lightMode ? 'dark' : 'light'],
|
---|
| 71 | backgroundColor: alpha(theme.palette[color].main, 0.08),
|
---|
| 72 | '&:hover': {
|
---|
| 73 | backgroundColor: alpha(theme.palette[color].main, 0.16),
|
---|
| 74 | },
|
---|
| 75 | }),
|
---|
| 76 | }),
|
---|
| 77 | },
|
---|
| 78 | },
|
---|
| 79 | }),
|
---|
| 80 | }));
|
---|
| 81 |
|
---|
| 82 | return [defaultStyle, ...colorStyle];
|
---|
| 83 | };
|
---|
| 84 |
|
---|
| 85 | return {
|
---|
| 86 | MuiPagination: {
|
---|
| 87 | styleOverrides: {
|
---|
| 88 | root: ({ ownerState }: { ownerState: PaginationProps }) => rootStyles(ownerState),
|
---|
| 89 | },
|
---|
| 90 | },
|
---|
| 91 | };
|
---|
| 92 | }
|
---|