CommentCard.js 6.6 KB

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