NotificationCard.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. import { Image, StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import images from '../../../assets/images/images'
  4. import { horizontalScale, moderateScale, verticalScale } from '../../../constants/metrics'
  5. import colors from '../../../constants/colors'
  6. import { getTimestamp } from '../../../utils/functions'
  7. import fonts from '../../../constants/fonts'
  8. const PROFILE_IMAGE = 52
  9. const NOTIFICATION_IMAGE = PROFILE_IMAGE
  10. const NotificationCard = ({ navigation, profileImage, tagline, headline, timestamp, image }) => {
  11. const styles = StyleSheet.create({
  12. cardContainer: {
  13. flexDirection: 'row',
  14. width: '100%',
  15. justifyContent: 'space-between',
  16. alignItems: 'center',
  17. padding: moderateScale(8),
  18. height: verticalScale(88),
  19. backgroundColor: colors().dominant,
  20. borderRadius: moderateScale(16),
  21. elevation: moderateScale(2)
  22. },
  23. profileIcon: {
  24. height: PROFILE_IMAGE,
  25. width: PROFILE_IMAGE,
  26. borderRadius: PROFILE_IMAGE,
  27. },
  28. notificationImage: {
  29. height: NOTIFICATION_IMAGE,
  30. width: NOTIFICATION_IMAGE,
  31. borderRadius: 8,
  32. },
  33. headline: {
  34. fontFamily: fonts.type.bold,
  35. color: colors().recessive_variant,
  36. fontSize: moderateScale(12)
  37. },
  38. tagline: {
  39. fontFamily: fonts.type.regular,
  40. color: colors().grayShade_200,
  41. fontSize: 12
  42. },
  43. timestamp: {
  44. fontFamily: fonts.type.light,
  45. color: colors().grayShade_300,
  46. fontSize: 12
  47. }
  48. })
  49. return (
  50. <View style={styles.cardContainer}>
  51. <View style={{ flexDirection: 'row', alignItems: 'center' }}>
  52. <Image source={images.imageCard ?? profileImage} style={styles.profileIcon} />
  53. <View style={{ paddingLeft: horizontalScale(8) }}>
  54. <Text style={styles.headline}>{headline ?? "semina is now following you"}</Text>
  55. <Text style={styles.tagline}>{tagline ?? "semi has posted new politics news"}</Text>
  56. <Text style={styles.timestamp}>{getTimestamp(timestamp) ?? getTimestamp("2023-06-16T11:57:52.458032Z")}</Text>
  57. </View>
  58. </View>
  59. <View>
  60. {image ? <Image source={images.horizontalCard ?? image} style={styles.notificationImage} /> : <></>}
  61. </View>
  62. </View>
  63. )
  64. }
  65. export default NotificationCard