-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsearchView.js
97 lines (87 loc) · 2.6 KB
/
searchView.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
import React, {Component} from 'react';
import { Animated, StyleSheet, Dimensions } from 'react-native';
import { getStatusBarHeight } from './helper';
const { height } = Dimensions.get("window");
class SearchView extends Component {
isOpened = false;
statusBarHeight= getStatusBarHeight();
state = {
animatedHeight: new Animated.Value(height - this.props.fullHeaderHeight),
animatedOpacity: new Animated.Value(0),
zIndex: -1
}
setZIndex = (zIndex) => {
const { duration } = this.props;
setTimeout(() => {
this.setState({zIndex});
}, duration)
}
open() {
const { animatedHeight, animatedOpacity } = this.state;
const { isOpened, statusBarHeight } = this;
const { duration, searchbarHeight } = this.props;
if (isOpened) return;
this.isOpened = true;
this.setState({zIndex: 1});
Animated.timing(
animatedOpacity,
{
toValue: 1,
duration: duration,
useNativeDriver: false
},
).start()
Animated.timing(
animatedHeight,
{
toValue: height - searchbarHeight - statusBarHeight,
duration: duration,
useNativeDriver: false
},
).start();
}
close() {
const { animatedOpacity, animatedHeight} = this.state;
const { duration, fullHeaderHeight } = this.props;
const { isOpened, setZIndex } = this;
if (!isOpened) return;
this.isOpened = false;
Animated.timing(
animatedOpacity,
{
toValue: 0,
duration: duration,
useNativeDriver: false
},
).start()
Animated.timing(
animatedHeight,
{
toValue: height - fullHeaderHeight,
duration: duration,
useNativeDriver: false
},
).start()
setZIndex(-1)
}
render(){
const { children } = this.props;
const { zIndex, animatedOpacity, animatedHeight } = this.state;
return (
<Animated.View style={[styles.container, {opacity: animatedOpacity, height: animatedHeight, zIndex: zIndex}]}>
{children}
</Animated.View>
);
}
}
const styles = StyleSheet.create({
container: {
width: "100%",
zIndex: 1,
// backgroundColor: 'red',
position: "absolute",
opacity: 0.5,
bottom: 0
}
})
export default SearchView;