CommentCard.js 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. import { Image, StyleSheet, Text, View } from 'react-native'
  2. import React, { useState } from 'react'
  3. import AntIcon from 'react-native-vector-icons/AntDesign'
  4. import ButtonWrapper from '../../atoms/ButtonWrapper'
  5. import LineIcon from 'react-native-vector-icons/SimpleLineIcons'
  6. import colors from '../../../theme/colors'
  7. import fonts from '../../../theme/fonts'
  8. import images from '../../../assets/images/images'
  9. import { Menu, Provider } from 'react-native-paper'
  10. import { getTimestamp } from '../../../utils/Constants/functions'
  11. const CommentCard = ({ navigation, timestamp, name, comment, likeCount, dislikeCount, }) => {
  12. // * Like Counter
  13. const [isDisliked, setDisliked] = useState(false)
  14. const [isLiked, setLiked] = useState(false)
  15. const [likeCounter, setLikeCounter] = useState(likeCount ?? 123)
  16. const [dislikeCounter, setDislikeCounter] = useState(dislikeCount ?? 452)
  17. // * Menu Visibility
  18. const [optionsMenuVisible, setOptionsMenuVisible] = React.useState(false);
  19. const openOptionsMenu = () => setOptionsMenuVisible(true);
  20. const closeOptionsMenu = () => setOptionsMenuVisible(false);
  21. const toggleOptionsMenu = () => setOptionsMenuVisible(!optionsMenuVisible)
  22. const [optionsMenuAnchor, setOptionsMenuAnchor] = React.useState({ y: 0, x: 0 })
  23. const onOptionsMenuPress = (event) => {
  24. const { nativeEvent } = event;
  25. console.log(nativeEvent)
  26. const anchor = {
  27. x: nativeEvent.locationX,
  28. y: nativeEvent.locationY,
  29. // x:0,
  30. // y:0
  31. };
  32. setOptionsMenuAnchor(anchor);
  33. toggleOptionsMenu()
  34. }
  35. const handleToggleDislike = () => {
  36. setDisliked(!isDisliked)
  37. setDislikeCounter(isDisliked === true ? dislikeCounter - 1 : dislikeCounter + 1)
  38. }
  39. const handleToggleLike = () => {
  40. setLiked(!isLiked)
  41. setLikeCounter(isLiked === true ? likeCounter - 1 : likeCounter + 1)
  42. }
  43. return (
  44. <Provider>
  45. <View style={styles.commentContainer}>
  46. <View style={styles.header}>
  47. <View style={{ flexDirection: 'row' }}>
  48. <Image source={images.imageCard} style={styles.profileIcon} />
  49. <View style={{ justifyContent: 'center' }}>
  50. <Text style={styles.name}>Semina Gurung</Text>
  51. <Text style={styles.timestamp}>{getTimestamp(timestamp)}</Text>
  52. </View>
  53. </View>
  54. <View>
  55. <Menu
  56. visible={optionsMenuVisible}
  57. onDismiss={closeOptionsMenu}
  58. anchor={ <ButtonWrapper onPress={onOptionsMenuPress} buttonStyle={styles.buttonStyle}>
  59. <LineIcon name='options-vertical' color={styles.icon.color} size={styles.icon.fontSize} />
  60. </ButtonWrapper>}
  61. >
  62. <Menu.Item onPress={() => { }} title="Item 1" />
  63. <Menu.Item onPress={() => { }} title="Item 2" />
  64. <Menu.Item onPress={() => { }} title="Item 3" />
  65. </Menu>
  66. </View>
  67. </View>
  68. <Text style={{ paddingVertical: fonts.getSize(13), fontFamily: fonts.type.regular, fontSize: fonts.getSize(11) }}>
  69. Lorem Ip sum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply du
  70. </Text>
  71. <View style={styles.header}>
  72. <View style={{ flexDirection: 'row', alignItems: 'center' }}>
  73. <View style={{ flexDirection: 'row', paddingRight: fonts.getSize(16) }}>
  74. <Image source={images.imageCard} style={styles.replyIcon} />
  75. <Image source={images.imageCard} style={styles.replyIcon} />
  76. <Image source={images.imageCard} style={styles.replyIcon} />
  77. </View>
  78. <Text style={styles.utilText}>View 14 replies</Text>
  79. </View>
  80. <View style={styles.utilContainer}>
  81. <ButtonWrapper
  82. buttonStyle={styles.utilButtons}
  83. onPress={() => {
  84. handleToggleLike()
  85. }}
  86. >
  87. <Text style={styles.utilText}>{`${likeCounter}`}</Text>
  88. <AntIcon name={isLiked ? "like1" : "like2"} color={styles.icon.color} size={16} />
  89. </ButtonWrapper>
  90. <ButtonWrapper
  91. buttonStyle={styles.utilButtons}
  92. onPress={() => {
  93. handleToggleDislike()
  94. }}
  95. >
  96. <Text style={styles.utilText}>{`${dislikeCounter}`}</Text>
  97. <AntIcon name={isDisliked ? "dislike1" : "dislike2"} color={styles.icon.color} size={16} />
  98. </ButtonWrapper>
  99. </View>
  100. </View>
  101. </View>
  102. </Provider>
  103. )
  104. }
  105. export default CommentCard
  106. const styles = StyleSheet.create({
  107. header: {
  108. flexDirection: 'row',
  109. alignItems: 'center',
  110. justifyContent: 'space-between'
  111. },
  112. commentContainer: {
  113. width: '100%',
  114. height: 150,
  115. // height: 'auto',
  116. paddingVertical: fonts.getSize(4)
  117. },
  118. profileIcon: {
  119. height: 42,
  120. width: 42,
  121. borderRadius: 42,
  122. marginRight: fonts.getSize(8),
  123. },
  124. buttonStyle: {
  125. alignItems: 'center',
  126. justifyContent: 'center',
  127. height: 'auto',
  128. width: 'auto'
  129. },
  130. icon: {
  131. color: colors.topColor,
  132. fontSize: fonts.getSize(16)
  133. },
  134. name: {
  135. fontFamily: fonts.type.regular,
  136. color: colors.black,
  137. fontSize: fonts.getSize(12)
  138. },
  139. timestamp: {
  140. fontFamily: fonts.type.regular,
  141. color: colors.gray,
  142. fontSize: fonts.getSize(9)
  143. },
  144. replyIcon: {
  145. height: 22,
  146. width: 22,
  147. borderColor: colors.white,
  148. borderWidth: 1,
  149. borderRadius: 24,
  150. marginRight: -8
  151. },
  152. utilContainer: {
  153. flexDirection: 'row',
  154. gap: 12
  155. },
  156. utilButtons: {
  157. flexDirection: 'row',
  158. alignItems: 'baseline'
  159. },
  160. utilText: {
  161. fontFamily: fonts.type.medium,
  162. color: colors.black,
  163. paddingRight: 4
  164. },
  165. })