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: "65%",
  69. height: '100%',
  70. justifyContent: 'center',
  71. gap: fonts.getSize(12),
  72. },
  73. headline: {
  74. fontFamily: fonts.type.semibold,
  75. fontSize: fonts.getSize(18),
  76. color: colors.black,
  77. },
  78. tagline: {
  79. fontSize: fonts.getSize(12),
  80. fontFamily: fonts.type.regular,
  81. overflow:'hidden'
  82. },
  83. descriptors: {
  84. justifyContent:'center'
  85. },
  86. categoryDescriptor: {
  87. fontFamily: fonts.type.light
  88. },
  89. timeDescriptor: {
  90. fontFamily: fonts.type.light
  91. },
  92. imageSub: {
  93. alignItems: 'flex-end',
  94. justifyContent: 'center',
  95. },
  96. image: {
  97. width: '100%',
  98. height: '100%',
  99. borderRadius: fonts.getSize(8)
  100. },
  101. utilButtons: {
  102. flexDirection: 'row',
  103. padding: fonts.getSize(8),
  104. width:64,
  105. justifyContent:'space-between'
  106. // padding:0
  107. // alignItems: 'flex-start',
  108. // justifyContent: 'flex-end',
  109. // backgroundColor: colors.black
  110. }
  111. })