forked from dohooo/react-native-reanimated-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
138 lines (131 loc) · 3.94 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
import * as React from "react";
import { ScrollView } from "react-native-gesture-handler";
import type { ICarouselInstance } from "react-native-reanimated-carousel";
import Carousel from "react-native-reanimated-carousel";
import { SafeAreaView } from "react-native-safe-area-context";
import { SBItem } from "../../components/SBItem";
import SButton from "../../components/SButton";
import { ElementsText, window } from "../../constants";
import { useWindowDimensions } from "react-native";
import { useSharedValue } from "react-native-reanimated";
const PAGE_WIDTH = window.width;
function Index() {
const windowWidth = useWindowDimensions().width;
const scrollOffsetValue = useSharedValue<number>(0);
const [data, setData] = React.useState([...new Array(4).keys()]);
const [isVertical, setIsVertical] = React.useState(false);
const [isFast, setIsFast] = React.useState(false);
const [isAutoPlay, setIsAutoPlay] = React.useState(false);
const [isPagingEnabled, setIsPagingEnabled] = React.useState(true);
const ref = React.useRef<ICarouselInstance>(null);
const baseOptions = isVertical
? ({
vertical: true,
width: windowWidth,
height: PAGE_WIDTH / 2,
} as const)
: ({
vertical: false,
width: windowWidth,
height: PAGE_WIDTH / 2,
} as const);
return (
<SafeAreaView edges={["bottom"]} style={{ flex: 1 }}>
<Carousel
{...baseOptions}
loop
enabled // Default is true, just for demo
ref={ref}
defaultScrollOffsetValue={scrollOffsetValue}
testID={"xxx"}
style={{ width: "100%" }}
autoPlay={isAutoPlay}
autoPlayInterval={isFast ? 100 : 2000}
data={data}
onScrollStart={()=>{console.log('===1')}}
onScrollEnd={()=>{console.log('===2')}}
onConfigurePanGesture={g => g.enabled(false)}
pagingEnabled={isPagingEnabled}
onSnapToItem={index => console.log("current index:", index)}
renderItem={({ index }) => <SBItem key={index} index={index} />}
/>
<ScrollView style={{ flex: 1 }}>
<SButton
onPress={() => {
setData([...new Array(5).keys()]);
}}
>
{"Change the data length to 5"}
</SButton>
<SButton
onPress={() => {
setData([...new Array(3).keys()]);
}}
>
{"Change the data length to 3"}
</SButton>
<SButton
onPress={() => {
setIsVertical(!isVertical);
}}
>
{isVertical ? "Set horizontal" : "Set Vertical"}
</SButton>
<SButton
onPress={() => {
setIsFast(!isFast);
}}
>
{isFast ? "NORMAL" : "FAST"}
</SButton>
<SButton
onPress={() => {
setIsPagingEnabled(!isPagingEnabled);
}}
>
PagingEnabled:{isPagingEnabled.toString()}
</SButton>
<SButton
onPress={() => {
setIsAutoPlay(!isAutoPlay);
}}
>
{ElementsText.AUTOPLAY}:{`${isAutoPlay}`}
</SButton>
<SButton
onPress={() => {
console.log(ref.current?.getCurrentIndex());
}}
>
Log current index
</SButton>
<SButton
onPress={() => {
setData(
data.length === 6
? [...new Array(8).keys()]
: [...new Array(6).keys()],
);
}}
>
Change data length to:{data.length === 6 ? 8 : 6}
</SButton>
<SButton
onPress={() => {
ref.current?.scrollTo({ count: -1, animated: true });
}}
>
prev
</SButton>
<SButton
onPress={() => {
ref.current?.scrollTo({ count: 1, animated: true });
}}
>
next
</SButton>
</ScrollView>
</SafeAreaView>
);
}
export default Index;