import { clsx } from 'clsx' import type { Notification } from '../../../graphql/types.gen' import { createMemo, createSignal, onMount, Show } from 'solid-js' import { NotificationType } from '../../../graphql/types.gen' import { getPagePath, openPage } from '@nanostores/router' import { router, useRouter } from '../../../stores/router' import { useNotifications } from '../../../context/notifications' import { useLocalize } from '../../../context/localize' import type { ArticlePageSearchParams } from '../../Article/FullArticle' import { TimeAgo } from '../../_shared/TimeAgo' import styles from './NotificationView.module.scss' import { GroupAvatar } from '../../_shared/GroupAvatar' type Props = { notification: Notification onClick: () => void dateTimeFormat: 'ago' | 'time' | 'date' class?: string } export type NotificationUser = { id: number name: string slug: string userpic: string } type NotificationData = { shout: { slug: string title: string } users: NotificationUser[] reactionIds: number[] } export const NotificationView = (props: Props) => { const { actions: { markNotificationAsRead, hideNotificationsPanel } } = useNotifications() const { changeSearchParam } = useRouter() const { t, formatDate, formatTime } = useLocalize() const [data, setData] = createSignal(null) onMount(() => { setTimeout(() => setData(JSON.parse(props.notification.data))) }) const lastUser = createMemo(() => { if (!data()) { return null } return data().users[data().users.length - 1] }) const handleLinkClick = (event: MouseEvent) => { event.stopPropagation() hideNotificationsPanel() } const content = createMemo(() => { if (!data()) { return null } let shoutTitle = '' let i = 0 const shoutTitleWords = data().shout.title.split(' ') while (shoutTitle.length <= 30 && i < shoutTitleWords.length) { shoutTitle += shoutTitleWords[i] + ' ' i++ } if (shoutTitle.length < data().shout.title.length) { shoutTitle = `${shoutTitle.trim()}...` if (shoutTitle[0] === '«') { shoutTitle += '»' } } switch (props.notification.type) { case NotificationType.NewComment: { return ( <> {t('NotificationNewCommentText1', { commentsCount: props.notification.occurrences })}{' '} {shoutTitle} {' '} {t('NotificationNewCommentText2')}{' '} {lastUser().name} {' '} {t('NotificationNewCommentText3', { restUsersCount: data().users.length - 1 })} ) } case NotificationType.NewReply: { return ( <> {t('NotificationNewReplyText1', { commentsCount: props.notification.occurrences })}{' '} {shoutTitle} {' '} {t('NotificationNewReplyText2')}{' '} {lastUser().name} {' '} {t('NotificationNewReplyText3', { restUsersCount: data().users.length - 1 })} ) } } }) const handleClick = () => { props.onClick() if (!props.notification.seen) { markNotificationAsRead(props.notification) } openPage(router, 'article', { slug: data().shout.slug }) if (data().reactionIds) { changeSearchParam({ commentId: data().reactionIds[0].toString() }) } } const formattedDateTime = createMemo(() => { switch (props.dateTimeFormat) { case 'ago': { return } case 'time': { return formatTime(new Date(props.notification.createdAt)) } case 'date': { return formatDate(new Date(props.notification.createdAt), { month: 'numeric', year: '2-digit' }) } } }) return (
{content()}
{formattedDateTime()}
) }