-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.js
138 lines (124 loc) · 3.53 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
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { View, ScrollView, Text, Animated, Dimensions } from 'react-native';
import Fade from 'react-native-fade';
import styles from './styles';
const { height } = Dimensions.get('window');
class HeaderScrollView extends Component {
static propTypes = {
title: PropTypes.string,
titleStyle: PropTypes.object,
headlineStyle: PropTypes.object,
children: PropTypes.node,
containerStyle: PropTypes.object,
headerContainerStyle: PropTypes.object,
headerComponentContainerStyle: PropTypes.object,
scrollContainerStyle: PropTypes.object,
fadeDirection: PropTypes.string,
scrollViewProps: PropTypes.object,
};
static defaultProps = {
scrollViewProps: {},
};
state = {
headerHeight: 0,
headerY: 0,
isHeaderScrolled: false,
fadeDirection: '',
};
onLayout = event => {
this.setState({
headerHeight: event.nativeEvent.layout.height,
headerY: event.nativeEvent.layout.y,
});
};
scrollAnimatedValue = new Animated.Value(0);
handleScroll = event => {
const offset = event.nativeEvent.contentOffset.y;
const scrollHeaderOffset = this.state.headerHeight + this.state.headerY - 8;
const isHeaderScrolled = scrollHeaderOffset < offset;
if (!this.state.isHeaderScrolled && isHeaderScrolled) {
this.setState({
isHeaderScrolled,
});
}
if (this.state.isHeaderScrolled && !isHeaderScrolled) {
this.setState({
isHeaderScrolled,
});
}
};
render() {
const {
children,
title = '',
titleStyle = {},
containerStyle = {},
headerContainerStyle = {},
headerComponentContainerStyle = {},
headlineStyle = {},
scrollContainerStyle = {},
fadeDirection,
scrollViewProps = {},
} = this.props;
const fontSize = titleStyle.fontSize || 34;
const titleStyles = {
fontSize,
lineHeight: fontSize * 1.2,
};
const animatedFontSize = this.scrollAnimatedValue.interpolate({
inputRange: [-height, 0],
outputRange: [fontSize * 1.75, fontSize],
extrapolate: 'clamp',
});
return (
<View style={[styles.container, containerStyle]}>
<View style={[styles.headerContainer, headerContainerStyle]}>
<Fade visible={this.state.isHeaderScrolled} direction={fadeDirection}>
<View
style={[
styles.headerComponentContainer,
headerComponentContainerStyle,
]}
>
<Text style={[styles.headline, headlineStyle]}>{title}</Text>
</View>
</Fade>
</View>
<ScrollView
onScroll={Animated.event(
[
{
nativeEvent: { contentOffset: { y: this.scrollAnimatedValue } },
},
],
{
listener: this.handleScroll,
}
)}
scrollEventThrottle={8}
contentContainerStyle={scrollContainerStyle}
{...scrollViewProps}
>
<View>
<Animated.Text
style={[
styles.title,
titleStyle,
titleStyles,
{
fontSize: animatedFontSize,
},
]}
onLayout={this.onLayout}
>
{title}
</Animated.Text>
</View>
{children}
</ScrollView>
</View>
);
}
}
export default HeaderScrollView;