-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathhelpers.tsx
More file actions
217 lines (186 loc) · 4.36 KB
/
helpers.tsx
File metadata and controls
217 lines (186 loc) · 4.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import type { ColorValue, StyleProp, ViewStyle } from 'react-native';
import color from 'color';
import type { InternalTheme, MD3Theme } from '../../types';
const md3 = (theme: InternalTheme) => theme as MD3Theme;
export type ChipAvatarProps = {
style?: StyleProp<ViewStyle>;
};
type BaseProps = {
theme: InternalTheme;
isOutlined: boolean;
disabled?: boolean;
};
const getBorderColor = ({
theme,
isOutlined,
disabled,
selectedColor,
backgroundColor: _backgroundColor,
}: BaseProps & { backgroundColor: string; selectedColor?: string }) => {
const isSelectedColor = selectedColor !== undefined;
const { colors } = md3(theme);
if (!isOutlined) {
// If the Chip mode is "flat", set border color to transparent
return 'transparent';
}
if (disabled) {
return color(colors.onSurfaceVariant).alpha(0.12).rgb().string();
}
if (isSelectedColor) {
return color(selectedColor).alpha(0.29).rgb().string();
}
return colors.outline;
};
const getTextColor = ({
theme,
isOutlined,
disabled,
selectedColor,
}: BaseProps & {
selectedColor?: string;
}) => {
const isSelectedColor = selectedColor !== undefined;
const { colors } = md3(theme);
if (disabled) {
return colors.onSurfaceDisabled;
}
if (isSelectedColor) {
return selectedColor;
}
if (isOutlined) {
return colors.onSurfaceVariant;
}
return colors.onSecondaryContainer;
};
const getDefaultBackgroundColor = ({
theme,
isOutlined,
}: Omit<BaseProps, 'disabled' | 'selectedColor'>) => {
const { colors } = md3(theme);
if (isOutlined) {
return colors.surface;
}
return colors.secondaryContainer;
};
const getBackgroundColor = ({
theme,
isOutlined,
disabled,
customBackgroundColor,
}: BaseProps & {
customBackgroundColor?: ColorValue;
}) => {
const { colors } = md3(theme);
if (typeof customBackgroundColor === 'string') {
return customBackgroundColor;
}
if (disabled) {
if (isOutlined) {
return 'transparent';
}
return color(colors.onSurfaceVariant).alpha(0.12).rgb().string();
}
return getDefaultBackgroundColor({ theme, isOutlined });
};
const getSelectedBackgroundColor = ({
theme,
isOutlined,
disabled,
customBackgroundColor,
showSelectedOverlay,
}: BaseProps & {
customBackgroundColor?: ColorValue;
showSelectedOverlay?: boolean;
}) => {
const { colors } = md3(theme);
const backgroundColor = getBackgroundColor({
theme,
disabled,
isOutlined,
customBackgroundColor,
});
if (isOutlined) {
if (showSelectedOverlay) {
return color(backgroundColor)
.mix(color(colors.onSurfaceVariant), 0.12)
.rgb()
.string();
}
return color(backgroundColor)
.mix(color(colors.onSurfaceVariant), 0)
.rgb()
.string();
}
if (showSelectedOverlay) {
return color(backgroundColor)
.mix(color(colors.onSecondaryContainer), 0.12)
.rgb()
.string();
}
return color(backgroundColor)
.mix(color(colors.onSecondaryContainer), 0)
.rgb()
.string();
};
const getIconColor = ({
theme,
isOutlined,
disabled,
selectedColor,
}: BaseProps & {
selectedColor?: string;
}) => {
const isSelectedColor = selectedColor !== undefined;
const { colors } = md3(theme);
if (disabled) {
return colors.onSurfaceDisabled;
}
if (isSelectedColor) {
return selectedColor;
}
if (isOutlined) {
return colors.onSurfaceVariant;
}
return colors.onSecondaryContainer;
};
export const getChipColors = ({
isOutlined,
theme,
selectedColor,
showSelectedOverlay,
customBackgroundColor,
disabled,
}: BaseProps & {
customBackgroundColor?: ColorValue;
disabled?: boolean;
showSelectedOverlay?: boolean;
selectedColor?: string;
}) => {
const baseChipColorProps = { theme, isOutlined, disabled };
const backgroundColor = getBackgroundColor({
...baseChipColorProps,
customBackgroundColor,
});
const selectedBackgroundColor = getSelectedBackgroundColor({
...baseChipColorProps,
customBackgroundColor,
showSelectedOverlay,
});
return {
borderColor: getBorderColor({
...baseChipColorProps,
selectedColor,
backgroundColor,
}),
textColor: getTextColor({
...baseChipColorProps,
selectedColor,
}),
iconColor: getIconColor({
...baseChipColorProps,
selectedColor,
}),
backgroundColor,
selectedBackgroundColor,
};
};