RecentNewsSection.js 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. const ITEM_WIDTH = Math.round(metrics.screenWidth * 0.9);
  12. const ITEM_HEIGHT = Math.round(ITEM_WIDTH * 3 / 4);
  13. const entries = [...new Array(6).keys()]
  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. return (
  21. <View>
  22. <SectionHeader label={"Recent News"} />
  23. <View style={styles.recentCardContainer}>
  24. <Carousel
  25. loop
  26. width={metrics.screenWidth}
  27. height={ITEM_HEIGHT}
  28. style={styles.recentCardContainer}
  29. autoPlay={true}
  30. data={entries}
  31. scrollAnimationDuration={1000}
  32. mode="parallax"
  33. modeConfig={{
  34. parallaxScrollingScale: 1,
  35. parallaxScrollingOffset: 1,
  36. }}
  37. onSnapToItem={(index) => updateCurrentIndex(index)}
  38. renderItem={({ index }) => (
  39. <View style={{ paddingHorizontal: 16 }}>
  40. <ImageBGCard
  41. image={images.imageCard}
  42. author={"Ryan Browne"}
  43. headline={`Shadow Wizard Money Gang We love casting Spells ${index}`}
  44. />
  45. </View>
  46. )}
  47. />
  48. </View>
  49. <View style={styles.paginationContainer}>
  50. {entries.map((item) => {
  51. const index = entries.indexOf(item)
  52. return <MaterialComIcon name={"checkbox-blank-circle"} color={currentCardIndex === index ? colors.tertiaryColor: colors.lightGray} size={12} />
  53. })}
  54. </View>
  55. </View>
  56. )
  57. }
  58. export default RecentNewsSection
  59. const styles = StyleSheet.create({
  60. recentHeader: {
  61. paddingHorizontal: 16,
  62. },
  63. recentHeaderText: {
  64. fontFamily: fonts.type.semibold,
  65. fontSize: fonts.getSize(16),
  66. color: colors.black
  67. },
  68. seeAllText: {
  69. fontFamily: fonts.type.semibold,
  70. color: colors.topColor,
  71. paddingRight: 16,
  72. alignSelf: 'stretch'
  73. },
  74. recentHeaderIcon: {
  75. },
  76. recentCardContainer: {
  77. alignItems: 'center',
  78. paddingHorizontal: 8
  79. },
  80. paginationContainer:{
  81. justifyContent:'flex-end',
  82. alignItems:'center',
  83. paddingHorizontal: 16,
  84. paddingTop:8,
  85. paddingBottom:4,
  86. flexDirection:'row',
  87. gap:2}
  88. })