NotificationCard.js 2.0 KB

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