-
-
Notifications
You must be signed in to change notification settings - Fork 338
/
Copy pathindex.tsx
100 lines (94 loc) · 2.62 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
import * as React from "react";
import { View } from "react-native";
import type { ICarouselInstance } from "react-native-reanimated-carousel";
import Carousel from "react-native-reanimated-carousel";
import { SBItem } from "../../components/SBItem";
import SButton from "../../components/SButton";
import { ElementsText, window } from "../../constants";
const PAGE_WIDTH = window.width;
function Index() {
const [data, setData] = React.useState([...new Array(6).keys()]);
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 = {
vertical: false,
width: PAGE_WIDTH * 0.85,
height: PAGE_WIDTH / 2,
} as const;
return (
<View style={{ flex: 1 }}>
<Carousel
{...baseOptions}
loop={false}
ref={ref}
style={{ width: "100%" }}
autoPlay={isAutoPlay}
autoPlayInterval={isFast ? 100 : 2000}
data={data}
pagingEnabled={isPagingEnabled}
onSnapToItem={index => console.log("current index:", index)}
renderItem={({ index }) => (
<View style={{ flex: 1, marginLeft: "2.5%" }}>
<SBItem key={index} index={index} />
</View>
)}
/>
<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>
</View>
);
}
export default Index;