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 />
|
|
|
|
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 />
|
|
|
|
requested to follow you
|
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 />
|
|
|
|
favourited your post
|
2022-11-16 06:21:54 +09:00
|
|
|
</div>
|
|
|
|
<StatusCard :status="notification.status!" p3 />
|
|
|
|
</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 />
|
|
|
|
reblogged your post
|
2022-11-16 06:21:54 +09:00
|
|
|
</div>
|
|
|
|
<StatusCard :status="notification.status!" p3 />
|
|
|
|
</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 />
|
|
|
|
updated their status
|
|
|
|
</div>
|
|
|
|
<StatusCard :status="notification.status!" p3 />
|
|
|
|
</template>
|
2022-11-27 07:04:39 +09:00
|
|
|
<template v-else-if="notification.type === 'mention' || notification.type === 'poll' || notification.type === 'status'">
|
2022-11-16 06:21:54 +09:00
|
|
|
<StatusCard :status="notification.status!" p3 />
|
|
|
|
</template>
|
2022-11-28 04:46:12 +09:00
|
|
|
<template v-else>
|
|
|
|
<div text-red font-bold>
|
|
|
|
[DEV] MISSING notification.type: '{{ notification.type }}'
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-11-28 08:29:21 +09:00
|
|
|
</article>
|
2022-11-16 06:21:54 +09:00
|
|
|
</template>
|