HorizontalNewsCard.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. import { Image, StyleSheet, Text, TouchableWithoutFeedback, View } 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 HorizontalNewsCard = ({ style, headline, tagline, category, timestamp, image, onPress }) => {
  11. return (
  12. <TouchableWithoutFeedback onPress={onPress}>
  13. <View style={[styles.cardContainer, style]}>
  14. <>
  15. <View style={styles.textContainer}>
  16. <View>
  17. <Text style={styles.headline}> {headline ?? "Battlegrounds Mobile India iOS release date"}</Text>
  18. <Text style={styles.tagline}>{tagline ?? "government is the people, for the people, by the people but the people are retarded "}</Text>
  19. </View>
  20. </View>
  21. <View style={styles.imageContainer}>
  22. <View style={styles.imageSub}>
  23. <Image source={image ?? images.horizontalCard} style={{ aspectRatio: 0.9 }} />
  24. </View>
  25. </View>
  26. </>
  27. <View>
  28. <View style={styles.descriptors}>
  29. <Text style={styles.categoryDescriptor}>{category ?? "Sports"}</Text>
  30. <Text style={styles.timeDescriptor}>{getTimestamp(timestamp) ?? "27 mins ago"}</Text>
  31. </View>
  32. <View style={styles.utilButtons}>
  33. <BookmarkButton onPress={true} />
  34. <ShareButton onPress={true} />
  35. </View>
  36. </View>
  37. </View>
  38. </TouchableWithoutFeedback>
  39. )
  40. }
  41. export default HorizontalNewsCard
  42. const styles = StyleSheet.create({
  43. cardContainer: {
  44. width: 'auto',
  45. maxWidth: metrics.screenWidth,
  46. height: fonts.getSize(190),
  47. backgroundColor: colors.white,
  48. borderRadius: fonts.getSize(4),
  49. flexDirection: 'row',
  50. // paddingBottom:fonts.getSize(24)
  51. },
  52. imageContainer: {
  53. width: "45%",
  54. },
  55. textContainer: {
  56. width: "55%",
  57. paddingVertical: fonts.getSize(8),
  58. paddingLeft: fonts.getSize(16),
  59. justifyContent: 'flex-start',
  60. gap: fonts.getSize(12)
  61. },
  62. headline: {
  63. fontFamily: fonts.type.medium,
  64. textDecorationLine: 'underline',
  65. fontSize: fonts.getSize(16),
  66. color: colors.black
  67. },
  68. tagline: {
  69. fontSize: fonts.getSize(12),
  70. fontFamily: fonts.type.regular,
  71. maxHeight: '40%',
  72. overflow: 'hidden',
  73. },
  74. descriptors: {
  75. flexDirection: 'row',
  76. justifyContent: 'space-around'
  77. },
  78. categoryDescriptor: {
  79. fontFamily: fonts.type.light
  80. },
  81. timeDescriptor: {
  82. fontFamily: fonts.type.light
  83. },
  84. imageSub: {
  85. alignItems: 'center',
  86. justifyContent: 'center',
  87. padding: fonts.getSize(14),
  88. paddingBottom: 0
  89. },
  90. utilButtons: {
  91. flexDirection: 'row',
  92. alignItems: 'center',
  93. justifyContent: 'space-around'
  94. }
  95. })