import React, { useCallback } from 'react'; import { UserPicture, PagePathLabel } from '@growi/ui'; import { IInAppNotification } from '~/interfaces/in-app-notification'; import { apiv3Post } from '~/client/util/apiv3-client'; import FormattedDistanceDate from '../FormattedDistanceDate'; import loggerFactory from '~/utils/logger'; const logger = loggerFactory('growi:InAppNotificationElm'); interface Props { notification: IInAppNotification } const InAppNotificationElm = (props: Props): JSX.Element => { const { notification } = props; const getActionUsers = () => { const latestActionUsers = notification.actionUsers.slice(0, 3); const latestUsers = latestActionUsers.map((user) => { return `@${user.name}`; }); let actionedUsers = ''; const latestUsersCount = latestUsers.length; if (latestUsersCount === 1) { actionedUsers = latestUsers[0]; } else if (notification.actionUsers.length >= 4) { actionedUsers = `${latestUsers.slice(0, 2).join(', ')} and ${notification.actionUsers.length - 2} others`; } else { actionedUsers = latestUsers.join(', '); } return actionedUsers; }; const renderActionUserPictures = (): JSX.Element => { const actionUsers = notification.actionUsers; if (actionUsers.length < 1) { return <>; } if (actionUsers.length === 1) { return ; } return (
); }; const notificationClickHandler = useCallback(() => { // set notification status "OPEND" apiv3Post('/in-app-notification/open', { id: notification._id }); // jump to target page window.location.href = notification.target.path; }, []); const actionUsers = getActionUsers(); const pagePath = { path: props.notification.target.path }; const actionType: string = notification.action; let actionMsg: string; let actionIcon: string; switch (actionType) { case 'PAGE_UPDATE': actionMsg = 'updated on'; actionIcon = 'ti-agenda'; break; case 'COMMENT_CREATE': actionMsg = 'commented on'; actionIcon = 'icon-bubble'; break; default: actionMsg = ''; actionIcon = ''; } return (
{renderActionUserPictures()}
{actionUsers} {actionMsg}
); }; export default InAppNotificationElm;