forked from dohooo/react-native-reanimated-carousel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.tsx
98 lines (93 loc) · 3.03 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
import * as React from 'react';
import { View } from 'react-native-ui-lib';
import Carousel, { ICarouselInstance } 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 [isVertical, setIsVertical] = React.useState(false);
const [isFast, setIsFast] = React.useState(false);
const [isAutoPlay, setIsAutoPlay] = React.useState(false);
const ref = React.useRef<ICarouselInstance>(null);
const baseOptions = isVertical
? ({
vertical: true,
width: PAGE_WIDTH,
height: PAGE_WIDTH / 2,
} as const)
: ({
vertical: false,
width: PAGE_WIDTH,
height: PAGE_WIDTH / 2,
} as const);
return (
<View style={{ flex: 1 }}>
<Carousel
{...baseOptions}
loop
ref={ref}
autoPlay={isAutoPlay}
autoPlayInterval={isFast ? 100 : 2000}
data={data}
onSnapToItem={(index) => console.log('current index:', index)}
renderItem={({ index }) => <SBItem key={index} index={index} />}
/>
<SButton
onPress={() => {
setIsVertical(!isVertical);
}}
>
{isVertical ? 'Set horizontal' : 'Set Vertical'}
</SButton>
<SButton
onPress={() => {
setIsFast(!isFast);
}}
>
{isFast ? 'NORMAL' : 'FAST'}
</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;