-
Notifications
You must be signed in to change notification settings - Fork 429
/
Copy pathPaginationDotsExample.tsx
225 lines (217 loc) · 5.46 KB
/
PaginationDotsExample.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
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
import React from 'react';
import {
StyleSheet,
Text,
View,
SafeAreaView,
Animated,
Dimensions,
} from 'react-native';
import PagerView, {
PagerViewOnPageScrollEventData,
} from 'react-native-pager-view';
import {
ScalingDot,
SlidingBorder,
ExpandingDot,
SlidingDot,
} from 'react-native-animated-pagination-dots';
const AnimatedPagerView = Animated.createAnimatedComponent(PagerView);
const INTRO_DATA = [
{
key: '1',
title: 'App showcase ✨',
description:
'Lorem Ipsum is simply dummy text of the printing and typesetting industry.',
},
{
key: '2',
title: 'Introduction screen 🎉',
description:
"Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. ",
},
{
key: '3',
title: 'And can be anything 🎈',
description:
'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. ',
},
{
key: '4',
title: 'And can be anything 🎈',
description:
'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. ',
},
];
export default function PaginationDotsExample() {
const width = Dimensions.get('window').width;
const ref = React.useRef<PagerView>(null);
const scrollOffsetAnimatedValue = React.useRef(new Animated.Value(0)).current;
const positionAnimatedValue = React.useRef(new Animated.Value(0)).current;
const inputRange = [0, INTRO_DATA.length];
const scrollX = Animated.add(
scrollOffsetAnimatedValue,
positionAnimatedValue
).interpolate({
inputRange,
outputRange: [0, INTRO_DATA.length * width],
});
const onPageScroll = React.useMemo(
() =>
Animated.event<PagerViewOnPageScrollEventData>(
[
{
nativeEvent: {
offset: scrollOffsetAnimatedValue,
position: positionAnimatedValue,
},
},
],
{
useNativeDriver: false,
}
),
// eslint-disable-next-line react-hooks/exhaustive-deps
[]
);
return (
<SafeAreaView testID="safe-area-view" style={styles.flex}>
<AnimatedPagerView
testID="pager-view"
initialPage={0}
ref={ref}
style={styles.PagerView}
onPageScroll={onPageScroll}
>
{INTRO_DATA.map(({ key }) => (
<View
testID={`pager-view-data-${key}`}
key={key}
style={styles.center}
>
<Text style={styles.text}>{`Page Index: ${key}`}</Text>
</View>
))}
</AnimatedPagerView>
<View style={styles.dotsContainer}>
<View style={styles.dotContainer}>
<Text>Expanding Dot</Text>
<ExpandingDot
testID={'expanding-dot'}
data={INTRO_DATA}
expandingDotWidth={30}
//@ts-ignore
scrollX={scrollX}
inActiveDotOpacity={0.6}
dotStyle={{
width: 10,
height: 10,
backgroundColor: '#347af0',
borderRadius: 5,
marginHorizontal: 5,
}}
containerStyle={{
top: 30,
}}
/>
</View>
<View style={styles.dotContainer}>
<Text>Scaling Dot</Text>
<ScalingDot
testID={'scaling-dot'}
data={INTRO_DATA}
//@ts-ignore
scrollX={scrollX}
containerStyle={{
top: 30,
}}
/>
</View>
<View style={styles.dotContainer}>
<Text>Sliding Border</Text>
<SlidingBorder
testID={'sliding-border'}
containerStyle={{ top: 30 }}
data={INTRO_DATA}
//@ts-ignore
scrollX={scrollX}
dotSize={24}
/>
</View>
<View style={styles.dotContainer}>
<Text>Sliding Dot</Text>
<SlidingDot
testID={'sliding-dot'}
marginHorizontal={3}
containerStyle={{ top: 30 }}
data={INTRO_DATA}
//@ts-ignore
scrollX={scrollX}
dotSize={12}
/>
</View>
</View>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
flex: {
flex: 1,
},
PagerView: {
flex: 1,
},
container: {
flexDirection: 'row',
backgroundColor: '#63a4ff',
},
progressContainer: { flex: 0.1, backgroundColor: '#63a4ff' },
center: {
justifyContent: 'center',
alignItems: 'center',
alignContent: 'center',
padding: 20,
},
text: {
fontSize: 30,
},
separator: {
paddingVertical: 16,
paddingHorizontal: 10,
},
touchableTitle: {
textAlign: 'center',
color: '#000',
},
touchableTitleActive: {
color: '#fff',
},
dotsContainer: {
flex: 1,
justifyContent: 'space-evenly',
},
dotContainer: {
justifyContent: 'center',
alignSelf: 'center',
},
contentSlider: {
flex: 1,
borderTopLeftRadius: 20,
borderTopRightRadius: 20,
},
dots: {
flex: 1,
position: 'absolute',
left: 0,
right: 0,
bottom: 310,
flexDirection: 'row',
justifyContent: 'center',
},
dot: {
width: 10,
height: 10,
borderRadius: 5,
margin: 5,
},
});