-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathindex.tsx
More file actions
273 lines (258 loc) · 6.24 KB
/
index.tsx
File metadata and controls
273 lines (258 loc) · 6.24 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
import React, { useEffect } from 'react';
import {
Pressable,
StyleSheet,
Text,
TextStyle,
View,
ViewStyle,
} from 'react-native';
import Animated, {
useAnimatedStyle,
useSharedValue,
withSpring,
} from 'react-native-reanimated';
import { widthPercentageToDP } from 'react-native-responsive-screen';
interface SegmentedControlProps {
/**
* The Segments Text Array
*/
segments: Array<string>;
/**
* The Current Active Segment Index
*/
currentIndex: number;
/**
* A callback onPress of a Segment
*/
onChange: (index: number) => void;
/**
* An array of Badge Values corresponding to the Segment
*/
badgeValues?: Array<number | null>;
/**
* Is right-to-left mode.
*/
isRTL?: boolean;
/**
* The container margin for the segmented control
* Used to calculate the width of Segmented Control
*/
containerMargin?: number;
/**
* Active Segment Text Style
*/
activeTextStyle?: TextStyle;
/**
* InActive Segment Text Style
*/
inactiveTextStyle?: TextStyle;
/**
* Segment Container Styles
*/
segmentedControlWrapper?: ViewStyle;
/**
* Pressable Container Styles
*/
pressableWrapper?: ViewStyle;
/**
* The moving Tile Container Styles
*/
tileStyle?: ViewStyle;
/**
* Active Badge Styles
*/
activeBadgeStyle?: ViewStyle;
/**
* Inactive Badge Styles
*/
inactiveBadgeStyle?: ViewStyle;
/**
* Badge Text Styles
*/
badgeTextStyle?: TextStyle;
}
const defaultShadowStyle = {
shadowColor: '#000',
shadowOffset: {
width: 1,
height: 1,
},
shadowOpacity: 0.025,
shadowRadius: 1,
elevation: 1,
};
const DEFAULT_SPRING_CONFIG = {
stiffness: 150,
damping: 20,
mass: 1,
overshootClamping: false,
restSpeedThreshold: 0.001,
restDisplacementThreshold: 0.001,
};
const SegmentedControl: React.FC<SegmentedControlProps> = ({
segments,
currentIndex,
onChange,
badgeValues = [],
isRTL = false,
containerMargin = 0,
activeTextStyle,
inactiveTextStyle,
segmentedControlWrapper,
pressableWrapper,
tileStyle,
activeBadgeStyle,
inactiveBadgeStyle,
badgeTextStyle,
}: SegmentedControlProps) => {
const width = widthPercentageToDP('100%') - containerMargin * 2;
const translateValue = width / segments.length;
const tabTranslateValue = useSharedValue(currentIndex);
// If phone is set to RTL, make sure the animation does the correct transition.
const transitionMultiplier = isRTL ? -1 : 1;
// useCallBack with an empty array as input, which will call inner lambda only once and memoize the reference for future calls
const memoizedTabPressCallback = React.useCallback(
(index) => {
onChange(index);
},
[onChange]
);
useEffect(() => {
tabTranslateValue.value = currentIndex;
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [currentIndex]);
const tabTranslateAnimatedStyles = useAnimatedStyle(() => {
const translateX = withSpring(
tabTranslateValue.value * (translateValue * transitionMultiplier),
DEFAULT_SPRING_CONFIG
);
return {
transform: [{ translateX }],
};
}, [translateValue, transitionMultiplier]);
const finalisedActiveTextStyle: TextStyle = {
fontSize: 15,
fontWeight: '600',
textAlign: 'center',
color: '#111827',
...activeTextStyle,
};
const finalisedInActiveTextStyle: TextStyle = {
fontSize: 15,
textAlign: 'center',
color: '#4b5563',
...inactiveTextStyle,
};
const finalisedActiveBadgeStyle: ViewStyle = {
backgroundColor: '#27272a',
marginLeft: 4,
alignItems: 'center',
justifyContent: 'center',
...activeBadgeStyle,
};
const finalisedInActiveBadgeStyle: ViewStyle = {
backgroundColor: '#6b7280',
marginLeft: 4,
justifyContent: 'center',
alignItems: 'center',
...inactiveBadgeStyle,
};
const finalisedBadgeTextStyle: TextStyle = {
fontSize: 11,
fontWeight: '500',
textAlign: 'center',
color: '#FFFFFF',
...badgeTextStyle,
};
return (
<Animated.View
style={[styles.defaultSegmentedControlWrapper, segmentedControlWrapper]}
>
<Animated.View
style={[
styles.movingSegmentStyle,
defaultShadowStyle,
tileStyle,
StyleSheet.absoluteFill,
{
width: width / segments.length - 4,
},
tabTranslateAnimatedStyles,
]}
/>
{segments.map((segment, index) => {
return (
<Pressable
onPress={() => memoizedTabPressCallback(index)}
key={index}
style={[styles.touchableContainer, pressableWrapper]}
>
<View style={styles.textWrapper}>
<Text
style={[
currentIndex === index
? finalisedActiveTextStyle
: finalisedInActiveTextStyle,
]}
>
{segment}
</Text>
{badgeValues[index] && (
<View
style={[
styles.defaultBadgeContainerStyle,
currentIndex === index
? finalisedActiveBadgeStyle
: finalisedInActiveBadgeStyle,
]}
>
<Text style={finalisedBadgeTextStyle}>
{badgeValues[index]}
</Text>
</View>
)}
</View>
</Pressable>
);
})}
</Animated.View>
);
};
const styles = StyleSheet.create({
defaultSegmentedControlWrapper: {
position: 'relative',
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
borderRadius: 8,
backgroundColor: '#f3f4f6',
},
touchableContainer: {
flex: 1,
elevation: 9,
paddingVertical: 12,
},
textWrapper: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
},
movingSegmentStyle: {
top: 0,
marginVertical: 2,
marginHorizontal: 2,
borderRadius: 6,
backgroundColor: '#FFFFFF',
},
// Badge Styles
defaultBadgeContainerStyle: {
alignItems: 'center',
justifyContent: 'center',
height: 16,
width: 16,
borderRadius: 9999,
alignContent: 'flex-end',
},
});
export default SegmentedControl;