import React, { useCallback } from 'react'; import { UserPicture, PagePathLabel } from '@growi/ui'; import { IInAppNotification } from '~/interfaces/in-app-notification'; import { HasObjectId } from '~/interfaces/has-object-id'; import { apiv3Post } from '~/client/util/apiv3-client'; import FormattedDistanceDate from '../FormattedDistanceDate'; interface Props { notification: IInAppNotification & HasObjectId } 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 renderNotificationDate = (): JSX.Element => { return ( ); }; const actionUsers = getActionUsers(); const actionType: string = notification.action; let actionMsg: string; let actionIcon: string; switch (actionType) { case 'PAGE_LIKE': actionMsg = 'liked'; actionIcon = 'icon-like'; break; case 'PAGE_BOOKMARK': actionMsg = 'bookmarked on'; actionIcon = 'icon-star'; break; case 'PAGE_UPDATE': actionMsg = 'updated on'; actionIcon = 'ti-agenda'; break; case 'PAGE_RENAME': actionMsg = 'renamed'; actionIcon = 'icon-action-redo'; break; case 'PAGE_DELETE': actionMsg = 'deleted'; actionIcon = 'icon-trash'; break; case 'PAGE_DELETE_COMPLETELY': actionMsg = 'completely deleted'; actionIcon = 'icon-fire'; break; case 'COMMENT_CREATE': actionMsg = 'commented on'; actionIcon = 'icon-bubble'; break; default: actionMsg = ''; actionIcon = ''; } const RenderPageModelNotification = (): JSX.Element => { const snapshot = JSON.parse(notification.snapshot); const pagePath = { path: snapshot.path }; const notificationClickHandler = useCallback(() => { // set notification status "OPEND" apiv3Post('/in-app-notification/open', { id: notification._id }); // jump to target page const targetPagePath = notification.target?.path; if (targetPagePath != null) { window.location.href = targetPagePath; } }, []); return (
{actionUsers} {actionMsg}
{renderNotificationDate()}
); }; return (
{renderActionUserPictures()}
{notification.targetModel === 'Page' && ( RenderPageModelNotification() )}
); }; export default InAppNotificationElm;