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