NewsDetailPage.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. import {
  2. StyleSheet,
  3. Text,
  4. View,
  5. TouchableWithoutFeedback,
  6. ScrollView,
  7. Image,
  8. Linking,
  9. } from 'react-native';
  10. import React, { useCallback } from 'react';
  11. import NewscoutTitleHeader from '../../components/molecules/Header/NewscoutTitleHeader';
  12. import MaterialIcon from 'react-native-vector-icons/MaterialIcons';
  13. import colors from '../../constants/colors';
  14. import {
  15. horizontalScale,
  16. moderateScale,
  17. verticalScale,
  18. } from '../../constants/metrics';
  19. import {
  20. getArticleBySlug,
  21. getCommentByArticleID,
  22. getRecommendationByArticleID,
  23. } from '../../api/data';
  24. import LoadingScreen from '../../components/organisms/Sections/LoadingScreen';
  25. import {
  26. getTimestamp,
  27. navigateToArticle,
  28. useConstructor,
  29. } from '../../constants/functions';
  30. import fonts from '../../constants/fonts';
  31. import BookmarkButton from '../../components/atoms/Buttons/BookmarkButton';
  32. import ShareButton from '../../components/atoms/Buttons/ShareButton';
  33. import IonIcon from 'react-native-vector-icons/Ionicons';
  34. import {
  35. BottomSheetModal,
  36. BottomSheetModalProvider,
  37. BottomSheetView,
  38. BottomSheetScrollView,
  39. } from '@gorhom/bottom-sheet';
  40. import ButtonWrapper from '../../components/atoms/Buttons/ButtonWrapper';
  41. import images from '../../assets/images/images';
  42. import SectionHeader from '../../components/molecules/Header/SectionHeader';
  43. import VerticalNewsCard from '../../components/molecules/Cards/VerticalNewsCard';
  44. import { TextInput } from 'react-native-paper';
  45. import FormTextInput from '../../components/atoms/Input/FormTextInput';
  46. import OctiIcon from 'react-native-vector-icons/Octicons'
  47. const NewsDetailPage = props => {
  48. const { navigation, route } = props;
  49. const { id, slug } = route.params;
  50. const [isLoading, setLoading] = React.useState(true);
  51. const [article, setArticle] = React.useState({});
  52. const [comments, setComments] = React.useState({
  53. total_article_likes: 0,
  54. results: [],
  55. });
  56. const [recommendations, setRecommendations] = React.useState([]);
  57. const mainPageRef = React.useRef(null);
  58. const bottomSheetModalRef = React.useRef('');
  59. // Comments Modal
  60. const snapPoints = React.useMemo(() => ['70%', '100%'], []);
  61. const handlePresentModalPress = useCallback(() => {
  62. bottomSheetModalRef.current?.present();
  63. }, []);
  64. const handleCloseModalPress = () => bottomSheetModalRef.current.close();
  65. const handleSheetChanges = useCallback(index => {
  66. console.log('handleSheetChanges', index);
  67. }, []);
  68. const fetchArticle = slug => {
  69. getArticleBySlug(slug)
  70. .then(res => {
  71. console.log(res.data);
  72. setArticle(res.data.body.article);
  73. setLoading(false);
  74. })
  75. .catch(error => console.log(error));
  76. };
  77. const fetchComments = id => {
  78. getCommentByArticleID(id)
  79. .then(res => {
  80. console.log(res.data.body);
  81. setComments(res.data.body);
  82. })
  83. .catch(err => console.log(err));
  84. };
  85. const fetchRecommendations = id => {
  86. getRecommendationByArticleID(id)
  87. .then(res => setRecommendations(res.data.body.results))
  88. .catch(err => console.log(err));
  89. };
  90. useConstructor(function () {
  91. fetchArticle(slug);
  92. fetchComments(id);
  93. fetchRecommendations(id);
  94. });
  95. const styles = StyleSheet.create({
  96. container: { backgroundColor: colors().dominant, minHeight: '100%' },
  97. newsContainer: { paddingHorizontal: horizontalScale(16) },
  98. newsTitle: {
  99. fontFamily: fonts.type.semibold,
  100. color: colors().recessive,
  101. fontSize: moderateScale(16),
  102. },
  103. hashTags: {
  104. paddingVertical: verticalScale(8),
  105. flexDirection: 'row',
  106. gap: horizontalScale(8)
  107. },
  108. hashTag: {
  109. color: colors().primaryColor,
  110. backgroundColor: colors().dominant_variant,
  111. padding: moderateScale(4),
  112. paddingHorizontal: horizontalScale(8),
  113. fontFamily: fonts.type.semibold,
  114. borderRadius: moderateScale(8),
  115. fontSize: moderateScale(10)
  116. },
  117. newsDescriptorContainer: {
  118. flexDirection: 'row',
  119. gap: horizontalScale(8),
  120. },
  121. newsDescriptor: {
  122. color: colors().recessive,
  123. fontFamily: fonts.type.semibold,
  124. fontSize: moderateScale(12),
  125. },
  126. imagesContainer: {
  127. width: 'auto',
  128. height: verticalScale(200),
  129. marginTop: verticalScale(16),
  130. },
  131. image: {
  132. borderRadius: moderateScale(4),
  133. width: '100%',
  134. height: '100%',
  135. },
  136. buttonStyle: {
  137. padding: moderateScale(8),
  138. },
  139. commentSection: {
  140. alignItems: 'center',
  141. justifyContent: 'center',
  142. flexDirection: 'row',
  143. gap: moderateScale(8),
  144. paddingLeft: horizontalScale(4),
  145. },
  146. commentText: {
  147. fontFamily: fonts.type.regular,
  148. color: colors().grayShade_200,
  149. },
  150. commentInputContainer: {
  151. flexDirection: 'row',
  152. justifyContent: 'space-between',
  153. alignItems: 'center',
  154. paddingVertical: verticalScale(4),
  155. },
  156. profileImage: {
  157. height: 42,
  158. width: 42,
  159. borderRadius: 32,
  160. marginRight: horizontalScale(16),
  161. marginVertical: verticalScale(8),
  162. backgroundColor: colors().primaryColor
  163. },
  164. commentInput: {
  165. marginVertical: verticalScale(16),
  166. alignItems: 'stretch',
  167. // backgroundColor: colors().black_variant,
  168. flexDirection: 'row',
  169. flex: 1
  170. // paddingVertical: verticalScale(16)
  171. // width:'100%'
  172. },
  173. utilButtons: {
  174. flexDirection: 'row',
  175. justifyContent: 'space-between',
  176. paddingVertical: verticalScale(4),
  177. },
  178. newsText: {
  179. color: colors().recessive_variant,
  180. fontFamily: fonts.type.regular,
  181. lineHeight: verticalScale(24),
  182. paddingVertical: verticalScale(4),
  183. },
  184. backToTop: {
  185. alignItems: 'center',
  186. justifyContent: 'center',
  187. paddingTop: verticalScale(16),
  188. paddingBottom: verticalScale(8),
  189. },
  190. backToTopText: {
  191. color: colors().primaryColor,
  192. fontFamily: fonts.type.medium,
  193. textDecorationLine: 'underline',
  194. fontSize: moderateScale(16),
  195. },
  196. recommendationContainer: {
  197. paddingHorizontal: horizontalScale(16),
  198. gap: moderateScale(4),
  199. paddingBottom: verticalScale(16),
  200. backgroundColor: colors().dominant,
  201. flexDirection: 'row',
  202. },
  203. heading: {
  204. flexDirection: 'row',
  205. gap: horizontalScale(8)
  206. }
  207. });
  208. return (
  209. <BottomSheetModalProvider>
  210. <ScrollView ref={mainPageRef} contentContainerStyle={styles.container}>
  211. <NewscoutTitleHeader headerStyle={{elevation: 0}}
  212. backButtonShown
  213. onBackClick={() => navigation.goBack()}>
  214. <TouchableWithoutFeedback onPress={() => navigation.toggleDrawer()}>
  215. <OctiIcon name="three-bars" color={colors().primaryColor} size={moderateScale(24)} />
  216. </TouchableWithoutFeedback>
  217. </NewscoutTitleHeader>
  218. {isLoading === true ? (
  219. <LoadingScreen />
  220. ) : (
  221. <View style={styles.newsContainer}>
  222. <Text style={styles.newsTitle}
  223. onPress={() => Linking.openURL(article.source_url)}
  224. >{article.title}</Text>
  225. <ScrollView horizontal showsHorizontalScrollIndicator={false} contentContainerStyle={styles.hashTags}>
  226. {
  227. article.hash_tags.map(item => <Text style={styles.hashTag}>#{item}</Text>)
  228. }
  229. </ScrollView>
  230. <View style={styles.newsDescriptorContainer}>
  231. <Text style={styles.newsDescriptor}>
  232. {getTimestamp(article.published_on)}
  233. </Text>
  234. {(article.author !== undefined || article.author.length <= 0) ?? (
  235. <Text style={styles.newsDescriptor}>By {article.author}</Text>
  236. )}
  237. <Text style={styles.newsDescriptor}>{article.source}</Text>
  238. </View>
  239. <View style={styles.imagesContainer}>
  240. <Image source={{ uri: article.cover_image }} style={styles.image} />
  241. </View>
  242. <View style={styles.utilButtons}>
  243. <TouchableWithoutFeedback onPress={handlePresentModalPress}>
  244. <View style={styles.commentSection}>
  245. <IonIcon
  246. name="chatbubble-outline"
  247. size={moderateScale(20)}
  248. color={colors().primaryColor}
  249. />
  250. <Text style={styles.commentText}>
  251. {comments.results.length ?? 0} COMMENTS
  252. </Text>
  253. </View>
  254. </TouchableWithoutFeedback>
  255. <View style={{ flexDirection: 'row' }}>
  256. <BookmarkButton
  257. buttonStyle={styles.buttonStyle}
  258. iconSize={20}
  259. onPress={true}
  260. />
  261. <ShareButton
  262. buttonStyle={styles.buttonStyle}
  263. iconSize={20}
  264. onPress={true}
  265. />
  266. </View>
  267. </View>
  268. <Text style={styles.newsText}>{article.blurb}</Text>
  269. <View style={styles.backToTop}>
  270. <TouchableWithoutFeedback
  271. onPress={() =>
  272. mainPageRef.current.scrollTo({
  273. y: 0,
  274. })
  275. }>
  276. <Text style={styles.backToTopText}>Back To Top</Text>
  277. </TouchableWithoutFeedback>
  278. </View>
  279. <>
  280. <BottomSheetModal
  281. ref={bottomSheetModalRef}
  282. index={1}
  283. snapPoints={snapPoints}
  284. onChange={handleSheetChanges}
  285. backgroundStyle={{
  286. backgroundColor: colors().dominant,
  287. minHeight: '100%',
  288. }}
  289. handleStyle={{
  290. backgroundColor: colors().dominant,
  291. }}>
  292. <BottomSheetScrollView>
  293. <BottomSheetView
  294. style={{
  295. paddingHorizontal: horizontalScale(24),
  296. }}>
  297. <BottomSheetView style={styles.commentInputContainer}>
  298. <BottomSheetView style={styles.heading}>
  299. <Text
  300. style={{
  301. fontFamily: fonts.type.semibold,
  302. color: colors().recessive,
  303. fontSize: moderateScale(16),
  304. }}>
  305. Comments
  306. </Text>
  307. <Text
  308. style={{
  309. fontFamily: fonts.type.semibold,
  310. color: colors().recessive,
  311. fontSize: moderateScale(16),
  312. color: colors().primaryColor
  313. }}>
  314. {comments.results.length}
  315. </Text>
  316. </BottomSheetView>
  317. <ButtonWrapper onPress={handleCloseModalPress}>
  318. <IonIcon
  319. name="close-sharp"
  320. size={moderateScale(20)}
  321. color={colors().recessive}
  322. />
  323. </ButtonWrapper>
  324. </BottomSheetView>
  325. <BottomSheetView style={styles.commentInput}>
  326. <Image
  327. source={images.imageCard}
  328. style={[styles.profileImage]}
  329. />
  330. {/* <View style={{}}> */}
  331. <TextInput
  332. multiline
  333. mode="outlined"
  334. placeholder='Add your Comment Here'
  335. placeholderTextColor={colors().grayShade_400}
  336. dense
  337. style={{
  338. backgroundColor: colors().dominant,
  339. height: verticalScale(64),
  340. // justifyContent:'',
  341. flexGrow: 1
  342. }}
  343. contentStyle={{
  344. color: colors().recessive,
  345. fontFamily: fonts.type.regular,
  346. fontSize: moderateScale(16),
  347. }}
  348. outlineStyle={{
  349. borderRadius: moderateScale(16),
  350. borderColor: colors().secondaryColor
  351. // borderColor: colors().dominant,
  352. }}
  353. cursorColor={colors().primaryColor}
  354. />
  355. {/* <FormTextInput/> */}
  356. {/* </View> */}
  357. </BottomSheetView>
  358. <>
  359. <Text
  360. style={{
  361. fontFamily: fonts.type.medium,
  362. color: colors().recessive,
  363. paddingBottom: verticalScale(8),
  364. }}>
  365. View all Comments({comments.results.length})
  366. </Text>
  367. </>
  368. <BottomSheetView style={{ gap: moderateScale(16) }}>
  369. {comments.results.length <= 0 ? (
  370. <LoadingScreen />
  371. ) : (
  372. comments.results.map(() => <CommentCard />)
  373. )}
  374. </BottomSheetView>
  375. </BottomSheetView>
  376. </BottomSheetScrollView>
  377. </BottomSheetModal>
  378. </>
  379. </View>
  380. )}
  381. <SectionHeader label={'Recommendations'} />
  382. <ScrollView
  383. horizontal
  384. contentContainerStyle={styles.recommendationContainer}
  385. style={{ flexDirection: 'row' }}
  386. showsHorizontalScrollIndicator={false}>
  387. {recommendations.map(item => (
  388. <VerticalNewsCard
  389. image={{ uri: item.cover_image }}
  390. headline={item.title}
  391. timestamp={item.published_on}
  392. onPress={() => navigateToArticle(navigation, item.id, item.slug)}
  393. />
  394. ))}
  395. </ScrollView>
  396. </ScrollView>
  397. </BottomSheetModalProvider>
  398. );
  399. };
  400. export default NewsDetailPage;