2022-11-16 00:21:54 +03:00
|
|
|
<script setup lang="ts">
|
2023-01-08 09:21:09 +03:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-16 00:21:54 +03:00
|
|
|
|
2022-11-21 18:07:55 +03:00
|
|
|
const { notification } = defineProps<{
|
2023-01-08 09:21:09 +03:00
|
|
|
notification: mastodon.v1.Notification
|
2022-11-16 00:21:54 +03:00
|
|
|
}>()
|
2024-03-19 18:04:16 +03:00
|
|
|
|
|
|
|
const { t } = useI18n()
|
|
|
|
|
|
|
|
// well-known emoji reactions types Elk does not support yet
|
|
|
|
const unsupportedEmojiReactionTypes = ['pleroma:emoji_reaction', 'reaction']
|
|
|
|
if (unsupportedEmojiReactionTypes.includes(notification.type))
|
|
|
|
console.warn(`[DEV] ${t('notification.missing_type')} '${notification.type}' (notification.id: ${notification.id})`)
|
2022-11-16 00:21:54 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-06 14:07:17 +03:00
|
|
|
<article flex flex-col relative>
|
2022-11-16 00:21:54 +03:00
|
|
|
<template v-if="notification.type === 'follow'">
|
2022-12-18 16:41:32 +03:00
|
|
|
<NuxtLink :to="getAccountRoute(notification.account)">
|
2022-12-28 00:04:52 +03:00
|
|
|
<div
|
|
|
|
flex items-center absolute
|
2023-01-01 17:29:11 +03:00
|
|
|
ps-3 pe-4 inset-is-0
|
|
|
|
rounded-ie-be-3
|
2022-12-28 00:04:52 +03:00
|
|
|
py-3 bg-base top-0
|
|
|
|
>
|
2023-09-08 19:14:19 +03:00
|
|
|
<div i-ri-user-3-line text-xl me-3 color-blue />
|
2023-01-06 22:12:00 +03:00
|
|
|
<AccountDisplayName :account="notification.account" text-primary me-1 font-bold line-clamp-1 ws-pre-wrap break-all />
|
2022-12-18 16:41:32 +03:00
|
|
|
<span ws-nowrap>
|
|
|
|
{{ $t('notification.followed_you') }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2022-12-28 00:04:52 +03:00
|
|
|
<AccountBigCard
|
2023-09-08 19:14:19 +03:00
|
|
|
ms10
|
2022-12-28 00:04:52 +03:00
|
|
|
:account="notification.account"
|
|
|
|
/>
|
2022-12-18 16:41:32 +03:00
|
|
|
</NuxtLink>
|
2022-11-16 00:21:54 +03:00
|
|
|
</template>
|
2022-12-12 01:40:40 +03:00
|
|
|
<template v-else-if="notification.type === 'admin.sign_up'">
|
2023-09-20 09:52:05 +03:00
|
|
|
<NuxtLink :to="getAccountRoute(notification.account)">
|
|
|
|
<div flex p4 items-center bg-shaded>
|
|
|
|
<div i-ri:user-add-line text-xl me-2 color-purple />
|
|
|
|
<AccountDisplayName
|
|
|
|
:account="notification.account"
|
|
|
|
text-purple me-1 font-bold line-clamp-1 ws-pre-wrap break-all
|
|
|
|
/>
|
|
|
|
<span>{{ $t("notification.signed_up") }}</span>
|
|
|
|
</div>
|
|
|
|
</NuxtLink>
|
2022-12-10 00:30:16 +03:00
|
|
|
</template>
|
2023-05-03 18:01:35 +03:00
|
|
|
<template v-else-if="notification.type === 'admin.report'">
|
|
|
|
<NuxtLink :to="getReportRoute(notification.report?.id!)">
|
2023-09-08 19:14:19 +03:00
|
|
|
<div flex p4 items-center bg-shaded>
|
|
|
|
<div i-ri:flag-line text-xl me-2 color-purple />
|
2023-05-03 18:01:35 +03:00
|
|
|
<i18n-t keypath="notification.reported">
|
|
|
|
<AccountDisplayName
|
|
|
|
:account="notification.account"
|
|
|
|
text-purple me-1 font-bold line-clamp-1 ws-pre-wrap break-all
|
|
|
|
/>
|
|
|
|
<AccountDisplayName
|
|
|
|
:account="notification.report?.targetAccount!"
|
|
|
|
text-purple ms-1 font-bold line-clamp-1 ws-pre-wrap break-all
|
|
|
|
/>
|
|
|
|
</i18n-t>
|
|
|
|
</div>
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|
2022-11-26 23:48:06 +03:00
|
|
|
<template v-else-if="notification.type === 'follow_request'">
|
2023-10-22 19:11:00 +03:00
|
|
|
<div flex px-3 py-2>
|
|
|
|
<div i-ri-user-shared-line text-xl me-3 color-blue />
|
|
|
|
<AccountDisplayName
|
|
|
|
:account="notification.account"
|
|
|
|
text-primary me-1 font-bold line-clamp-1 ws-pre-wrap break-all
|
|
|
|
/>
|
|
|
|
<span me-1 ws-nowrap>
|
|
|
|
{{ $t('notification.request_to_follow') }}
|
|
|
|
</span>
|
2022-11-16 00:21:54 +03:00
|
|
|
</div>
|
2023-10-22 19:11:00 +03:00
|
|
|
<AccountCard p="s-2 e-4 b-2" hover-card :account="notification.account">
|
|
|
|
<AccountFollowRequestButton :account="notification.account" />
|
|
|
|
</AccountCard>
|
2022-11-16 00:21:54 +03:00
|
|
|
</template>
|
2022-11-27 22:46:12 +03:00
|
|
|
<template v-else-if="notification.type === 'update'">
|
2023-03-19 23:55:19 +03:00
|
|
|
<StatusCard :status="notification.status!" :in-notification="true" :actions="false">
|
2022-12-13 17:56:00 +03:00
|
|
|
<template #meta>
|
2022-12-25 22:28:26 +03:00
|
|
|
<div flex="~" gap-1 items-center mt1>
|
2023-01-01 17:29:11 +03:00
|
|
|
<div i-ri:edit-2-fill text-xl me-1 text-secondary />
|
|
|
|
<AccountInlineInfo :account="notification.account" me1 />
|
2022-12-13 17:56:00 +03:00
|
|
|
<span ws-nowrap>
|
|
|
|
{{ $t('notification.update_status') }}
|
|
|
|
</span>
|
2022-12-13 18:03:58 +03:00
|
|
|
</div>
|
2022-12-13 17:56:00 +03:00
|
|
|
</template>
|
|
|
|
</StatusCard>
|
2022-11-27 22:46:12 +03:00
|
|
|
</template>
|
2022-11-27 01:04:39 +03:00
|
|
|
<template v-else-if="notification.type === 'mention' || notification.type === 'poll' || notification.type === 'status'">
|
2022-12-06 14:07:17 +03:00
|
|
|
<StatusCard :status="notification.status!" />
|
2022-11-16 00:21:54 +03:00
|
|
|
</template>
|
2024-03-19 18:04:16 +03:00
|
|
|
<template v-else-if="!unsupportedEmojiReactionTypes.includes(notification.type)">
|
|
|
|
<!-- prevent showing errors for dev for known emoji reaction types -->
|
2023-03-19 23:55:19 +03:00
|
|
|
<!-- type 'favourite' and 'reblog' should always rendered by NotificationGroupedLikes -->
|
2022-11-27 22:46:12 +03:00
|
|
|
<div text-red font-bold>
|
2022-11-29 13:55:28 +03:00
|
|
|
[DEV] {{ $t('notification.missing_type') }} '{{ notification.type }}'
|
2022-11-27 22:46:12 +03:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-11-28 02:29:21 +03:00
|
|
|
</article>
|
2022-11-16 00:21:54 +03:00
|
|
|
</template>
|