RecentNewsSection.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'
  2. import React from 'react'
  3. import fonts from '../../../theme/fonts'
  4. import colors from '../../../theme/colors'
  5. import ImageBGCard from '../Cards/ImageBGCard'
  6. import images from '../../../assets/images/images'
  7. import SectionHeader from '../Headers/SectionHeader'
  8. import metrics from '../../../theme/metrics'
  9. import Carousel from 'react-native-reanimated-carousel';
  10. import MaterialComIcon from 'react-native-vector-icons/MaterialCommunityIcons'
  11. import { useConstructor } from '../../../utils/Constants/functions'
  12. const ITEM_WIDTH = Math.round(metrics.screenWidth * 0.9);
  13. const ITEM_HEIGHT = Math.round(ITEM_WIDTH * 3 / 4);
  14. const RecentNewsSection = () => {
  15. const [currentCardIndex, setCurrentCardIndex] = React.useState(0)
  16. const updateCurrentIndex = (index) => {
  17. console.log('current index:', index)
  18. setCurrentCardIndex(index)
  19. }
  20. const [posts,setPosts] = React.useState([{},{},{},{},{}])
  21. const fetchPosts = () => {
  22. fetch("http://www.newscout.in/api/v1/article/search/?domain=newscout&category=Sector%20Updates")
  23. .then((res) => res.json())
  24. .then((json) => {
  25. const postData = json.body.results
  26. const finalPostData = postData.map((item)=> ({
  27. image:item.cover_image,
  28. author: item.author,
  29. headline: item.title,
  30. id: item.id,
  31. }))
  32. setPosts(finalPostData)
  33. return finalPostData
  34. })
  35. .catch((err) => console.log(err))
  36. .finally(() => console.log("Fetch Posts Executed"))
  37. }
  38. useConstructor(function(){
  39. fetchPosts()
  40. })
  41. return (
  42. <View>
  43. <SectionHeader label={"Recent News"} />
  44. <View style={styles.recentCardContainer}>
  45. <Carousel
  46. loop
  47. width={metrics.screenWidth}
  48. height={ITEM_HEIGHT}
  49. style={styles.recentCardContainer}
  50. autoPlay={true}
  51. data={posts}
  52. scrollAnimationDuration={1000}
  53. mode="parallax"
  54. modeConfig={{
  55. parallaxScrollingScale: 1,
  56. parallaxScrollingOffset: 1,
  57. }}
  58. onSnapToItem={(index) => updateCurrentIndex(index)}
  59. renderItem={({index,item}) => (
  60. <View style={{ paddingHorizontal: 16 }}>
  61. <ImageBGCard
  62. image={{uri: item.image} ?? images.imageCard}
  63. author={ item.author ?? "Anonymous Author"}
  64. headline={item.headline ?? `Bruh Moment ${index}`}
  65. />
  66. </View>
  67. )}
  68. />
  69. </View>
  70. <View style={styles.paginationContainer}>
  71. {posts.map((item, index) => {
  72. return <MaterialComIcon key={`dot_${index}`} name={"checkbox-blank-circle"} color={currentCardIndex === index ? colors.tertiaryColor: colors.lightGray} size={12} />
  73. })}
  74. </View>
  75. </View>
  76. )
  77. }
  78. export default RecentNewsSection
  79. const styles = StyleSheet.create({
  80. recentHeader: {
  81. paddingHorizontal: 16,
  82. },
  83. recentHeaderText: {
  84. fontFamily: fonts.type.semibold,
  85. fontSize: fonts.getSize(16),
  86. color: colors.black
  87. },
  88. seeAllText: {
  89. fontFamily: fonts.type.semibold,
  90. color: colors.topColor,
  91. paddingRight: 16,
  92. alignSelf: 'stretch'
  93. },
  94. recentHeaderIcon: {
  95. },
  96. recentCardContainer: {
  97. alignItems: 'center',
  98. paddingHorizontal: 8
  99. },
  100. paginationContainer:{
  101. justifyContent:'flex-end',
  102. alignItems:'center',
  103. paddingHorizontal: 16,
  104. paddingTop:8,
  105. paddingBottom:4,
  106. flexDirection:'row',
  107. gap:2}
  108. })