CategorySection.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. import { StyleSheet, Text, View, ScrollView } from 'react-native'
  2. import React 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, item) => {
  29. result[item] = []
  30. return result
  31. },{}))
  32. setCategoryValue(categoriesHeading[0])
  33. return categoriesHeading
  34. })
  35. .catch((err) => console.log(err))
  36. .finally(() => console.log("Fetch Categories Executed"))
  37. }
  38. const fetchNews = (category) => {
  39. fetch(`http://www.newscout.in/api/v1/article/search/?domain=newscout&category=${category}`)
  40. .then((response) => response.json())
  41. .then((json) => {
  42. updateNewsByCategories(category,json.body.results)
  43. // categories.forEach((category) => {setNews((prev) => ({...prev,[category]:json.body.results}))})
  44. return json.body.results
  45. })
  46. .catch((err) => console.log(err))
  47. .finally(() => console.log("Fetch News Executed"))
  48. // .then((json) => console.log(`on func ${news[category]}\n${json.results}`))
  49. // .catch((err) => console.log(err))
  50. // .finally(() => console.log("Fetch News Executed"))
  51. }
  52. useConstructor( () => {
  53. fetchCategories()
  54. console.log(`construct ${categories}`)
  55. for (let category in categories) {
  56. fetchNews(category)
  57. }
  58. })
  59. return (
  60. <View style={styles.categoriesContainer}>
  61. <SectionHeader label={"Categories"} />
  62. <View style={styles.categoriesPillContainer}>
  63. <ScrollView horizontal showsHorizontalScrollIndicator={false}>
  64. <ToggleButton.Group onValueChange={value => { setCategoryValue(value) }}>
  65. {
  66. categories.map((category) =>
  67. <ToggleButton
  68. key={category}
  69. icon={() => <Text style={[category === categoryValue ? styles.selectedPillText : styles.pillText]}>{category}</Text>}
  70. style={[category === categoryValue ? styles.selectedContainer : styles.container, { marginHorizontal: fonts.getSize(4) }]}
  71. value={category}
  72. />)
  73. }
  74. </ToggleButton.Group>
  75. </ScrollView>
  76. </View>
  77. <ScrollView showsVerticalScrollIndicator={false}>
  78. <View style={styles.categoriesNewsContainer}>
  79. <Text>{console.log(`on html ${news[categoryValue]}`)}</Text>
  80. {/* {news[categoryValue].map((item) => <HorizontalNewsCardVariant key={news.indexOf(item)} style={{ marginBottom: fonts.getSize(20) }} onPress={true} />) } */}
  81. </View>
  82. </ScrollView>
  83. </View>
  84. )
  85. }
  86. export default CategorySection
  87. const styles = StyleSheet.create({
  88. categoriesTitle: {
  89. flexDirection: 'row',
  90. paddingTop: fonts.getSize(20),
  91. paddingHorizontal: fonts.getSize(20)
  92. },
  93. categoriesTitleText: {
  94. flex: 1,
  95. fontFamily: fonts.type.semibold,
  96. fontSize: fonts.getSize(16),
  97. color: colors.black
  98. },
  99. categoriesPillContainer: {
  100. paddingBottom: fonts.getSize(8),
  101. flexDirection: 'row',
  102. alignItems: 'space-between',
  103. paddingHorizontal: fonts.getSize(16)
  104. },
  105. container: {
  106. borderRadius: fonts.getSize(18),
  107. paddingVertical: fonts.getSize(8),
  108. paddingHorizontal: fonts.getSize(16),
  109. backgroundColor: colors.white,
  110. width: 'auto'
  111. },
  112. selectedContainer: {
  113. paddingVertical: fonts.getSize(8),
  114. paddingHorizontal: fonts.getSize(16),
  115. backgroundColor: colors.topVariantColor,
  116. borderRadius: fonts.getSize(18),
  117. width: 'auto'
  118. },
  119. selectedPillText: {
  120. fontFamily: fonts.type.semibold,
  121. fontSize: fonts.getSize(12),
  122. color: colors.white
  123. },
  124. pillText: {
  125. fontFamily: fonts.type.semibold,
  126. fontSize: fonts.getSize(12),
  127. color: colors.quaternaryColor
  128. },
  129. categoriesNewsContainer: {
  130. paddingHorizontal: fonts.getSize(16),
  131. paddingTop: fonts.getSize(10),
  132. gap: 8
  133. }
  134. })