CategorySection.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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 {CATEGORY_URL,ARTICLE_URL} from '../../../utils/Constants/urls'
  9. import { useConstructor } from '../../../utils/Constants/functions'
  10. // * API Handling
  11. const CategorySection = () => {
  12. const [news,setNews] = React.useState({})
  13. const updateNewsByCategories = (key, value) => {
  14. setNews((prevObject) => ({
  15. ...prevObject,
  16. [key]: value,
  17. }));
  18. };
  19. const [categoryValue, setCategoryValue] = React.useState('');
  20. const [categories, setCategories] = React.useState([])
  21. const fetchCategories = () => {
  22. fetch(
  23. `http://www.newscout.in/api/v1/menus/?domain=newscout`)
  24. .then((res) => res.json())
  25. .then((json) => {
  26. let categoriesHeading = json.body.results.map((item) => item.heading.name)
  27. setCategories(categoriesHeading)
  28. setNews(categoriesHeading.reduce((result, key) => ({ ...result, [key]: []}), {})),
  29. setCategoryValue(categoriesHeading[0])
  30. return categoriesHeading
  31. })
  32. .catch((err) => console.log(err))
  33. .finally(() => console.log("Fetch Categories Executed"))
  34. }
  35. const fetchNews = (category) => {
  36. fetch(`http://www.newscout.in/api/v1/article/search/?domain=newscout&category=${category}`)
  37. .then(res => res.json())
  38. .then((json) => {
  39. const newsDataFetch = json.body.results
  40. const finalNewsData = newsDataFetch.map((article) => ({
  41. headline: article.title,
  42. image: article.cover_image,
  43. category: article.category,
  44. root_category: article.root_category,
  45. timestamp: article.published_on,
  46. tagline: "Bruh Momento Oi Lorem Ipsum di rubi rabbi",
  47. id:article.id
  48. }),
  49. updateNewsByCategories(category,finalNewsData))
  50. // categories.forEach((category) => {setNews((prev) => ({...prev,[category]:json.body.results}))})
  51. return newsDataFetch
  52. })
  53. .catch((err) => console.log(err))
  54. .finally(() => console.log("Fetch Category News Executed"))
  55. }
  56. useConstructor( () => {
  57. const cat_data = fetchCategories()
  58. // console.log(`construct ${categories}`)
  59. for (let category in cat_data) {
  60. fetchNews(category)
  61. }
  62. })
  63. return (
  64. <View style={styles.categoriesContainer}>
  65. <SectionHeader label={"Categories"} />
  66. <View style={styles.categoriesPillContainer}>
  67. <ScrollView horizontal showsHorizontalScrollIndicator={false}>
  68. <ToggleButton.Group onValueChange={value => { setCategoryValue(value) }}>
  69. {
  70. categories.map((category) =>
  71. <ToggleButton
  72. key={category}
  73. icon={() => <Text style={[category === categoryValue ? styles.selectedPillText : styles.pillText]}>{category}</Text>}
  74. style={[category === categoryValue ? styles.selectedContainer : styles.container, { marginHorizontal: fonts.getSize(4) }]}
  75. value={category}
  76. />)
  77. }
  78. </ToggleButton.Group>
  79. </ScrollView>
  80. </View>
  81. <ScrollView showsVerticalScrollIndicator={false}>
  82. <View style={styles.categoriesNewsContainer}>
  83. <Text>{console.log(news)}</Text>
  84. {/* {news['Regional Updates'].map((item) => <HorizontalNewsCardVariant />)} */}
  85. </View>
  86. </ScrollView>
  87. </View>
  88. )
  89. }
  90. export default CategorySection
  91. const styles = StyleSheet.create({
  92. categoriesTitle: {
  93. flexDirection: 'row',
  94. paddingTop: fonts.getSize(20),
  95. paddingHorizontal: fonts.getSize(20)
  96. },
  97. categoriesTitleText: {
  98. flex: 1,
  99. fontFamily: fonts.type.semibold,
  100. fontSize: fonts.getSize(16),
  101. color: colors.black
  102. },
  103. categoriesPillContainer: {
  104. paddingBottom: fonts.getSize(8),
  105. flexDirection: 'row',
  106. alignItems: 'space-between',
  107. paddingHorizontal: fonts.getSize(16)
  108. },
  109. container: {
  110. borderRadius: fonts.getSize(18),
  111. paddingVertical: fonts.getSize(8),
  112. paddingHorizontal: fonts.getSize(16),
  113. backgroundColor: colors.white,
  114. width: 'auto'
  115. },
  116. selectedContainer: {
  117. paddingVertical: fonts.getSize(8),
  118. paddingHorizontal: fonts.getSize(16),
  119. backgroundColor: colors.topVariantColor,
  120. borderRadius: fonts.getSize(18),
  121. width: 'auto'
  122. },
  123. selectedPillText: {
  124. fontFamily: fonts.type.semibold,
  125. fontSize: fonts.getSize(12),
  126. color: colors.white
  127. },
  128. pillText: {
  129. fontFamily: fonts.type.semibold,
  130. fontSize: fonts.getSize(12),
  131. color: colors.quaternaryColor
  132. },
  133. categoriesNewsContainer: {
  134. paddingHorizontal: fonts.getSize(16),
  135. paddingTop: fonts.getSize(10),
  136. gap: 8
  137. }
  138. })