1 | // @mui
|
---|
2 | import { alpha, useTheme } from '@mui/material/styles';
|
---|
3 | import Box from '@mui/material/Box';
|
---|
4 | import Stack from '@mui/material/Stack';
|
---|
5 | import ButtonBase from '@mui/material/ButtonBase';
|
---|
6 |
|
---|
7 | // ----------------------------------------------------------------------
|
---|
8 |
|
---|
9 | type Props = {
|
---|
10 | options: string[];
|
---|
11 | value: string;
|
---|
12 | onChange: (newValue: string) => void;
|
---|
13 | };
|
---|
14 |
|
---|
15 | export default function LayoutOptions({ options, value, onChange }: Props) {
|
---|
16 | const theme = useTheme();
|
---|
17 |
|
---|
18 | const renderNav = (option: string, selected: boolean) => {
|
---|
19 | const background = `linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`;
|
---|
20 |
|
---|
21 | const baseStyles = {
|
---|
22 | flexShrink: 0,
|
---|
23 | borderRadius: 0.5,
|
---|
24 | bgcolor: 'grey.500',
|
---|
25 | };
|
---|
26 |
|
---|
27 | const circle = (
|
---|
28 | <Box
|
---|
29 | sx={{
|
---|
30 | ...baseStyles,
|
---|
31 | width: 8,
|
---|
32 | height: 8,
|
---|
33 | ...(selected && { background }),
|
---|
34 | }}
|
---|
35 | />
|
---|
36 | );
|
---|
37 |
|
---|
38 | const primaryItem = (
|
---|
39 | <Box
|
---|
40 | sx={{
|
---|
41 | ...baseStyles,
|
---|
42 | width: 1,
|
---|
43 | height: 3,
|
---|
44 | opacity: 0.48,
|
---|
45 | ...(option === 'horizontal' && {
|
---|
46 | width: 12,
|
---|
47 | }),
|
---|
48 | ...(selected && { background }),
|
---|
49 | }}
|
---|
50 | />
|
---|
51 | );
|
---|
52 |
|
---|
53 | const secondaryItem = (
|
---|
54 | <Box
|
---|
55 | sx={{
|
---|
56 | ...baseStyles,
|
---|
57 | width: 1,
|
---|
58 | height: 3,
|
---|
59 | maxWidth: 12,
|
---|
60 | opacity: 0.24,
|
---|
61 | ...(option === 'horizontal' && {
|
---|
62 | width: 8,
|
---|
63 | }),
|
---|
64 | ...(selected && { background }),
|
---|
65 | }}
|
---|
66 | />
|
---|
67 | );
|
---|
68 |
|
---|
69 | return (
|
---|
70 | <Stack
|
---|
71 | spacing={0.5}
|
---|
72 | flexShrink={0}
|
---|
73 | direction={option === 'horizontal' ? 'row' : 'column'}
|
---|
74 | sx={{
|
---|
75 | p: 0.5,
|
---|
76 | width: 28,
|
---|
77 | height: 1,
|
---|
78 | borderRight: `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
---|
79 | ...(option === 'mini' && {
|
---|
80 | width: 16,
|
---|
81 | }),
|
---|
82 | ...(option === 'horizontal' && {
|
---|
83 | width: 1,
|
---|
84 | height: 16,
|
---|
85 | alignItems: 'center',
|
---|
86 | borderRight: 'unset',
|
---|
87 | borderBottom: `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
---|
88 | }),
|
---|
89 | }}
|
---|
90 | >
|
---|
91 | {circle}
|
---|
92 | {primaryItem}
|
---|
93 | {secondaryItem}
|
---|
94 | </Stack>
|
---|
95 | );
|
---|
96 | };
|
---|
97 |
|
---|
98 | const renderContent = (selected: boolean) => (
|
---|
99 | <Box sx={{ p: 0.5, flexGrow: 1, height: 1, width: 1 }}>
|
---|
100 | <Box
|
---|
101 | sx={{
|
---|
102 | width: 1,
|
---|
103 | height: 1,
|
---|
104 | opacity: 0.08,
|
---|
105 | borderRadius: 0.5,
|
---|
106 | bgcolor: 'grey.500',
|
---|
107 | ...(selected && {
|
---|
108 | opacity: 0.24,
|
---|
109 | background: `linear-gradient(135deg, ${theme.palette.primary.light} 0%, ${theme.palette.primary.main} 100%)`,
|
---|
110 | }),
|
---|
111 | }}
|
---|
112 | />
|
---|
113 | </Box>
|
---|
114 | );
|
---|
115 |
|
---|
116 | return (
|
---|
117 | <Stack direction="row" spacing={2}>
|
---|
118 | {options.map((option) => {
|
---|
119 | const selected = value === option;
|
---|
120 |
|
---|
121 | return (
|
---|
122 | <ButtonBase
|
---|
123 | key={option}
|
---|
124 | onClick={() => onChange(option)}
|
---|
125 | sx={{
|
---|
126 | p: 0,
|
---|
127 | width: 1,
|
---|
128 | height: 56,
|
---|
129 | borderRadius: 1,
|
---|
130 | border: `solid 1px ${alpha(theme.palette.grey[500], 0.08)}`,
|
---|
131 | ...(selected && {
|
---|
132 | bgcolor: 'background.paper',
|
---|
133 | boxShadow: `-24px 8px 24px -4px ${alpha(
|
---|
134 | theme.palette.mode === 'light'
|
---|
135 | ? theme.palette.grey[500]
|
---|
136 | : theme.palette.common.black,
|
---|
137 | 0.08
|
---|
138 | )}`,
|
---|
139 | }),
|
---|
140 | ...(option === 'horizontal' && {
|
---|
141 | flexDirection: 'column',
|
---|
142 | }),
|
---|
143 | }}
|
---|
144 | >
|
---|
145 | {renderNav(option, selected)}
|
---|
146 | {renderContent(selected)}
|
---|
147 | </ButtonBase>
|
---|
148 | );
|
---|
149 | })}
|
---|
150 | </Stack>
|
---|
151 | );
|
---|
152 | }
|
---|