-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathToggleButton.tsx
187 lines (176 loc) · 4.3 KB
/
ToggleButton.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 * as React from 'react';
import {
GestureResponderEvent,
StyleProp,
StyleSheet,
ViewStyle,
View,
Animated,
ColorValue,
} from 'react-native';
import color from 'color';
import { ToggleButtonGroupContext } from './ToggleButtonGroup';
import { getToggleButtonColor } from './utils';
import { useInternalTheme } from '../../core/theming';
import { black, white } from '../../styles/themes/v2/colors';
import type { ThemeProp } from '../../types';
import { forwardRef } from '../../utils/forwardRef';
import type { IconSource } from '../Icon';
import IconButton from '../IconButton/IconButton';
export type Props = {
/**
* Icon to display for the `ToggleButton`.
*/
icon: IconSource;
/**
* Size of the icon.
*/
size?: number;
/**
* Custom text color for button.
*/
iconColor?: string;
/**
* Color of the ripple effect.
*/
rippleColor?: ColorValue;
/**
* Whether the button is disabled.
*/
disabled?: boolean;
/**
* Accessibility label for the `ToggleButton`. This is read by the screen reader when the user taps the button.
*/
accessibilityLabel?: string;
/**
* Function to execute on press.
*/
onPress?: (value?: GestureResponderEvent | string) => void;
/**
* Value of button.
*/
value?: string;
/**
* Status of button.
*/
status?: 'checked' | 'unchecked';
style?: Animated.WithAnimatedValue<StyleProp<ViewStyle>>;
/**
* @optional
*/
theme?: ThemeProp;
ref?: React.RefObject<View>;
/**
* testID to be used on tests.
*/
testID?: string;
};
/**
* Toggle buttons can be used to group related options. To emphasize groups of related toggle buttons,
* a group should share a common container.
*
* ## Usage
* ```js
* import * as React from 'react';
* import { ToggleButton } from 'react-native-paper';
*
* const ToggleButtonExample = () => {
* const [status, setStatus] = React.useState('checked');
*
* const onButtonToggle = value => {
* setStatus(status === 'checked' ? 'unchecked' : 'checked');
* };
*
* return (
* <ToggleButton
* icon="bluetooth"
* value="bluetooth"
* status={status}
* onPress={onButtonToggle}
* />
* );
* };
*
* export default ToggleButtonExample;
*
* ```
*/
const ToggleButton = forwardRef<View, Props>(
(
{
icon,
size,
theme: themeOverrides,
accessibilityLabel,
disabled,
style,
value,
status,
onPress,
rippleColor,
...rest
}: Props,
ref
) => {
const theme = useInternalTheme(themeOverrides);
const borderRadius = theme.roundness;
return (
<ToggleButtonGroupContext.Consumer>
{(
context: { value: string | null; onValueChange: Function } | null
) => {
const checked: boolean | null =
(context && context.value === value) || status === 'checked';
const backgroundColor = getToggleButtonColor({ theme, checked });
const borderColor = theme.isV3
? theme.colors.outline
: color(theme.dark ? white : black)
.alpha(0.29)
.rgb()
.string();
return (
<IconButton
borderless={false}
icon={icon}
onPress={(e?: GestureResponderEvent | string) => {
if (onPress) {
onPress(e);
}
if (context) {
context.onValueChange(!checked ? value : null);
}
}}
size={size}
accessibilityLabel={accessibilityLabel}
accessibilityState={{ disabled, selected: checked }}
disabled={disabled}
style={[
styles.content,
{
backgroundColor,
borderRadius,
borderColor,
},
style,
]}
ref={ref}
theme={theme}
rippleColor={rippleColor}
{...rest}
/>
);
}}
</ToggleButtonGroupContext.Consumer>
);
}
);
const styles = StyleSheet.create({
content: {
width: 42,
height: 42,
margin: 0,
},
});
export default ToggleButton;
// @component-docs ignore-next-line
export { ToggleButton };