NewsDetailPage.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  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 '../../utils/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. flexDirection: 'row',
  168. flex: 1
  169. },
  170. utilButtons: {
  171. flexDirection: 'row',
  172. justifyContent: 'space-between',
  173. paddingVertical: verticalScale(4),
  174. },
  175. newsText: {
  176. color: colors().recessive_variant,
  177. fontFamily: fonts.type.regular,
  178. lineHeight: verticalScale(24),
  179. paddingVertical: verticalScale(4),
  180. },
  181. backToTop: {
  182. alignItems: 'center',
  183. justifyContent: 'center',
  184. paddingTop: verticalScale(16),
  185. paddingBottom: verticalScale(8),
  186. },
  187. backToTopText: {
  188. color: colors().primaryColor,
  189. fontFamily: fonts.type.medium,
  190. textDecorationLine: 'underline',
  191. fontSize: moderateScale(16),
  192. },
  193. recommendationContainer: {
  194. paddingHorizontal: horizontalScale(16),
  195. gap: moderateScale(4),
  196. paddingBottom: verticalScale(16),
  197. backgroundColor: colors().dominant,
  198. flexDirection: 'row',
  199. },
  200. heading: {
  201. flexDirection: 'row',
  202. gap: horizontalScale(8)
  203. }
  204. });
  205. return (
  206. <BottomSheetModalProvider>
  207. <ScrollView ref={mainPageRef} contentContainerStyle={styles.container}>
  208. <NewscoutTitleHeader headerStyle={{elevation: 0}}
  209. backButtonShown
  210. onBackClick={() => navigation.goBack()}>
  211. <TouchableWithoutFeedback onPress={() => navigation.toggleDrawer()}>
  212. <OctiIcon name="three-bars" color={colors().primaryColor} size={moderateScale(24)} />
  213. </TouchableWithoutFeedback>
  214. </NewscoutTitleHeader>
  215. {isLoading === true ? (
  216. <LoadingScreen />
  217. ) : (
  218. <View style={styles.newsContainer}>
  219. <Text style={styles.newsTitle}
  220. onPress={() => Linking.openURL(article.source_url)}
  221. >{article.title}</Text>
  222. <ScrollView horizontal showsHorizontalScrollIndicator={false} contentContainerStyle={styles.hashTags}>
  223. {
  224. article.hash_tags.map(item => <Text style={styles.hashTag}>#{item}</Text>)
  225. }
  226. </ScrollView>
  227. <View style={styles.newsDescriptorContainer}>
  228. <Text style={styles.newsDescriptor}>
  229. {getTimestamp(article.published_on)}
  230. </Text>
  231. {(article.author !== undefined || article.author.length <= 0) ?? (
  232. <Text style={styles.newsDescriptor}>By {article.author}</Text>
  233. )}
  234. <Text style={styles.newsDescriptor}>{article.source}</Text>
  235. </View>
  236. <View style={styles.imagesContainer}>
  237. <Image source={{ uri: article.cover_image }} style={styles.image} />
  238. </View>
  239. <View style={styles.utilButtons}>
  240. <TouchableWithoutFeedback onPress={handlePresentModalPress}>
  241. <View style={styles.commentSection}>
  242. <IonIcon
  243. name="chatbubble-outline"
  244. size={moderateScale(20)}
  245. color={colors().primaryColor}
  246. />
  247. <Text style={styles.commentText}>
  248. {comments.results.length ?? 0} COMMENTS
  249. </Text>
  250. </View>
  251. </TouchableWithoutFeedback>
  252. <View style={{ flexDirection: 'row' }}>
  253. <BookmarkButton
  254. buttonStyle={styles.buttonStyle}
  255. iconSize={20}
  256. onPress={true}
  257. />
  258. <ShareButton
  259. buttonStyle={styles.buttonStyle}
  260. iconSize={20}
  261. onPress={true}
  262. />
  263. </View>
  264. </View>
  265. <Text style={styles.newsText}>{article.blurb}</Text>
  266. <View style={styles.backToTop}>
  267. <TouchableWithoutFeedback
  268. onPress={() =>
  269. mainPageRef.current.scrollTo({
  270. y: 0,
  271. })
  272. }>
  273. <Text style={styles.backToTopText}>Back To Top</Text>
  274. </TouchableWithoutFeedback>
  275. </View>
  276. <>
  277. <BottomSheetModal
  278. ref={bottomSheetModalRef}
  279. index={1}
  280. snapPoints={snapPoints}
  281. onChange={handleSheetChanges}
  282. backgroundStyle={{
  283. backgroundColor: colors().dominant,
  284. minHeight: '100%',
  285. }}
  286. handleStyle={{
  287. backgroundColor: colors().dominant,
  288. }}>
  289. <BottomSheetScrollView>
  290. <BottomSheetView
  291. style={{
  292. paddingHorizontal: horizontalScale(24),
  293. }}>
  294. <BottomSheetView style={styles.commentInputContainer}>
  295. <BottomSheetView style={styles.heading}>
  296. <Text
  297. style={{
  298. fontFamily: fonts.type.semibold,
  299. color: colors().recessive,
  300. fontSize: moderateScale(16),
  301. }}>
  302. Comments
  303. </Text>
  304. <Text
  305. style={{
  306. fontFamily: fonts.type.semibold,
  307. color: colors().recessive,
  308. fontSize: moderateScale(16),
  309. color: colors().primaryColor
  310. }}>
  311. {comments.results.length}
  312. </Text>
  313. </BottomSheetView>
  314. <ButtonWrapper onPress={handleCloseModalPress}>
  315. <IonIcon
  316. name="close-sharp"
  317. size={moderateScale(20)}
  318. color={colors().recessive}
  319. />
  320. </ButtonWrapper>
  321. </BottomSheetView>
  322. <BottomSheetView style={styles.commentInput}>
  323. <Image
  324. source={images.imageCard}
  325. style={[styles.profileImage]}
  326. />
  327. <TextInput
  328. multiline
  329. mode="outlined"
  330. placeholder='Add your Comment Here'
  331. placeholderTextColor={colors().grayShade_400}
  332. dense
  333. style={{
  334. backgroundColor: colors().dominant,
  335. height: verticalScale(64),
  336. flexGrow: 1
  337. }}
  338. contentStyle={{
  339. color: colors().recessive,
  340. fontFamily: fonts.type.regular,
  341. fontSize: moderateScale(16),
  342. }}
  343. outlineStyle={{
  344. borderRadius: moderateScale(16),
  345. borderColor: colors().secondaryColor
  346. }}
  347. cursorColor={colors().primaryColor}
  348. />
  349. </BottomSheetView>
  350. <>
  351. <Text
  352. style={{
  353. fontFamily: fonts.type.medium,
  354. color: colors().recessive,
  355. paddingBottom: verticalScale(8),
  356. }}>
  357. View all Comments({comments.results.length})
  358. </Text>
  359. </>
  360. <BottomSheetView style={{ gap: moderateScale(16) }}>
  361. {comments.results.length <= 0 ? (
  362. <LoadingScreen />
  363. ) : (
  364. comments.results.map(() => <CommentCard />)
  365. )}
  366. </BottomSheetView>
  367. </BottomSheetView>
  368. </BottomSheetScrollView>
  369. </BottomSheetModal>
  370. </>
  371. </View>
  372. )}
  373. <SectionHeader label={'Recommendations'} isButtonShown={false}/>
  374. <ScrollView
  375. horizontal
  376. contentContainerStyle={styles.recommendationContainer}
  377. style={{ flexDirection: 'row' }}
  378. showsHorizontalScrollIndicator={false}>
  379. {recommendations.map(item => (
  380. <VerticalNewsCard
  381. image={{ uri: item.cover_image }}
  382. headline={item.title}
  383. timestamp={item.published_on}
  384. onPress={() => navigateToArticle(navigation, item.id, item.slug)}
  385. />
  386. ))}
  387. </ScrollView>
  388. </ScrollView>
  389. </BottomSheetModalProvider>
  390. );
  391. };
  392. export default NewsDetailPage;