elk/components/notification/NotificationCard.vue

45 lines
1.6 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>
<div flex flex-col>
<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-23 14:39:48 +00:00
<AccountLink :account="notification.account" mr1 /> followed you
2022-11-15 21:21:54 +00:00
</div>
<AccountCard :account="notification.account" p3 />
</template>
<template v-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 />
<AccountLink :account="notification.account" mr1 /> requested to follow you
2022-11-15 21:21:54 +00:00
</div>
<!-- TODO: accept request -->
<AccountCard :account="notification.account" p3 />
</template>
<template v-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 />
<AccountLink :account="notification.account" mr1 /> favourited your post
2022-11-15 21:21:54 +00:00
</div>
<StatusCard :status="notification.status!" p3 />
</template>
<template v-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 />
<AccountLink :account="notification.account" mr1 /> reblogged your post
2022-11-15 21:21:54 +00:00
</div>
<StatusCard :status="notification.status!" p3 />
</template>
<template v-if="notification.type === 'mention' || notification.type === 'poll'">
<StatusCard :status="notification.status!" p3 />
</template>
</div>
</template>