CategorySection.js 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. import {StyleSheet, Text, View, ScrollView} from 'react-native';
  2. import React, {useEffect} from 'react';
  3. import fonts from '../../../theme/fonts';
  4. import colors from '../../../theme/colors';
  5. import {ToggleButton} from 'react-native-paper';
  6. import SectionHeader from '../Headers/SectionHeader';
  7. import HorizontalNewsCardVariant from '../Cards/HorizontalNewsCardVariant';
  8. import {
  9. CATEGORY_URL,
  10. ARTICLE_URL,
  11. PAGINATE_BY,
  12. } from '../../../utils/Constants/constants';
  13. import {useConstructor} from '../../../utils/Constants/functions';
  14. // * API Handling
  15. const CategorySection = () => {
  16. const [news, setNews] = React.useState({all: []});
  17. const updateNewsByCategories = (key, value) => {
  18. setNews(prevObject => ({
  19. ...prevObject,
  20. [key]: value,
  21. }));
  22. };
  23. const [categoryValue, setCategoryValue] = React.useState('');
  24. const [categories, setCategories] = React.useState([]);
  25. const fetchCategories = () => {
  26. fetch(`http://www.newscout.in/api/v1/menus/?domain=newscout`)
  27. .then(res => res.json())
  28. .then(json => {
  29. let categoriesHeading = json.body.results.map(
  30. item => item.heading.name,
  31. );
  32. setCategories(categoriesHeading);
  33. setNews({});
  34. setNews(
  35. categoriesHeading.reduce(
  36. (result, key) => ({...result, [key]: []}),
  37. {},
  38. ),
  39. ),
  40. setCategoryValue(categoriesHeading[0]);
  41. return categoriesHeading;
  42. })
  43. .then(cats => {
  44. cats.forEach(cat => {
  45. fetchNews(cat);
  46. });
  47. return cats;
  48. })
  49. .catch(err => console.log(err))
  50. .finally(() => console.log('Fetch Categories Executed'));
  51. };
  52. const fetchNews = category => {
  53. fetch(
  54. `http://www.newscout.in/api/v1/article/search/?domain=newscout&category=${category}`,
  55. )
  56. .then(res => res.json())
  57. .then(data => {
  58. const newsDataFetch = data.body.results;
  59. const finalNewsData = newsDataFetch
  60. .slice(0, PAGINATE_BY)
  61. .map(article => ({
  62. headline: article.title,
  63. image: {uri: article.cover_image},
  64. category: article.category,
  65. root_category: article.root_category,
  66. timestamp: article.published_on,
  67. tagline: 'Bruh Momento Oi Lorem Ipsum di rubi rabbi',
  68. id: article.id,
  69. }));
  70. updateNewsByCategories(category, finalNewsData);
  71. // categories.forEach((category) => {setNews((prev) => ({...prev,[category]:json.body.results}))})
  72. return finalNewsData;
  73. })
  74. .catch(err => console.log(err))
  75. .finally(() => console.log('Fetch Category News Executed'));
  76. };
  77. useConstructor(() => {
  78. const cat_data = fetchCategories();
  79. //console.log(`construct ${categories}`)
  80. // for (let category in cat_data) {
  81. // updateNewsByCategories(category,fetchNews(category))
  82. // }
  83. });
  84. // useEffect(() => {
  85. // for (let category in cat_data) {
  86. // fetchNews(category)
  87. // }
  88. // })
  89. return (
  90. <View style={styles.categoriesContainer}>
  91. <SectionHeader label={'Categories'} />
  92. <View style={styles.categoriesPillContainer}>
  93. <ScrollView horizontal showsHorizontalScrollIndicator={false}>
  94. <ToggleButton.Group
  95. onValueChange={value => {
  96. setCategoryValue(value);
  97. }}>
  98. {categories.map(category => (
  99. <ToggleButton
  100. key={category}
  101. icon={() => (
  102. <Text
  103. style={[
  104. category === categoryValue
  105. ? styles.selectedPillText
  106. : styles.pillText,
  107. ]}>
  108. {category}
  109. </Text>
  110. )}
  111. style={[
  112. category === categoryValue
  113. ? styles.selectedContainer
  114. : styles.container,
  115. {marginHorizontal: fonts.getSize(4)},
  116. ]}
  117. value={category}
  118. />
  119. ))}
  120. </ToggleButton.Group>
  121. </ScrollView>
  122. </View>
  123. <ScrollView showsVerticalScrollIndicator={false}>
  124. <View style={styles.categoriesNewsContainer}>
  125. {news[categoryValue] !== undefined ? (
  126. news[categoryValue].map(item => (
  127. <HorizontalNewsCardVariant
  128. headline={item.headline}
  129. image={item.image}
  130. timestamp={item.timestamp}
  131. tagline={item.tagline}
  132. />
  133. ))
  134. ) : (
  135. <Text> News Not Present</Text>
  136. )}
  137. </View>
  138. </ScrollView>
  139. </View>
  140. );
  141. };
  142. export default CategorySection;
  143. const styles = StyleSheet.create({
  144. categoriesTitle: {
  145. flexDirection: 'row',
  146. paddingTop: fonts.getSize(20),
  147. paddingHorizontal: fonts.getSize(20),
  148. },
  149. categoriesTitleText: {
  150. flex: 1,
  151. fontFamily: fonts.type.semibold,
  152. fontSize: fonts.getSize(16),
  153. color: colors.black,
  154. },
  155. categoriesPillContainer: {
  156. paddingBottom: fonts.getSize(8),
  157. flexDirection: 'row',
  158. alignItems: 'space-between',
  159. paddingHorizontal: fonts.getSize(16),
  160. },
  161. container: {
  162. borderRadius: fonts.getSize(18),
  163. paddingVertical: fonts.getSize(8),
  164. paddingHorizontal: fonts.getSize(16),
  165. backgroundColor: colors.white,
  166. width: 'auto',
  167. },
  168. selectedContainer: {
  169. paddingVertical: fonts.getSize(8),
  170. paddingHorizontal: fonts.getSize(16),
  171. backgroundColor: colors.topVariantColor,
  172. borderRadius: fonts.getSize(18),
  173. width: 'auto',
  174. },
  175. selectedPillText: {
  176. fontFamily: fonts.type.semibold,
  177. fontSize: fonts.getSize(12),
  178. color: colors.white,
  179. },
  180. pillText: {
  181. fontFamily: fonts.type.semibold,
  182. fontSize: fonts.getSize(12),
  183. color: colors.quaternaryColor,
  184. },
  185. categoriesNewsContainer: {
  186. paddingHorizontal: fonts.getSize(16),
  187. paddingTop: fonts.getSize(10),
  188. gap: 8,
  189. },
  190. });