aboutsummaryrefslogtreecommitdiff
path: root/src/components/comments/CommentTile.tsx
blob: 4221fd549609ca3b1551aa5d6e07c06ba57ca02f (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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
import React, {useState} from 'react';
import {Text, View} from 'react-native-animatable';
import {ProfilePreview} from '../profile';
import {CommentType, ScreenType, TypeOfComment} from '../../types';
import {StyleSheet} from 'react-native';
import {
  getTimePosted,
  normalize,
  SCREEN_HEIGHT,
  SCREEN_WIDTH,
} from '../../utils';
import ClockIcon from '../../assets/icons/clock-icon-01.svg';
import {COMMENT_REPLIES} from '../../constants';
import BackIcon from '../../assets/icons/back-arrow-colored.svg';
import {TouchableOpacity} from 'react-native-gesture-handler';
// import CommentsContainer from './CommentsContainer';

/**
 * Displays users's profile picture, comment posted by them and the time difference between now and when a comment was posted.
 */

interface CommentTileProps {
  comment_object: CommentType;
  screenType: ScreenType;
  typeOfComment: TypeOfComment;
}

const CommentTile: React.FC<CommentTileProps> = ({
  comment_object,
  screenType,
  typeOfComment,
}) => {
  const timePosted = getTimePosted(comment_object.date_created);
  const [showReplies, setShowReplies] = useState<boolean>(false);

  const isThread = typeOfComment === 'Thread';

  return (
    <>
      <View style={styles.container}>
        <ProfilePreview
          profilePreview={{
            id: comment_object.commenter.id,
            username: comment_object.commenter.username,
            first_name: comment_object.commenter.first_name,
            last_name: comment_object.commenter.last_name,
          }}
          previewType={'Comment'}
          screenType={screenType}
        />
        <View style={styles.body}>
          <Text style={styles.comment}>{comment_object.comment}</Text>
          <View style={styles.clockIconAndTime}>
            <ClockIcon style={styles.clockIcon} />
            <Text style={styles.date_time}>{' ' + timePosted}</Text>
            {typeOfComment === 'Comment' && (
              <>
                <TouchableOpacity
                  onPress={() => {
                    setShowReplies(!showReplies);
                  }}>
                  <View style={styles.repliesTextAndIconContainer}>
                    <Text style={styles.repliesText}>
                      {showReplies ? 'Hide' : 'Replies'}
                    </Text>
                    <BackIcon
                      width={12}
                      height={11}
                      color={COMMENT_REPLIES}
                      style={
                        !showReplies
                          ? styles.repliesDownArrow
                          : styles.repliesUpArrow
                      }
                    />
                  </View>
                </TouchableOpacity>
              </>
            )}
          </View>
        </View>
      </View>
      {/* {showReplies && (
        <View style={styles.repliesBody}>
          <CommentsContainer
            moment_id={'5a9d6023-bc62-4588-a3dc-8de2c9c370e0'}
            screenType={screenType}
            setNewCommentsAvailable={(value: boolean) => {
              console.log(value);
            }}
            newCommentsAvailable={true}
            typeOfComment={'Thread'}
          />
        </View>
      )} */}
    </>
  );
};

const styles = StyleSheet.create({
  container: {
    marginLeft: '3%',
    marginRight: '3%',
    borderBottomWidth: 1,
    borderColor: 'lightgray',
    marginBottom: '3%',
  },
  body: {
    marginLeft: 56,
  },
  comment: {
    position: 'relative',
    top: -5,
    marginBottom: '2%',
  },
  date_time: {
    color: 'gray',
    fontSize: normalize(12),
  },
  clockIcon: {
    width: 12,
    height: 12,
    alignSelf: 'center',
  },
  clockIconAndTime: {
    flexDirection: 'row',
    marginBottom: '3%',
  },

  repliesTextAndIconContainer: {
    marginLeft: SCREEN_WIDTH * 0.37,
    flexDirection: 'row',
  },

  repliesText: {
    color: COMMENT_REPLIES,
    fontWeight: '500',
    fontSize: normalize(12),
    marginRight: '3%',
  },

  repliesBody: {
    width: SCREEN_WIDTH,
    height: SCREEN_HEIGHT * 0.8,
  },

  repliesDownArrow: {
    transform: [{rotate: '270deg'}],
    marginTop: '7%',
  },

  repliesUpArrow: {
    transform: [{rotate: '90deg'}],
    marginTop: '7%',
  },
});

export default CommentTile;