import { StyleSheet, Text, View, ScrollView } from 'react-native' import React from 'react' import fonts from '../../../theme/fonts' import colors from '../../../theme/colors' import { ToggleButton } from 'react-native-paper' import SectionHeader from '../Headers/SectionHeader' import HorizontalNewsCardVariant from '../Cards/HorizontalNewsCardVariant' import {CATEGORY_URL,ARTICLE_URL} from '../../../utils/Constants/urls' import { useConstructor } from '../../../utils/Constants/functions' // * API Handling const CategorySection = () => { const [news,setNews] = React.useState({}) const updateNewsByCategories = (key, value) => { setNews((prevObject) => ({ ...prevObject, [key]: value, })); }; const [categoryValue, setCategoryValue] = React.useState(''); const [categories, setCategories] = React.useState([]) const fetchCategories = () => { fetch( `http://www.newscout.in/api/v1/menus/?domain=newscout`) .then((res) => res.json()) .then((json) => { let categoriesHeading = json.body.results.map((item) => item.heading.name) setCategories(categoriesHeading) setNews(categoriesHeading.reduce((result, item) => { result[item] = [] return result },{})) setCategoryValue(categoriesHeading[0]) return categoriesHeading }) .catch((err) => console.log(err)) .finally(() => console.log("Fetch Categories Executed")) } const fetchNews = (category) => { fetch(`http://www.newscout.in/api/v1/article/search/?domain=newscout&category=${category}`) .then((response) => response.json()) .then((json) => { updateNewsByCategories(category,json.body.results) // categories.forEach((category) => {setNews((prev) => ({...prev,[category]:json.body.results}))}) return json.body.results }) .catch((err) => console.log(err)) .finally(() => console.log("Fetch News Executed")) // .then((json) => console.log(`on func ${news[category]}\n${json.results}`)) // .catch((err) => console.log(err)) // .finally(() => console.log("Fetch News Executed")) } useConstructor( () => { fetchCategories() console.log(`construct ${categories}`) for (let category in categories) { fetchNews(category) } }) return ( { setCategoryValue(value) }}> { categories.map((category) => {category}} style={[category === categoryValue ? styles.selectedContainer : styles.container, { marginHorizontal: fonts.getSize(4) }]} value={category} />) } {console.log(`on html ${news[categoryValue]}`)} {/* {news[categoryValue].map((item) => ) } */} ) } export default CategorySection const styles = StyleSheet.create({ categoriesTitle: { flexDirection: 'row', paddingTop: fonts.getSize(20), paddingHorizontal: fonts.getSize(20) }, categoriesTitleText: { flex: 1, fontFamily: fonts.type.semibold, fontSize: fonts.getSize(16), color: colors.black }, categoriesPillContainer: { paddingBottom: fonts.getSize(8), flexDirection: 'row', alignItems: 'space-between', paddingHorizontal: fonts.getSize(16) }, container: { borderRadius: fonts.getSize(18), paddingVertical: fonts.getSize(8), paddingHorizontal: fonts.getSize(16), backgroundColor: colors.white, width: 'auto' }, selectedContainer: { paddingVertical: fonts.getSize(8), paddingHorizontal: fonts.getSize(16), backgroundColor: colors.topVariantColor, borderRadius: fonts.getSize(18), width: 'auto' }, selectedPillText: { fontFamily: fonts.type.semibold, fontSize: fonts.getSize(12), color: colors.white }, pillText: { fontFamily: fonts.type.semibold, fontSize: fonts.getSize(12), color: colors.quaternaryColor }, categoriesNewsContainer: { paddingHorizontal: fonts.getSize(16), paddingTop: fonts.getSize(10), gap: 8 } })