forked from mrzachnugent/react-native-reusables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoggle-group.tsx
187 lines (173 loc) · 4.29 KB
/
toggle-group.tsx
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
import { useColorScheme } from 'nativewind';
import React from 'react';
import {
GestureResponderEvent,
Pressable,
StyleSheet,
View,
ViewStyle,
} from 'react-native';
import { cn } from '~/lib/utils';
import { Button, buttonVariants } from '~/components/ui/button';
interface ToggleGroupProps {
defaultValue?: string | string[];
onValueChange?: (value: string | string[]) => void;
disabled?: boolean;
type?: 'single' | 'multiple';
}
interface ToggleGroupContext {
value: string | string[];
setValue: React.Dispatch<React.SetStateAction<string | string[]>>;
onValueChange?: (value: string | string[]) => void;
disabled: boolean;
}
const ToggleGroupContext = React.createContext({} as ToggleGroupContext);
const ToggleGroup = React.forwardRef<
React.ElementRef<typeof View>,
React.ComponentPropsWithoutRef<typeof View> & ToggleGroupProps
>(
(
{
defaultValue = '',
onValueChange,
className,
disabled = false,
type = 'single',
...props
},
ref
) => {
const [value, setValue] = React.useState(
type === 'single'
? defaultValue
: Array.isArray(defaultValue)
? defaultValue
: []
);
return (
<ToggleGroupContext.Provider
value={{
value,
setValue,
disabled,
onValueChange,
}}
>
<View
role={type === 'single' ? 'radiogroup' : 'group'}
ref={ref}
className={cn('flex-row gap-3', className)}
{...props}
/>
</ToggleGroupContext.Provider>
);
}
);
ToggleGroup.displayName = 'ToggleGroup';
function useToggleGroupContext() {
const context = React.useContext(ToggleGroupContext);
if (!context) {
throw new Error(
'ToggleGroup compound components cannot be rendered outside the ToggleGroup component'
);
}
return context;
}
const ToggleGroupItem = React.forwardRef<
React.ElementRef<typeof Button>,
Omit<React.ComponentPropsWithoutRef<typeof Button>, 'disabled' | 'style'> & {
name: string;
buttonClass?: string;
children?: React.ReactNode;
style?: ViewStyle;
}
>(
(
{
className,
name,
buttonClass,
onPress,
children,
variant = 'default',
size,
style,
...props
},
ref
) => {
const { value, setValue, disabled, onValueChange } =
useToggleGroupContext();
const { colorScheme } = useColorScheme();
function handleOnPress(ev: GestureResponderEvent) {
setValue((prev) => {
if (typeof prev === 'string') {
const newVal = prev === name ? '' : name;
onValueChange?.(newVal);
return newVal;
}
if (prev.includes(name)) {
const newVal = prev.filter((v) => v !== name);
onValueChange?.(newVal);
return newVal;
}
const newVal = [...prev, name];
onValueChange?.(newVal);
return newVal;
});
onPress?.(ev);
}
const isSelected = Array.isArray(value)
? value.includes(name)
: value === name;
return (
<Pressable
disabled={disabled}
onPress={handleOnPress}
className={buttonClass}
accessibilityState={{ selected: value === name }}
role={typeof name === 'string' ? 'radio' : 'switch'}
ref={ref}
{...props}
>
{({ pressed }) => (
<View
className={cn(
'border bg-background',
pressed ? 'opacity-70' : '',
isSelected ? 'border-border' : 'border-transparent',
buttonVariants({
variant: isSelected
? 'secondary'
: variant === 'default'
? 'ghost'
: 'outline',
size,
className,
})
)}
style={[
isSelected && colorScheme === 'dark' && styles.shadowDark,
style,
]}
>
{children}
</View>
)}
</Pressable>
);
}
);
export { ToggleGroup, ToggleGroupItem };
const styles = StyleSheet.create({
shadowDark: {
shadowColor: '#FFFFFF',
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.05,
shadowRadius: 8,
elevation: 2,
},
});