import { clsx } from 'clsx' import styles from './NotificationView.module.scss' import { formatDate } from '../../../utils' import { createMemo, createSignal, onMount, Show } from 'solid-js' import { Author } from '../../../graphql/types.gen' import { openPage } from '@nanostores/router' import { router } from '../../../stores/router' import { ServerNotification, useNotifications } from '../../../context/notifications' import { Userpic } from '../../Author/Userpic' import { useLocalize } from '../../../context/localize' type Props = { notification: ServerNotification onClick: () => void class?: string } // NOTE: not a graphql generated type export enum NotificationType { NewComment = 'NEW_COMMENT', NewReply = 'NEW_REPLY', NewFollower = 'NEW_FOLLOWER', NewShout = 'NEW_SHOUT', NewLike = 'NEW_LIKE', NewDislike = 'NEW_DISLIKE' } const TEMPLATES = { // FIXME: set proper templates new_follower: 'new follower', new_shout: 'new shout', new_reaction0: 'new like', new_reaction1: 'new dislike', new_reaction2: 'new agreement', new_reaction3: 'new disagreement', new_reaction4: 'new proof', new_reaction5: 'new disproof', new_reaction6: 'new comment', new_reaction7: 'new quote', new_reaction8: 'new proposal', new_reaction9: 'new question', new_reaction10: 'new remark', //"new_reaction11": "new footnote", new_reaction12: 'new acception', new_reaction13: 'new rejection' } export const NotificationView = (props: Props) => { const { actions: { markNotificationAsRead } } = useNotifications() const { t } = useLocalize() const [data, setData] = createSignal(null) const [kind, setKind] = createSignal() onMount(() => { setTimeout(() => setData(props.notification)) }) const lastUser = createMemo(() => { return props.notification.kind === 'new_follower' ? data().payload : data().payload.author }) const content = createMemo(() => { if (!data()) { return null } let caption: string, author: Author, ntype: NotificationType // TODO: count occurencies from in-browser notifications-db switch (props.notification.kind) { case 'new_follower': { caption = '' author = data().payload ntype = NotificationType.NewFollower break } case 'new_shout': { caption = data().payload.title author = data().payload.authors[-1] ntype = NotificationType.NewShout break } case 'new_reaction6': { ntype = data().payload.replyTo ? NotificationType.NewReply : NotificationType.NewComment } case 'new_reaction0': { ntype = NotificationType.NewLike } case 'new_reaction0': { ntype = NotificationType.NewDislike } // TODO: add more reaction types default: { caption = data().payload.shout.title author = data().payload.author } } setKind(ntype) // FIXME: use it somewhere if needed or remove return t(TEMPLATES[props.notification.kind], { caption, author }) }) const handleClick = () => { if (!props.notification.seen) { markNotificationAsRead(props.notification) } const subpath = props.notification.kind === 'new_follower' ? 'author' : 'article' const slug = props.notification.kind.startsWith('new_reaction') ? data().payload.shout.slug : data().payload.slug openPage(router, subpath, { slug }) props.onClick() } return (
{content()}
{/*{formatDate(new Date(props.notification.timestamp), { month: 'numeric' })}*/}
) }