HorizontalNewsCard.js 3.3 KB

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