forked from dohooo/react-native-reanimated-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
139 lines (127 loc) · 3.42 KB
/
index.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
import * as React from "react";
import { Text, View } from "react-native";
import { TouchableWithoutFeedback } from "react-native-gesture-handler";
import { interpolate } from "react-native-reanimated";
import Carousel, { TAnimationStyle } from "react-native-reanimated-carousel";
import { faker } from "@faker-js/faker";
import { SBImageItem } from "../../components/SBImageItem";
import SButton from "../../components/SButton";
import { ElementsText, window } from "../../constants";
const PAGE_WIDTH = window.width;
function Index() {
const [isFast, setIsFast] = React.useState(false);
const [isAutoPlay, setIsAutoPlay] = React.useState(false);
const itemSize = 80;
const centerOffset = PAGE_WIDTH / 2 - itemSize / 2;
const animationStyle: TAnimationStyle = React.useCallback(
(value: number) => {
"worklet";
const itemGap = interpolate(
value,
[-3, -2, -1, 0, 1, 2, 3],
[-30, -15, 0, 0, 0, 15, 30],
);
const translateX
= interpolate(value, [-1, 0, 1], [-itemSize, 0, itemSize])
+ centerOffset
- itemGap;
const translateY = interpolate(
value,
[-1, -0.5, 0, 0.5, 1],
[60, 45, 40, 45, 60],
);
const scale = interpolate(
value,
[-1, -0.5, 0, 0.5, 1],
[0.8, 0.85, 1.1, 0.85, 0.8],
);
return {
transform: [
{
translateX,
},
{
translateY,
},
{ scale },
],
};
},
[centerOffset],
);
return (
<View style={{ flex: 1 }}>
<Carousel
width={itemSize}
height={itemSize}
style={{
width: PAGE_WIDTH,
height: PAGE_WIDTH / 2,
backgroundColor: "#010017",
}}
loop
autoPlay={isAutoPlay}
autoPlayInterval={isFast ? 100 : 2000}
data={[...new Array(12).keys()]}
renderItem={({ index }) => (
<TouchableWithoutFeedback
key={index}
onPress={() => {
console.log(index);
}}
containerStyle={{ flex: 1 }}
style={{ flex: 1 }}
>
<View
style={{
backgroundColor: "white",
flex: 1,
borderRadius: 50,
justifyContent: "center",
overflow: "hidden",
alignItems: "center",
}}
>
<SBImageItem
showIndex={false}
style={{
position: "absolute",
width: "100%",
height: "100%",
}}
/>
<Text
style={{
color: "white",
fontWeight: "600",
fontSize: 40,
}}
>
{faker.person.
fullName()
.slice(0, 2)
.toUpperCase()}
</Text>
</View>
</TouchableWithoutFeedback>
)}
customAnimation={animationStyle}
/>
<SButton
onPress={() => {
setIsFast(!isFast);
}}
>
{isFast ? "NORMAL" : "FAST"}
</SButton>
<SButton
onPress={() => {
setIsAutoPlay(!isAutoPlay);
}}
>
{ElementsText.AUTOPLAY}:{`${isAutoPlay}`}
</SButton>
</View>
);
}
export default Index;