1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-28 14:58:10 +09:00
elk/components/notification/NotificationCard.vue

62 lines
2.4 KiB
Vue
Raw Normal View History

2022-11-16 06:21:54 +09:00
<script setup lang="ts">
import type { Notification } from 'masto'
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 />
{{ $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 />
{{ $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 />
{{ $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 />
{{ $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>
<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 />
{{ $t('notification.update_status') }}
</div>
2022-12-05 04:28:26 +09:00
<StatusCard :status="notification.status!" context="notifications" p3 />
</template>
<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>
<template v-else>
<div text-red font-bold>
[DEV] {{ $t('notification.missing_type') }} '{{ notification.type }}'
</div>
</template>
2022-11-28 08:29:21 +09:00
</article>
2022-11-16 06:21:54 +09:00
</template>