source: src/theme/overrides/components/button.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: 3.9 KB
Line 
1import { alpha, Theme } from '@mui/material/styles';
2import { ButtonProps, buttonClasses } from '@mui/material/Button';
3
4// ----------------------------------------------------------------------
5
6const COLORS = ['primary', 'secondary', 'info', 'success', 'warning', 'error'] as const;
7
8// NEW VARIANT
9declare module '@mui/material/Button' {
10 interface ButtonPropsVariantOverrides {
11 soft: true;
12 }
13}
14
15// ----------------------------------------------------------------------
16
17export function button(theme: Theme) {
18 const lightMode = theme.palette.mode === 'light';
19
20 const rootStyles = (ownerState: ButtonProps) => {
21 const inheritColor = ownerState.color === 'inherit';
22
23 const containedVariant = ownerState.variant === 'contained';
24
25 const outlinedVariant = ownerState.variant === 'outlined';
26
27 const textVariant = ownerState.variant === 'text';
28
29 const softVariant = ownerState.variant === 'soft';
30
31 const smallSize = ownerState.size === 'small';
32
33 const mediumSize = ownerState.size === 'medium';
34
35 const largeSize = ownerState.size === 'large';
36
37 const defaultStyle = {
38 ...(inheritColor && {
39 // CONTAINED
40 ...(containedVariant && {
41 color: lightMode ? theme.palette.common.white : theme.palette.grey[800],
42 backgroundColor: lightMode ? theme.palette.grey[800] : theme.palette.common.white,
43 '&:hover': {
44 backgroundColor: lightMode ? theme.palette.grey[700] : theme.palette.grey[400],
45 },
46 }),
47 // OUTLINED
48 ...(outlinedVariant && {
49 borderColor: alpha(theme.palette.grey[500], 0.32),
50 '&:hover': {
51 backgroundColor: theme.palette.action.hover,
52 },
53 }),
54 // TEXT
55 ...(textVariant && {
56 '&:hover': {
57 backgroundColor: theme.palette.action.hover,
58 },
59 }),
60 // SOFT
61 ...(softVariant && {
62 color: theme.palette.text.primary,
63 backgroundColor: alpha(theme.palette.grey[500], 0.08),
64 '&:hover': {
65 backgroundColor: alpha(theme.palette.grey[500], 0.24),
66 },
67 }),
68 }),
69 ...(outlinedVariant && {
70 '&:hover': {
71 borderColor: 'currentColor',
72 boxShadow: '0 0 0 0.5px currentColor',
73 },
74 }),
75 };
76
77 const colorStyle = COLORS.map((color) => ({
78 ...(ownerState.color === color && {
79 // CONTAINED
80 ...(containedVariant && {
81 '&:hover': {
82 boxShadow: theme.customShadows[color],
83 },
84 }),
85 // SOFT
86 ...(softVariant && {
87 color: theme.palette[color][lightMode ? 'dark' : 'light'],
88 backgroundColor: alpha(theme.palette[color].main, 0.16),
89 '&:hover': {
90 backgroundColor: alpha(theme.palette[color].main, 0.32),
91 },
92 }),
93 }),
94 }));
95
96 const disabledState = {
97 [`&.${buttonClasses.disabled}`]: {
98 // SOFT
99 ...(softVariant && {
100 backgroundColor: theme.palette.action.disabledBackground,
101 }),
102 },
103 };
104
105 const size = {
106 ...(smallSize && {
107 height: 30,
108 fontSize: 13,
109 paddingLeft: 8,
110 paddingRight: 8,
111 ...(textVariant && {
112 paddingLeft: 4,
113 paddingRight: 4,
114 }),
115 }),
116 ...(mediumSize && {
117 paddingLeft: 12,
118 paddingRight: 12,
119 ...(textVariant && {
120 paddingLeft: 8,
121 paddingRight: 8,
122 }),
123 }),
124 ...(largeSize && {
125 height: 48,
126 fontSize: 15,
127 paddingLeft: 16,
128 paddingRight: 16,
129 ...(textVariant && {
130 paddingLeft: 10,
131 paddingRight: 10,
132 }),
133 }),
134 };
135
136 return [defaultStyle, ...colorStyle, disabledState, size];
137 };
138
139 return {
140 MuiButton: {
141 styleOverrides: {
142 root: ({ ownerState }: { ownerState: ButtonProps }) => rootStyles(ownerState),
143 },
144 },
145 };
146}
Note: See TracBrowser for help on using the repository browser.