aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/Content.tsx
blob: 206fd9e4b88c5ce2bdc9eca3dba2a12ae48f02b5 (plain)
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
import React, {useState} from 'react';
import {StyleSheet, LayoutChangeEvent} from 'react-native';
import Animated from 'react-native-reanimated';

import {UserType} from '../../types';
import ProfileCutout from './ProfileCutout';
import ProfileHeader from './ProfileHeader';
import ProfileBody from './ProfileBody';
import TaggsBar from '../taggs/TaggsBar';
import Feed from './Feed';

interface ContentProps {
  y: Animated.Value<number>;
  user: UserType;
}
const Content: React.FC<ContentProps> = ({y, user}) => {
  const [profileBodyHeight, setProfileBodyHeight] = useState(0);
  const onLayout = (e: LayoutChangeEvent) => {
    const {height} = e.nativeEvent.layout;
    setProfileBodyHeight(height);
  };
  return (
    <Animated.ScrollView
      style={styles.container}
      onScroll={(e) => y.setValue(e.nativeEvent.contentOffset.y)}
      showsVerticalScrollIndicator={false}
      scrollEventThrottle={1}
      stickyHeaderIndices={[2, 4]}>
      <ProfileCutout>
        <ProfileHeader />
      </ProfileCutout>
      <ProfileBody {...{onLayout}} />
      <TaggsBar {...{y, profileBodyHeight}} />
      <Feed {...{user}} />
    </Animated.ScrollView>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
  },
});

export default Content;