-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
183 lines (175 loc) · 4.48 KB
/
App.js
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
/* eslint-disable react/no-array-index-key */
import React, { Component } from 'react';
import { Text, Image } from 'react-native-elements';
import {
StyleSheet,
View,
TouchableOpacity,
Dimensions,
ScrollView,
} from 'react-native';
import variables from '@variables';
import colors from '@styles/colors';
import images from '@globals/utils/images';
import ImageLoader from '@components/ImageLoader';
const deviceWidth = Dimensions.get('window').width;
const styles = StyleSheet.create({
positionRelative: {
position: 'relative',
marginHorizontal: 20,
marginTop: 10,
marginBottom: 20,
borderRadius: 10,
},
eventImage: {
height: 50,
width: deviceWidth - 40,
borderRadius: 10,
},
positionAbsolute: {
position: 'absolute',
bottom: 15,
width: '100%',
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
},
viewEventsText: {
fontFamily: variables.fontFamily.bold,
fontSize: variables.fontSize.font18,
color: colors.white,
width: '80%',
textAlign: 'center',
},
imageHeader: {
height: 50,
width: deviceWidth - 40,
borderRadius: 10,
},
blur: {
position: 'absolute',
bottom: 0,
height: 50,
width: deviceWidth - 40,
opacity: 0.3,
borderRadius: 10,
backgroundColor: colors.black,
},
circleDiv: {
// position: "absolute",
bottom: 15,
display: 'flex',
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'center',
width: '100%',
height: 10,
},
whiteCircle: {
width: 6,
height: 6,
borderRadius: 3,
margin: 5,
backgroundColor: '#fff',
},
});
class App extends Component {
constructor(props) {
super(props);
this.state = {
selectedIndex: 0,
};
this.scrollRef = React.createRef();
}
componentDidMount = () => {
const { eventList } = this.props;
let count = 0;
setInterval(() => {
this.setState(
(prev) => ({
selectedIndex:
prev.selectedIndex === eventList.length - 1
? 0
: prev.selectedIndex + 1,
}),
() => {
count = count === eventList.length - 1 ? 0 : count + 1;
this.scrollRef.current.scrollTo({
animated: true,
x: deviceWidth * count,
y: 0,
});
},
);
}, 3000);
};
setSelectedIndex = (event) => {
const { contentOffset } = event.nativeEvent;
const viewSize = event.nativeEvent.layoutMeasurement;
const selectedIndex = Math.floor(contentOffset.x / viewSize.width);
this.setState({ selectedIndex });
};
render = () => {
const { navigatePopularEvents, eventList } = this.props;
const { selectedIndex } = this.state;
// eventList = [
// {
// id: 1,
// coverPhoto: 'imagePath',
// title: 'Karthick'
// }
// ]
return (
<>
<ScrollView
horizontal
pagingEnabled
showsHorizontalScrollIndicator={false}
onMomentumScrollEnd={this.setSelectedIndex}
ref={this.scrollRef}
>
{eventList.map((value, index) => (
<View
style={styles.positionRelative}
key={index}
active={index === selectedIndex}
>
<View style={styles.imageHeader}>
{value.id === null ? (
<Image
source={images.uselessImage}
style={styles.eventImage}
PlaceholderContent={<ImageLoader size="small" />}
/>
) : (
<Image
source={{ uri: value.coverPhoto }}
style={styles.eventImage}
PlaceholderContent={<ImageLoader size="small" />}
/>
)}
</View>
<TouchableOpacity
style={styles.blur}
onPress={() => navigatePopularEvents(value.id)}
activeOpacity={0.9}
/>
<View style={styles.positionAbsolute}>
<Text
style={styles.viewEventsText}
onPress={() => navigatePopularEvents(value.id)}
numberOfLines={1}
ellipsizeMode="tail"
>
{value.title}
</Text>
</View>
</View>
))}
</ScrollView>
</>
);
};
}
export default App;