-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.js
255 lines (235 loc) · 7.33 KB
/
index.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
import React, { Component } from 'react';
import {
View,
ImageBackground,
Image,
Text,
TouchableOpacity,
Animated,
Dimensions,
PanResponder,
} from 'react-native';
import styles from './styles';
const SWIPE_THRESHOLD = 0.25;
class SwipeableParallaxCarousel extends Component {
// Default props
//
static defaultProps = {
height: 200,
navigationColor: '#ffffff',
onPress: () => {},
}
// Class constructor
//
constructor(props) {
super(props);
const position = new Animated.ValueXY();
const panResponder = PanResponder.create({
onStartShouldSetPanResponder: () => true,
onMoveShouldSetPanResponder: (event, gesture) => {
return Math.abs(gesture.dx) > 5;
},
onPanResponderGrant: () => {
// Deactivate parent scrollview
if (this.props.parentScrollViewRef) this.props.parentScrollViewRef.setNativeProps({ scrollEnabled: false });
},
onPanResponderMove: (event, gesture) => {
position.setValue({ x: gesture.dx, y: gesture.dy });
},
onPanResponderRelease: (event, gesture) => {
if (gesture.dx > SWIPE_THRESHOLD * this.state.screenWidth) {
// Can't swipe if it's the beginning
if (this.state.currentItem === 0) {
this._resetPosition();
} else this._forceSwipe('right');
} else if (gesture.dx < -SWIPE_THRESHOLD * this.state.screenWidth) {
// Can't swipe if it's the end
if (this.state.currentItem === this.props.data.length - 1) {
this._resetPosition();
} else this._forceSwipe('left');
} else {
this._resetPosition();
}
// Reactivate parent scrollview
if (this.props.parentScrollViewRef) this.props.parentScrollViewRef.setNativeProps({ scrollEnabled: true });
}
});
this.panResponder = panResponder;
this.position = position;
this.state = {
currentItem: 0,
nextItem: 0,
screenWidth: Dimensions.get('window').width,
};
}
// Force swipe
//
_forceSwipe(direction) {
const distance = (direction === 'right') ? this.state.screenWidth : -this.state.screenWidth;
// Calculate nextItem
const currentitem = this.state.currentItem;
const newitem = (direction === 'right') ? currentitem - 1 : currentitem + 1;
this.setState({ nextItem: newitem });
Animated.spring(this.position, {
toValue: { x: distance, y: 0 },
}).start(() => this._onSwipeComplete(direction, newitem));
}
// on SwipeComplete
//
_onSwipeComplete(direction, newitem) {
this.position.setValue({ x: 0, y: 0 });
this.setState({ currentItem: newitem });
}
// Reset position
//
_resetPosition() {
Animated.spring(this.position, {
toValue: { x: 0, y: 0 }
}).start();
}
// Get overlay
//
_getOverlay(overlayPath, height) {
if (overlayPath) return <Image source={overlayPath} style={[styles.overlay, { height, width: this.state.screenWidth }]} />;
return null;
}
// Get title
//
_getTitle(item, titleColor) {
if (item.title) {
return (
<View style={[styles.itemTitleContainer, this._getTitleAlign(), this._getTitlePadding()]}>
<Text style={[styles.itemTitle, { color: titleColor }]}>{item.title}</Text>
{item.subtitle &&
<Text style={[styles.itemSubtitle, { color: titleColor }]}>{item.subtitle}</Text>
}
</View>
);
}
return null;
}
// Get title alignement
//
_getTitleAlign() {
if (this.props.align === 'center') return { alignItems: 'center' };
if (this.props.align === 'right') return { alignItems: 'flex-end' };
return { alignItems: 'flex-start' };
}
// Get title padding (if navigation active)
//
_getTitlePadding() {
if (this.props.navigation) return { paddingBottom: 40 };
return null;
}
// Get style for each individual item
//
_getItemStyle(index) {
const { position } = this;
// Current item zIndex (for parallax effect)
const zIndex = (index === this.state.currentItem) ? 0 : 1;
// Default margin based on the item position
const defaultmargin = ((index - this.state.currentItem) * this.state.screenWidth);
let deltaleft = this.state.screenWidth;
if (this.props.parallax && index === this.state.currentItem) deltaleft = this.state.screenWidth / 4;
if (!this.props.parallax && this.state.currentItem === this.props.data.length - 1) deltaleft = this.state.screenWidth / 4;
let deltaright = this.state.screenWidth;
if (this.props.parallax && index === this.state.currentItem) deltaright = this.state.screenWidth / 4;
if (!this.props.parallax && this.state.currentItem === 0) deltaright = this.state.screenWidth / 4;
const margin = position.x.interpolate({
inputRange: [-this.state.screenWidth, 0, this.state.screenWidth],
outputRange: [defaultmargin - deltaleft, defaultmargin, defaultmargin + deltaright],
});
return { left: margin, zIndex, elevation: zIndex };
}
// Render items method
//
_renderItems() {
const {
data,
height,
overlayPath,
titleColor,
onPress
} = this.props;
return data.map((item, index) => {
return (
<Animated.View
key={item.id}
{...this.panResponder.panHandlers}
style={[styles.itemContainer, { height, width: this.state.screenWidth }, this._getItemStyle(index)]}
>
<TouchableOpacity
onPress={() => onPress(item.id)}
style={styles.touchableContainer}
activeOpacity={0.98}
>
<ImageBackground
source={{ uri: item.imagePath }}
style={styles.itemImage}
>
{this._getOverlay(overlayPath, height)}
{this._getTitle(item, titleColor)}
</ImageBackground>
</TouchableOpacity>
</Animated.View>
);
});
}
// Render navigation
//
_renderNavigation() {
const {
navigation,
} = this.props;
if (navigation) {
return (
<View style={styles.navigationContainer}>
{this._renderNavigationItems()}
</View>
);
}
return null;
}
// Render navigation item
//
_renderNavigationItems() {
const {
data,
navigationColor,
navigationType
} = this.props;
// Type of item (dots == default, bars, squares)
let typeItem = null;
if (navigationType === 'bars') typeItem = styles.navigationItemBars;
if (navigationType === 'squares') typeItem = styles.navigationItemSquares;
return data.map((item, index) => {
// Current item selection
let currentItem = null;
if (index === this.state.nextItem) currentItem = { backgroundColor: navigationColor, transform: [{ scale: 1.25 }] };
return (
<Animated.View
key={index}
style={[styles.navigationItem, typeItem, currentItem]}
/>
);
});
}
// onLayout method to resize when orientation change
//
_onLayout() {
this.setState({ screenWidth: Dimensions.get('window').width });
}
// Render method
//
render() {
return (
<View onLayout={this._onLayout.bind(this)}>
<View style={{ height: this.props.height, width: this.state.screenWidth }}>
{this._renderItems()}
{this._renderNavigation()}
</View>
</View>
);
}
}
export default SwipeableParallaxCarousel;