RecentNewsSection.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. import { PAGINATE_BY } from '../../../utils/Constants/constants'
  13. // import {Q} from '@nozbe/watermelondb';
  14. // import withObservables from '@nozbe/with-observables';
  15. const ITEM_WIDTH = Math.round(metrics.screenWidth * 0.9);
  16. const ITEM_HEIGHT = Math.round(ITEM_WIDTH * 3 / 4);
  17. /*
  18. Enhanced News Card
  19. */
  20. // const EnhancedImageBGCard = withObservables(['recent_news'], ({news}) => ({
  21. // news: news.observe(),
  22. // }))(ImageBGCard);
  23. const RecentNewsSection = () => {
  24. const [currentCardIndex, setCurrentCardIndex] = React.useState(0)
  25. const updateCurrentIndex = (index) => {
  26. console.log('current index:', index)
  27. setCurrentCardIndex(index)
  28. }
  29. const [posts,setPosts] = React.useState([{},{},{},{},{}])
  30. const fetchPosts = () => {
  31. fetch("http://www.newscout.in/api/v1/trending?domain=newscout")
  32. .then((res) => res.json())
  33. .then((json) => {
  34. let postData = json.body.results
  35. // const finalPostData = postData.slice(0,5).map((item)=> ({
  36. // image:item.cover_image,
  37. // author: item.author,
  38. // headline: item.title,
  39. // id: item.id,
  40. // }))
  41. let buffer = []
  42. postData.slice(0,PAGINATE_BY).forEach((item) => buffer.push(...item.articles))
  43. // let buffer = []
  44. // for (const item of postData.slice(0,PAGINATE_BY)) {
  45. // buffer.push(...item.articles)
  46. // }
  47. // console.log(`Bruh ` + buffer)
  48. const finalPostData = buffer.map((item)=> ({
  49. image:item.cover_image,
  50. author: item.author,
  51. headline: item.title,
  52. id: item.id,
  53. }))
  54. setPosts(finalPostData)
  55. return finalPostData
  56. })
  57. .catch((err) => console.log(err))
  58. .finally(() => console.log("Fetch Posts Executed"))
  59. }
  60. useConstructor(function(){
  61. fetchPosts()
  62. })
  63. return (
  64. <View>
  65. {/* <SectionHeader label={"Recent News"} /> */}
  66. <SectionHeader label={"Trending"} />
  67. <View style={styles.recentCardContainer}>
  68. <Carousel
  69. loop
  70. width={metrics.screenWidth}
  71. height={ITEM_HEIGHT}
  72. style={styles.recentCardContainer}
  73. autoPlay={true}
  74. data={posts}
  75. scrollAnimationDuration={1000}
  76. mode="parallax"
  77. modeConfig={{
  78. parallaxScrollingScale: 1,
  79. parallaxScrollingOffset: 1,
  80. }}
  81. onSnapToItem={(index) => updateCurrentIndex(index)}
  82. renderItem={({index,item}) => (
  83. <View style={{ paddingHorizontal: 16 }}>
  84. <ImageBGCard
  85. image={{uri: item.image} ?? images.imageCard}
  86. author={ item.author ?? "Anonymous Author"}
  87. headline={item.headline ?? `Bruh Moment ${index}`}
  88. />
  89. </View>
  90. )}
  91. />
  92. </View>
  93. <View style={styles.paginationContainer}>
  94. {posts.map((item, index) => {
  95. return <MaterialComIcon key={`dot_${index}`} name={"checkbox-blank-circle"} color={currentCardIndex === index ? colors.tertiaryColor: colors.lightGray} size={12} />
  96. })}
  97. </View>
  98. </View>
  99. )
  100. }
  101. export default RecentNewsSection
  102. const styles = StyleSheet.create({
  103. recentHeader: {
  104. paddingHorizontal: 16,
  105. },
  106. recentHeaderText: {
  107. fontFamily: fonts.type.semibold,
  108. fontSize: fonts.getSize(16),
  109. color: colors.black
  110. },
  111. seeAllText: {
  112. fontFamily: fonts.type.semibold,
  113. color: colors.topColor,
  114. paddingRight: 16,
  115. alignSelf: 'stretch'
  116. },
  117. recentHeaderIcon: {
  118. },
  119. recentCardContainer: {
  120. alignItems: 'center',
  121. paddingHorizontal: 8,
  122. width: metrics.screenWidth
  123. },
  124. paginationContainer:{
  125. justifyContent:'flex-end',
  126. alignItems:'center',
  127. paddingHorizontal: 16,
  128. paddingTop:8,
  129. paddingBottom:4,
  130. flexDirection:'row',
  131. gap:2}
  132. })