elk/components/notification/NotificationCard.vue

62 lines
2.3 KiB
Vue
Raw Normal View History

2022-11-15 21:21:54 +00:00
<script setup lang="ts">
import type { Notification } from 'masto'
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 />
{{ $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 />
{{ $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 />
{{ $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 />
{{ $t('notification.reblogged_post') }}
2022-11-15 21:21:54 +00:00
</div>
<StatusCard :status="notification.status!" p3 />
</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>
<StatusCard :status="notification.status!" p3 />
</template>
<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>
<template v-else>
<div text-red font-bold>
[DEV] {{ $t('notification.missing_type') }} '{{ notification.type }}'
</div>
</template>
2022-11-27 23:29:21 +00:00
</article>
2022-11-15 21:21:54 +00:00
</template>