forked from callstack/react-native-paper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckbox.tsx
More file actions
330 lines (314 loc) · 8.62 KB
/
Copy pathCheckbox.tsx
File metadata and controls
330 lines (314 loc) · 8.62 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
import * as React from 'react';
import {
Animated,
ColorValue,
GestureResponderEvent,
Pressable,
StyleSheet,
View,
} from 'react-native';
import { CheckboxTokens } from './tokens';
import { getSelectionVisualState } from './utils';
import { useInternalTheme } from '../../core/theming';
import { tokens } from '../../theme/tokens';
import type { ThemeProp } from '../../types';
import useAnimatedValue from '../../utils/useAnimatedValue';
import { useFocusVisible } from '../../utils/useFocusVisible';
export type Props = {
/**
* Status of checkbox.
*/
status: 'checked' | 'unchecked' | 'indeterminate';
/**
* Whether checkbox is disabled.
*/
disabled?: boolean;
/**
* Function to execute on press.
*/
onPress?: (e: GestureResponderEvent) => void;
/**
* Custom color for unchecked checkbox.
*/
uncheckedColor?: ColorValue;
/**
* Custom color for checkbox.
*/
color?: ColorValue;
/**
* Whether the checkbox is in an error state. When true, the outline
* (unchecked) and container (selected) use `theme.colors.error`.
* `disabled` and explicit `color`/`uncheckedColor` overrides take
* precedence.
*/
error?: boolean;
/**
* @optional
*/
theme?: ThemeProp;
/**
* testID to be used on tests.
*/
testID?: string;
};
const { focusIndicator } = tokens.md.sys.state;
/**
* Checkboxes allow the selection of multiple options from a set.
*
* ## Usage
* ```js
* import * as React from 'react';
* import { Checkbox } from 'react-native-paper';
*
* const MyComponent = () => {
* const [checked, setChecked] = React.useState(false);
*
* return (
* <Checkbox
* status={checked ? 'checked' : 'unchecked'}
* onPress={() => {
* setChecked(!checked);
* }}
* />
* );
* };
*
* export default MyComponent;
* ```
*/
const Checkbox = ({
status,
theme: themeOverrides,
disabled,
onPress,
testID,
error,
color,
uncheckedColor,
}: Props) => {
const theme = useInternalTheme(themeOverrides);
const { focusVisible, onFocus, onBlur } = useFocusVisible();
const [hovered, setHovered] = React.useState(false);
const [pressed, setPressed] = React.useState(false);
const selected = status === 'checked' || status === 'indeterminate';
const {
animation: { scale },
} = theme;
// 0 = unselected (outline only), 1 = selected (filled + drawn icon).
const fillAnim = useAnimatedValue(selected ? 1 : 0);
const checkAnim = useAnimatedValue(selected ? 1 : 0);
const firstRender = React.useRef(true);
React.useEffect(() => {
if (firstRender.current) {
firstRender.current = false;
return;
}
Animated.timing(fillAnim, {
toValue: selected ? 1 : 0,
duration: CheckboxTokens.fillDuration * scale,
useNativeDriver: true,
}).start();
Animated.timing(checkAnim, {
toValue: selected ? 1 : 0,
duration: CheckboxTokens.checkDuration * scale,
useNativeDriver: false,
}).start();
}, [selected, fillAnim, checkAnim, scale]);
const visual = getSelectionVisualState({
theme,
selected,
disabled,
hovered,
pressed,
error,
customColor: color,
customUncheckedColor: uncheckedColor,
});
// Outline fades out as fill fades in (and vice versa).
const outlineOpacity = fillAnim.interpolate({
inputRange: [0, 1],
outputRange: [1, 0],
});
// Remember which glyph to render so the reveal-mask can still collapse
// when transitioning back to 'unchecked' (selected becomes false, but
// we keep showing the previous glyph until checkAnim hits 0).
const lastGlyph = React.useRef<'check' | 'indeterminate'>('check');
if (status === 'checked') lastGlyph.current = 'check';
else if (status === 'indeterminate') lastGlyph.current = 'indeterminate';
const showIndeterminate = lastGlyph.current === 'indeterminate';
return (
<Pressable
onPress={onPress}
onFocus={onFocus}
onBlur={onBlur}
onHoverIn={() => setHovered(true)}
onHoverOut={() => setHovered(false)}
onPressIn={() => setPressed(true)}
onPressOut={() => setPressed(false)}
disabled={disabled}
accessibilityRole="checkbox"
accessibilityState={{
disabled,
checked: status === 'indeterminate' ? 'mixed' : status === 'checked',
}}
accessibilityLiveRegion="polite"
testID={testID}
style={styles.tapTarget}
>
<View
pointerEvents="none"
style={[
styles.stateLayer,
{
backgroundColor: visual.stateLayerColor,
opacity: visual.stateLayerOpacity,
},
]}
/>
{focusVisible && !disabled ? (
<View
pointerEvents="none"
style={[
styles.focusRing,
{
borderColor: theme.colors[CheckboxTokens.focusIndicatorColor],
borderWidth: focusIndicator.thickness,
},
]}
/>
) : null}
<View
pointerEvents="none"
style={[styles.container, { opacity: visual.containerOpacity }]}
>
<Animated.View
style={[
styles.outline,
{ borderColor: visual.outlineColor, opacity: outlineOpacity },
]}
/>
<Animated.View
style={[
styles.fill,
{ backgroundColor: visual.containerColor, opacity: fillAnim },
]}
/>
<RevealMask progress={checkAnim}>
{showIndeterminate ? (
<View
style={[styles.dash, { backgroundColor: visual.iconColor }]}
/>
) : (
<View
style={[styles.checkmarkGlyph, { borderColor: visual.iconColor }]}
/>
)}
</RevealMask>
</View>
</Pressable>
);
};
/**
* Reveal-mask wrapper: animates its width from 0 -> containerSize so the
* child glyph "draws in" left-to-right, approximating Compose Material3's
* stroke-fraction animation without an SVG dependency.
*/
const RevealMask = ({
progress,
children,
}: {
progress: Animated.Value;
children: React.ReactNode;
}) => {
const maskWidth = progress.interpolate({
inputRange: [0, 1],
outputRange: [0, CheckboxTokens.containerSize],
});
return (
<Animated.View
style={[styles.checkmarkMask, { width: maskWidth, opacity: progress }]}
>
<View style={styles.checkmarkContent}>{children}</View>
</Animated.View>
);
};
const styles = StyleSheet.create({
tapTarget: {
width: CheckboxTokens.stateLayerSize,
height: CheckboxTokens.stateLayerSize,
alignItems: 'center',
justifyContent: 'center',
},
stateLayer: {
position: 'absolute',
top: 0,
left: 0,
width: CheckboxTokens.stateLayerSize,
height: CheckboxTokens.stateLayerSize,
borderRadius: CheckboxTokens.stateLayerSize / 2,
},
focusRing: {
position: 'absolute',
top: -focusIndicator.outerOffset,
left: -focusIndicator.outerOffset,
width: CheckboxTokens.stateLayerSize + focusIndicator.outerOffset * 2,
height: CheckboxTokens.stateLayerSize + focusIndicator.outerOffset * 2,
borderRadius:
(CheckboxTokens.stateLayerSize + focusIndicator.outerOffset * 2) / 2,
},
container: {
width: CheckboxTokens.containerSize,
height: CheckboxTokens.containerSize,
borderRadius: CheckboxTokens.containerRadius,
alignItems: 'center',
justifyContent: 'center',
overflow: 'hidden',
},
fill: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
borderRadius: CheckboxTokens.containerRadius,
},
outline: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
borderWidth: CheckboxTokens.outlineWidth,
borderRadius: CheckboxTokens.containerRadius,
},
dash: {
width: CheckboxTokens.indeterminateWidth,
height: CheckboxTokens.indeterminateHeight,
borderRadius: CheckboxTokens.indeterminateRadius,
},
checkmarkMask: {
position: 'absolute',
left: 0,
top: 0,
height: CheckboxTokens.containerSize,
overflow: 'hidden',
},
checkmarkContent: {
width: CheckboxTokens.containerSize,
height: CheckboxTokens.containerSize,
alignItems: 'center',
justifyContent: 'center',
},
checkmarkGlyph: {
width: CheckboxTokens.checkmarkWidth,
height: CheckboxTokens.checkmarkHeight,
borderLeftWidth: CheckboxTokens.checkmarkStrokeWidth,
borderBottomWidth: CheckboxTokens.checkmarkStrokeWidth,
transform: [{ rotate: '-45deg' }, { translateY: -1 }, { translateX: 1 }],
},
});
export default Checkbox;
// @component-docs ignore-next-line
const CheckboxWithTheme = Checkbox;
// @component-docs ignore-next-line
export { CheckboxWithTheme as Checkbox };