HorizontalNewsCardVariant.js 3.1 KB

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