HorizontalNewsCardVariant.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. import { StyleSheet, Text, View, TouchableOpacity, TouchableWithoutFeedback, Image } from 'react-native'
  2. import React, { useContext } from 'react'
  3. import BookmarkButton from '../../atoms/Buttons/BookmarkButton'
  4. import ShareButton from '../../atoms/Buttons/ShareButton'
  5. import { horizontalScale, moderateScale, screenWidth, verticalScale } from '../../../constants/metrics'
  6. import fonts from '../../../constants/fonts'
  7. import colors from '../../../constants/colors'
  8. import { getScreenType, getTimestamp } from '../../../constants/functions'
  9. import images from '../../../assets/images/images'
  10. import { ThemeContext } from '../../../context/theme.context'
  11. const HorizontalNewsCardVariant = ({ headline, image, category, timestamp, tagline, onPress, onBookmarkPress, onSharePress}) => {
  12. const theme = useContext(ThemeContext)
  13. const currentTheme = theme.state.theme
  14. const styles = StyleSheet.create({
  15. cardContainer: {
  16. borderRadius: moderateScale(16),
  17. width: 'auto',
  18. // minWidth: horizontalScale(320),
  19. maxWidth: horizontalScale(320),
  20. maxHeight: verticalScale(200),
  21. backgroundColor: currentTheme === 'light' ? colors().white: colors().black_variant,
  22. elevation: 4,
  23. marginHorizontal: horizontalScale(8),
  24. padding: moderateScale(16),
  25. paddingBottom: 0
  26. // paddingBottom:fonts.getSize(24)
  27. },
  28. topSection: {
  29. height: "70%",
  30. maxHeight: 'auto',
  31. flexDirection: 'row',
  32. width: '100%',
  33. maxWidth: '100%',
  34. justifyContent: 'flex-start'
  35. },
  36. middleSection: {
  37. flexDirection: 'row',
  38. alignItems: 'baseline',
  39. justifyContent: 'space-between'
  40. },
  41. bottomSection: {
  42. },
  43. imageContainer: {
  44. width: "40%",
  45. },
  46. textContainer: {
  47. width: "55%",
  48. height: '100%',
  49. maxHeight: 'auto',
  50. justifyContent: 'center',
  51. // justifyContent: 'center',
  52. gap: moderateScale(12),
  53. marginRight: "5%"
  54. },
  55. headline: {
  56. fontFamily: fonts.type.semibold,
  57. fontSize: moderateScale(15),
  58. color : colors().recessive
  59. },
  60. tagline: {
  61. fontSize: moderateScale(12),
  62. fontFamily: fonts.type.regular,
  63. overflow: 'hidden',
  64. color : colors().recessive
  65. },
  66. descriptors: {
  67. justifyContent: 'center',
  68. },
  69. categoryDescriptor: {
  70. fontFamily: fonts.type.light
  71. },
  72. timeDescriptor: {
  73. fontFamily: fonts.type.regular,
  74. color: currentTheme == 'light' ? colors().grayShade_300 : colors().white,
  75. fontSize:moderateScale(12)
  76. },
  77. imageSub: {
  78. alignItems: 'flex-end',
  79. justifyContent: 'center',
  80. },
  81. image: {
  82. width: '100%',
  83. height: '100%',
  84. borderRadius: moderateScale(8)
  85. },
  86. utilButtons: {
  87. flexDirection: 'row',
  88. padding: moderateScale(8),
  89. width: 64,
  90. justifyContent: 'space-between'
  91. // padding:0
  92. // alignItems: 'flex-start',
  93. // justifyContent: 'flex-end',
  94. // backgroundColor: colors.black
  95. }
  96. })
  97. return (
  98. <TouchableOpacity onPress={onPress}>
  99. <View style={styles.cardContainer}>
  100. <View style={styles.topSection}>
  101. <View style={styles.textContainer}>
  102. <TouchableWithoutFeedback onPress={onPress}>
  103. <Text style={styles.headline}>{headline ?? "Battlegrounds Mobile India iOS release date"}</Text>
  104. </TouchableWithoutFeedback>
  105. </View>
  106. <View style={styles.imageContainer}>
  107. <View style={styles.imageSub}>
  108. <Image source={image ?? images.horizontalCard} style={styles.image} />
  109. </View>
  110. </View>
  111. </View>
  112. <View style={styles.middleSection}>
  113. <View style={styles.descriptors}>
  114. <Text style={styles.timeDescriptor}>{getTimestamp(timestamp)}</Text>
  115. </View>
  116. <View style={styles.utilButtons}>
  117. <BookmarkButton size={20} onPress={onBookmarkPress} />
  118. <ShareButton size={20} onPress={onSharePress} />
  119. </View>
  120. </View>
  121. </View>
  122. </TouchableOpacity>
  123. )
  124. }
  125. export default HorizontalNewsCardVariant