2023-11-04 10:14:00 +01:00
|
|
|
import { Entity, MegalodonInterface } from 'megalodon'
|
|
|
|
import dayjs from 'dayjs'
|
|
|
|
import emojify from '@/utils/emojify'
|
|
|
|
import Body from '../status/Body'
|
|
|
|
import Poll from '../status/Poll'
|
|
|
|
import Card from '../status/Card'
|
|
|
|
import Media from '../status/Media'
|
|
|
|
import { FaBarsProgress, FaHouse, FaPenToSquare, FaRetweet, FaStar } from 'react-icons/fa6'
|
|
|
|
import { useIntl } from 'react-intl'
|
2023-11-26 16:54:29 +01:00
|
|
|
import { useState } from 'react'
|
2024-01-09 13:30:05 +01:00
|
|
|
import { Avatar } from '@material-tailwind/react'
|
2024-01-14 15:30:21 +01:00
|
|
|
import { useRouter } from 'next/router'
|
2023-11-04 10:14:00 +01:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
notification: Entity.Notification
|
|
|
|
client: MegalodonInterface
|
|
|
|
onRefresh: (status: Entity.Status) => void
|
2023-12-02 11:26:45 +01:00
|
|
|
openMedia: (media: Entity.Attachment) => void
|
2023-11-04 10:14:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export default function Reaction(props: Props) {
|
|
|
|
const status = props.notification.status
|
2023-11-26 16:54:29 +01:00
|
|
|
const [spoilered, setSpoilered] = useState(status.spoiler_text.length > 0)
|
2023-11-04 10:14:00 +01:00
|
|
|
const { formatMessage } = useIntl()
|
2024-01-14 15:30:21 +01:00
|
|
|
const router = useRouter()
|
2023-11-04 10:14:00 +01:00
|
|
|
|
|
|
|
const refresh = async () => {
|
|
|
|
const res = await props.client.getStatus(status.id)
|
|
|
|
props.onRefresh(res.data)
|
|
|
|
}
|
|
|
|
|
2024-01-14 15:30:21 +01:00
|
|
|
const openStatus = () => {
|
|
|
|
router.push({ query: { id: router.query.id, timeline: router.query.timeline, status_id: status.id, detail: true } })
|
|
|
|
}
|
|
|
|
|
|
|
|
const openUser = (id: string) => {
|
|
|
|
router.push({ query: { id: router.query.id, timeline: router.query.timeline, user_id: id, detail: true } })
|
|
|
|
}
|
|
|
|
|
2023-11-04 10:14:00 +01:00
|
|
|
return (
|
|
|
|
<div className="border-b mr-2 py-1">
|
|
|
|
<div className="flex items-center">
|
|
|
|
<div style={{ width: '56px' }}>{actionIcon(props.notification)}</div>
|
2024-01-14 15:30:21 +01:00
|
|
|
<div className="cursor-pointer" style={{ width: 'calc(100% - 56px)' }} onClick={() => openUser(props.notification.account.id)}>
|
2023-11-04 10:14:00 +01:00
|
|
|
<span
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: emojify(
|
|
|
|
formatMessage(
|
|
|
|
{
|
|
|
|
id: actionId(props.notification)
|
|
|
|
},
|
|
|
|
{ user: props.notification.account.username }
|
|
|
|
),
|
|
|
|
props.notification.account.emojis
|
|
|
|
)
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="flex">
|
2024-01-14 15:30:21 +01:00
|
|
|
<div className="p-2 cursor-pointer" style={{ width: '56px' }}>
|
|
|
|
<Avatar
|
|
|
|
src={status.account.avatar}
|
|
|
|
onClick={() => openUser(status.account.id)}
|
|
|
|
variant="rounded"
|
|
|
|
style={{ width: '40px', height: '40px' }}
|
|
|
|
/>
|
2023-11-04 10:14:00 +01:00
|
|
|
</div>
|
|
|
|
<div className="text-gray-600 break-all overflow-hidden" style={{ width: 'calc(100% - 56px)' }}>
|
|
|
|
<div className="flex justify-between">
|
2024-01-14 15:30:21 +01:00
|
|
|
<div className="flex cursor-pointer" onClick={() => openUser(status.account.id)}>
|
2023-11-04 10:14:00 +01:00
|
|
|
<span
|
|
|
|
className="text-gray-600 text-ellipsis break-all overflow-hidden"
|
|
|
|
dangerouslySetInnerHTML={{ __html: emojify(status.account.display_name, status.account.emojis) }}
|
|
|
|
></span>
|
|
|
|
<span className="text-gray-600 text-ellipsis break-all overflow-hidden">@{status.account.acct}</span>
|
|
|
|
</div>
|
2024-01-14 15:30:21 +01:00
|
|
|
<div className="text-gray-600 text-right cursor-pointer" onClick={openStatus}>
|
2023-11-04 10:14:00 +01:00
|
|
|
<time dateTime={status.created_at}>{dayjs(status.created_at).format('YYYY-MM-DD HH:mm:ss')}</time>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-11-26 16:54:29 +01:00
|
|
|
<Body status={status} className="text-gray-600" spoilered={spoilered} setSpoilered={setSpoilered} />
|
|
|
|
{!spoilered && (
|
|
|
|
<>
|
|
|
|
{status.poll && <Poll poll={status.poll} onRefresh={refresh} client={props.client} className="text-gray-600" />}
|
|
|
|
{status.card && <Card card={status.card} />}
|
2023-12-02 11:26:45 +01:00
|
|
|
<Media media={status.media_attachments} sensitive={status.sensitive} openMedia={props.openMedia} />
|
2023-11-26 16:54:29 +01:00
|
|
|
</>
|
|
|
|
)}
|
2023-11-04 10:14:00 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
const actionIcon = (notification: Entity.Notification) => {
|
|
|
|
switch (notification.type) {
|
|
|
|
case 'favourite': {
|
|
|
|
return <FaStar className="text-orange-500 w-4 mr-2 ml-auto" />
|
|
|
|
}
|
|
|
|
case 'reblog':
|
|
|
|
case 'quote': {
|
|
|
|
return <FaRetweet className="text-blue-600 w-4 mr-2 ml-auto" />
|
|
|
|
}
|
|
|
|
case 'poll_expired':
|
|
|
|
case 'poll_vote': {
|
|
|
|
return <FaBarsProgress className="text-blue-600 w-4 mr-2 ml-auto" />
|
|
|
|
}
|
|
|
|
case 'status': {
|
|
|
|
return <FaHouse className="text-blue-600 w-4 mr-2 ml-auto" />
|
|
|
|
}
|
|
|
|
case 'update': {
|
|
|
|
return <FaPenToSquare className="text-blue-600 w-4 mr-2 ml-auto" />
|
|
|
|
}
|
|
|
|
case 'emoji_reaction': {
|
2024-01-29 16:10:44 +01:00
|
|
|
return (
|
|
|
|
<div className="w-5 mr-2 ml-auto">
|
|
|
|
<span dangerouslySetInnerHTML={{ __html: notification.emoji }} />
|
|
|
|
</div>
|
|
|
|
)
|
2023-11-04 10:14:00 +01:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const actionId = (notification: Entity.Notification) => {
|
|
|
|
switch (notification.type) {
|
|
|
|
case 'favourite':
|
|
|
|
return 'notification.favourite.body'
|
|
|
|
case 'reblog':
|
|
|
|
return 'notification.reblog.body'
|
|
|
|
case 'quote':
|
|
|
|
return 'notification.quote.body'
|
|
|
|
case 'poll_expired':
|
|
|
|
return 'notification.poll_expired.body'
|
|
|
|
case 'poll_vote':
|
|
|
|
return 'notification.poll.vote'
|
|
|
|
case 'status':
|
|
|
|
return 'notification.status.body'
|
|
|
|
case 'update':
|
|
|
|
return 'notification.update.body'
|
2024-01-29 16:10:44 +01:00
|
|
|
case 'emoji_reaction':
|
2023-11-04 10:14:00 +01:00
|
|
|
return 'notification.emoji_reaction.body'
|
|
|
|
|
|
|
|
default:
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
}
|