HorizontalNewsCardVariant.js 3.2 KB

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