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
|
import React from 'react';
import {Image, StyleSheet} from 'react-native';
import Animated from 'react-native-reanimated';
import {IMAGE_WIDTH, COVER_HEIGHT} from '../../constants';
import {AuthContext, ProfileContext} from '../../routes/';
const {interpolate, Extrapolate} = Animated;
interface CoverProps {
y: Animated.Value<number>;
isProfileView: boolean;
}
const Cover: React.FC<CoverProps> = ({y, isProfileView}) => {
const {cover} = isProfileView
? React.useContext(ProfileContext)
: React.useContext(AuthContext);
const scale: Animated.Node<number> = interpolate(y, {
inputRange: [-COVER_HEIGHT, 0],
outputRange: [1.5, 1.25],
extrapolateRight: Extrapolate.CLAMP,
});
return (
<Animated.View style={[styles.container, {transform: [{scale}]}]}>
<Image
style={styles.image}
source={
cover
? {uri: cover}
: require('../../assets/images/cover-placeholder.png')
}
/>
</Animated.View>
);
};
const styles = StyleSheet.create({
container: {
position: 'absolute',
},
image: {
width: IMAGE_WIDTH,
height: COVER_HEIGHT,
},
});
export default Cover;
|