CommentCard.js 6.0 KB

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