source: src/theme/overrides/components/fab.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 5.0 KB
Line 
1import { alpha, Theme } from '@mui/material/styles';
2import { FabProps, fabClasses } from '@mui/material/Fab';
3
4// ----------------------------------------------------------------------
5
6const COLORS = ['primary', 'secondary', 'info', 'success', 'warning', 'error'] as const;
7
8// NEW VARIANT
9declare module '@mui/material/Fab' {
10 interface FabPropsVariantOverrides {
11 outlined: true;
12 outlinedExtended: true;
13 soft: true;
14 softExtended: true;
15 }
16}
17
18// ----------------------------------------------------------------------
19
20export function fab(theme: Theme) {
21 const lightMode = theme.palette.mode === 'light';
22
23 const rootStyles = (ownerState: FabProps) => {
24 const defaultColor = ownerState.color === 'default';
25
26 const inheritColor = ownerState.color === 'inherit';
27
28 const circularVariant = ownerState.variant === 'circular';
29
30 const extendedVariant = ownerState.variant === 'extended';
31
32 const outlinedVariant = ownerState.variant === 'outlined';
33
34 const outlinedExtendedVariant = ownerState.variant === 'outlinedExtended';
35
36 const softVariant = ownerState.variant === 'soft';
37
38 const softExtendedVariant = ownerState.variant === 'softExtended';
39
40 const defaultStyle = {
41 '&:hover, &:active': {
42 boxShadow: 'none',
43 },
44 // FILLED
45 ...((circularVariant || extendedVariant) && {
46 ...((defaultColor || inheritColor) && {
47 boxShadow: theme.customShadows.z8,
48 }),
49 ...(inheritColor && {
50 backgroundColor: theme.palette.text.primary,
51 color: lightMode ? theme.palette.common.white : theme.palette.grey[800],
52 '&:hover': {
53 backgroundColor: lightMode ? theme.palette.grey[700] : theme.palette.grey[400],
54 },
55 }),
56 }),
57 // OUTLINED
58 ...((outlinedVariant || outlinedExtendedVariant) && {
59 boxShadow: 'none',
60 backgroundColor: 'transparent',
61 ...((defaultColor || inheritColor) && {
62 border: `solid 1px ${alpha(theme.palette.grey[500], 0.32)}`,
63 }),
64 ...(defaultColor && {
65 ...(!lightMode && {
66 color: theme.palette.text.secondary,
67 }),
68 }),
69
70 '&:hover': {
71 borderColor: 'currentColor',
72 boxShadow: '0 0 0 0.5px currentColor',
73 backgroundColor: theme.palette.action.hover,
74 },
75 }),
76 // SOFT
77 ...((softVariant || softExtendedVariant) && {
78 boxShadow: 'none',
79 ...(defaultColor && {
80 color: theme.palette.grey[800],
81 backgroundColor: theme.palette.grey[300],
82 '&:hover': {
83 backgroundColor: theme.palette.grey[400],
84 },
85 }),
86 ...(inheritColor && {
87 backgroundColor: alpha(theme.palette.grey[500], 0.08),
88 '&:hover': {
89 backgroundColor: alpha(theme.palette.grey[500], 0.24),
90 },
91 }),
92 }),
93 };
94
95 const colorStyle = COLORS.map((color) => ({
96 ...(ownerState.color === color && {
97 // FILLED
98 ...((circularVariant || extendedVariant) && {
99 boxShadow: theme.customShadows[color],
100 '&:hover': {
101 backgroundColor: theme.palette[color].dark,
102 },
103 }),
104 // OUTLINED
105 ...((outlinedVariant || outlinedExtendedVariant) && {
106 color: theme.palette[color].main,
107 border: `solid 1px ${alpha(theme.palette[color].main, 0.48)}`,
108 '&:hover': {
109 backgroundColor: alpha(theme.palette[color].main, 0.08),
110 },
111 }),
112 // SOFT
113 ...((softVariant || softExtendedVariant) && {
114 color: theme.palette[color][lightMode ? 'dark' : 'light'],
115 backgroundColor: alpha(theme.palette[color].main, 0.16),
116 '&:hover': {
117 backgroundColor: alpha(theme.palette[color].main, 0.32),
118 },
119 }),
120 }),
121 }));
122
123 const disabledState = {
124 [`&.${fabClasses.disabled}`]: {
125 ...((outlinedVariant || outlinedExtendedVariant) && {
126 backgroundColor: 'transparent',
127 border: `solid 1px ${theme.palette.action.disabledBackground}`,
128 }),
129 },
130 };
131
132 const size = {
133 ...((extendedVariant || outlinedExtendedVariant || softExtendedVariant) && {
134 width: 'auto',
135 '& svg': {
136 marginRight: theme.spacing(1),
137 },
138 ...(ownerState.size === 'small' && {
139 height: 34,
140 minHeight: 34,
141 borderRadius: 17,
142 padding: theme.spacing(0, 1),
143 }),
144 ...(ownerState.size === 'medium' && {
145 height: 40,
146 minHeight: 40,
147 borderRadius: 20,
148 padding: theme.spacing(0, 2),
149 }),
150 ...(ownerState.size === 'large' && {
151 height: 48,
152 minHeight: 48,
153 borderRadius: 24,
154 padding: theme.spacing(0, 2),
155 }),
156 }),
157 };
158
159 return [defaultStyle, ...colorStyle, disabledState, size];
160 };
161
162 return {
163 MuiFab: {
164 styleOverrides: {
165 root: ({ ownerState }: { ownerState: FabProps }) => rootStyles(ownerState),
166 },
167 },
168 };
169}
Note: See TracBrowser for help on using the repository browser.