Source

components/_molecules/ItemNotification/index.js

  1. import React from "react"
  2. import PropTypes from "prop-types"
  3. import { useTranslation } from "react-i18next"
  4. // chakra-ui
  5. import { Badge, Box, Flex, Image, Text } from "@chakra-ui/react"
  6. // utils
  7. import { IMG } from "utils/images"
  8. import { PropTypesProduct } from "utils/propTypes"
  9. // hooks
  10. import useTimeAgo from "hooks/useTimeAgo"
  11. import useDateTimeFormat from "hooks/useDateTimeFormat"
  12. /**
  13. * ItemNotification Component
  14. * @component
  15. * @author Braian D. Vaylet
  16. * @description Componente de item de las notificaciones
  17. */
  18. const ItemNotificaton = ({ item }) => {
  19. const [t] = useTranslation("global")
  20. const timeago = useTimeAgo(item.date)
  21. const dateFormated = useDateTimeFormat(item.date)
  22. /**
  23. * handleItemImg
  24. * @function
  25. * @description retorna imagen de la notificación
  26. * @returns {string}
  27. */
  28. const handleItemImg = () =>
  29. item.count === 1 ? item.items[0].pictureUrl : IMG.SHOPPING_BAG
  30. /**
  31. * handleItemTitle
  32. * @function
  33. * @description retorna título de la notificación
  34. * @returns {string}
  35. */
  36. const handleItemTitle = () =>
  37. item.count === 1
  38. ? `${t("ItemNotification.bought")} ${item.items[0].title}`
  39. : `${t("ItemNotification.bought")} ${item.count} ${t(
  40. "ItemNotification.products"
  41. )}`
  42. return (
  43. <Box minH="10vh">
  44. <Flex
  45. direction="row"
  46. justify="flex-start"
  47. align="flex-start"
  48. wrap="nowrap"
  49. >
  50. <Image
  51. boxSize="3rem"
  52. borderRadius="full"
  53. src={handleItemImg()}
  54. mr="12px"
  55. />
  56. <Flex direction="column" align="flex-start" justify="center">
  57. <Flex align="center" mb={2}>
  58. {!item.viewed && (
  59. <Badge mr={2} fontSize="1rem" colorScheme="green">
  60. NEW
  61. </Badge>
  62. )}
  63. <time title={dateFormated}>
  64. <b>{dateFormated}</b>
  65. </time>{" "}
  66. <Text ml={2}>| {handleItemTitle()}</Text>
  67. </Flex>
  68. {item.count && <Badge colorScheme="blue">${item.total}</Badge>}
  69. <Text fontSize=".75rem" mt={2}>
  70. <time title={dateFormated}>{timeago}</time>
  71. </Text>
  72. </Flex>
  73. </Flex>
  74. </Box>
  75. )
  76. }
  77. ItemNotificaton.propTypes = {
  78. item: PropTypes.shape({
  79. date: PropTypes.number.isRequired,
  80. total: PropTypes.number.isRequired,
  81. count: PropTypes.number.isRequired,
  82. items: PropTypes.arrayOf(PropTypes.shape(PropTypesProduct).isRequired),
  83. viewed: PropTypes.bool.isRequired,
  84. }),
  85. }
  86. export default ItemNotificaton