RecentPostsSection.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import { ScrollView, StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import SectionHeader from '../Headers/SectionHeader'
  4. import fonts from '../../../theme/fonts'
  5. import VerticalNewsCard from '../Cards/VerticalNewsCard'
  6. import { useConstructor } from '../../../utils/Constants/functions'
  7. const RecentPostsSection = () => {
  8. const [posts,setPosts] = React.useState([{},{},{},{},{}])
  9. const fetchPosts = () => {
  10. fetch("http://www.newscout.in/api/v1/article/search/?domain=newscout&category=Sector%20Updates")
  11. .then((res) => res.json())
  12. .then((json) => setPosts(json.body.results))
  13. .then(() => console.log(posts))
  14. .catch((err) => console.log(err))
  15. .finally(() => console.log("Fetch Posts Executed"))
  16. }
  17. useConstructor(function(){
  18. fetchPosts()
  19. })
  20. return (
  21. <View style={styles.container}>
  22. <SectionHeader label={"Recents Posts"}/>
  23. <View style={styles.recentPostsContainer}>
  24. <ScrollView horizontal showsHorizontalScrollIndicator={false}>
  25. {posts.map((item) => <VerticalNewsCard key={posts.indexOf(item)} id={posts.indexOf(item)}/>)}
  26. </ScrollView>
  27. </View>
  28. </View>
  29. )
  30. }
  31. export default RecentPostsSection
  32. const styles = StyleSheet.create({
  33. recentPostsContainer:{
  34. paddingHorizontal: fonts.getSize(16),
  35. gap: fonts.getSize(4),
  36. paddingBottom: fonts.getSize(16)
  37. }
  38. })