2022-11-16 06:21:54 +09:00
|
|
|
<script setup lang="ts">
|
|
|
|
import type { Notification } from 'masto'
|
|
|
|
|
2022-11-22 00:07:55 +09:00
|
|
|
const { notification } = defineProps<{
|
2022-11-16 06:21:54 +09:00
|
|
|
notification: Notification
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-11-28 08:29:21 +09:00
|
|
|
<article flex flex-col>
|
2022-11-16 06:21:54 +09:00
|
|
|
<template v-if="notification.type === 'follow'">
|
2022-11-23 23:39:48 +09:00
|
|
|
<div flex ml-4 items-center>
|
2022-11-24 17:54:52 +09:00
|
|
|
<div i-ri:user-follow-fill mr-3 color-primary />
|
2022-11-25 19:54:49 +09:00
|
|
|
<AccountInlineInfo :account="notification.account" mr1 />
|
2022-11-29 19:55:28 +09:00
|
|
|
{{ $t('notification.followed_you') }}
|
2022-11-16 06:21:54 +09:00
|
|
|
</div>
|
|
|
|
<AccountCard :account="notification.account" p3 />
|
|
|
|
</template>
|
2022-11-27 05:48:06 +09:00
|
|
|
<template v-else-if="notification.type === 'follow_request'">
|
2022-11-23 23:39:48 +09:00
|
|
|
<div flex ml-4 items-center>
|
|
|
|
<div i-ri:user-follow-fill mr-3 />
|
2022-11-25 19:54:49 +09:00
|
|
|
<AccountInlineInfo :account="notification.account" mr1 />
|
2022-11-29 19:55:28 +09:00
|
|
|
{{ $t('notification.request_to_follow') }}
|
2022-11-16 06:21:54 +09:00
|
|
|
</div>
|
|
|
|
<!-- TODO: accept request -->
|
|
|
|
<AccountCard :account="notification.account" p3 />
|
|
|
|
</template>
|
2022-11-27 05:48:06 +09:00
|
|
|
<template v-else-if="notification.type === 'favourite'">
|
2022-11-23 23:39:48 +09:00
|
|
|
<div flex ml-4 items-center>
|
|
|
|
<div i-ri:heart-fill mr-3 color-red />
|
2022-11-25 19:54:49 +09:00
|
|
|
<AccountInlineInfo :account="notification.account" mr1 />
|
2022-11-29 19:55:28 +09:00
|
|
|
{{ $t('notification.favourited_post') }}
|
2022-11-16 06:21:54 +09:00
|
|
|
</div>
|
2022-12-05 04:28:26 +09:00
|
|
|
<StatusCard :status="notification.status!" context="notifications" p3 />
|
2022-11-16 06:21:54 +09:00
|
|
|
</template>
|
2022-11-27 05:48:06 +09:00
|
|
|
<template v-else-if="notification.type === 'reblog'">
|
2022-11-23 23:39:48 +09:00
|
|
|
<div flex ml-4 items-center>
|
|
|
|
<div i-ri:repeat-fill mr-3 color-green />
|
2022-11-25 19:54:49 +09:00
|
|
|
<AccountInlineInfo :account="notification.account" mr1 />
|
2022-11-29 19:55:28 +09:00
|
|
|
{{ $t('notification.reblogged_post') }}
|
2022-11-16 06:21:54 +09:00
|
|
|
</div>
|
2022-12-05 04:28:26 +09:00
|
|
|
<StatusCard :status="notification.status!" context="notifications" p3 />
|
2022-11-16 06:21:54 +09:00
|
|
|
</template>
|
2022-11-28 04:46:12 +09:00
|
|
|
<template v-else-if="notification.type === 'update'">
|
|
|
|
<div flex ml-4 items-center>
|
|
|
|
<div i-ri:edit-2-fill mr-3 text-secondary />
|
|
|
|
<AccountInlineInfo :account="notification.account" mr1 />
|
2022-11-29 19:55:28 +09:00
|
|
|
{{ $t('notification.update_status') }}
|
2022-11-28 04:46:12 +09:00
|
|
|
</div>
|
2022-12-05 04:28:26 +09:00
|
|
|
<StatusCard :status="notification.status!" context="notifications" p3 />
|
2022-11-28 04:46:12 +09:00
|
|
|
</template>
|
2022-11-27 07:04:39 +09:00
|
|
|
<template v-else-if="notification.type === 'mention' || notification.type === 'poll' || notification.type === 'status'">
|
2022-12-05 04:28:26 +09:00
|
|
|
<StatusCard :status="notification.status!" context="notifications" p3 />
|
2022-11-16 06:21:54 +09:00
|
|
|
</template>
|
2022-11-28 04:46:12 +09:00
|
|
|
<template v-else>
|
|
|
|
<div text-red font-bold>
|
2022-11-29 19:55:28 +09:00
|
|
|
[DEV] {{ $t('notification.missing_type') }} '{{ notification.type }}'
|
2022-11-28 04:46:12 +09:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-11-28 08:29:21 +09:00
|
|
|
</article>
|
2022-11-16 06:21:54 +09:00
|
|
|
</template>
|