aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/Moment.tsx
blob: 0fbabe8ff5de36b4551db9e1a6ceceefcb58e31a (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
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
import {useNavigation} from '@react-navigation/native';
import React from 'react';
import {Alert, StyleSheet, View} from 'react-native';
import {Text} from 'react-native-animatable';
import {ScrollView, TouchableOpacity} from 'react-native-gesture-handler';
import LinearGradient from 'react-native-linear-gradient';
import PlusIcon from '../../assets/icons/plus_icon-01.svg';
import BigPlusIcon from '../../assets/icons/plus_icon-02.svg';
import {MOMENTS_TITLE_COLOR} from '../../constants';
import {SCREEN_WIDTH} from '../../utils';

interface MomentProps {
  title: string;
  images: Array<string>;
}

const Moment: React.FC<MomentProps> = ({title, images}) => {
  const navigation = useNavigation();
  const navigateToImagePicker = () => {
    Alert.alert('Perform navigation to Image Picker with Caption screen');
    // navigation.navigate('')
  };
  return (
    <View style={styles.container}>
      <View style={styles.header}>
        <Text style={styles.titleText}>{title}</Text>
        <PlusIcon
          width={21}
          height={21}
          onPress={() => navigateToImagePicker()}
        />
      </View>
      <ScrollView
        horizontal
        showsHorizontalScrollIndicator={false}
        style={styles.scrollContainer}>
        <TouchableOpacity onPress={() => navigateToImagePicker()}>
          <LinearGradient
            colors={['rgba(105, 141, 211, 1)', 'rgba(105, 141, 211, 0.3)']}>
            <View style={styles.defaultImage}>
              <BigPlusIcon width={50} height={50} />
              <Text style={styles.defaultImageText}>
                Add a moment of your {title.toLowerCase()}!
              </Text>
            </View>
          </LinearGradient>
        </TouchableOpacity>
      </ScrollView>
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    flexDirection: 'column',
    backgroundColor: '#eee',
  },
  header: {
    flex: 1,
    paddingHorizontal: 10,
    padding: 5,
    paddingTop: 20,
    backgroundColor: 'white',
    flexDirection: 'row',
    justifyContent: 'space-between',
    alignItems: 'center',
  },
  titleText: {
    fontSize: 16,
    fontWeight: 'bold',
    color: MOMENTS_TITLE_COLOR,
  },
  scrollContainer: {
    height: SCREEN_WIDTH / 2,
    backgroundColor: '#eee',
  },
  defaultImage: {
    aspectRatio: 1,
    height: '100%',
    alignItems: 'center',
    justifyContent: 'center',
    flexDirection: 'column',
  },
  defaultImageText: {
    fontSize: 20,
    paddingTop: 20,
    color: 'white',
    fontWeight: 'bold',
    width: '75%',
    textAlign: 'center',
  },
});

export default Moment;