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
|
|
|
|
}>()
|
2022-11-21 15:07:55 +00:00
|
|
|
|
|
|
|
const displayName = $computed(() => getDisplayName(notification.account))
|
2022-11-15 21:21:54 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div flex flex-col>
|
|
|
|
<template v-if="notification.type === 'follow'">
|
|
|
|
<div flex ml-4>
|
2022-11-21 15:07:55 +00:00
|
|
|
<div i-ri:user-follow-fill mr-3 color-purple />{{ displayName }} followed you
|
2022-11-15 21:21:54 +00:00
|
|
|
</div>
|
|
|
|
<AccountCard :account="notification.account" p3 />
|
|
|
|
</template>
|
|
|
|
<template v-if="notification.type === 'follow_request'">
|
|
|
|
<div flex ml-4>
|
2022-11-21 15:07:55 +00:00
|
|
|
<div i-ri:user-follow-fill mr-3 color-gray />{{ displayName }} 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'">
|
|
|
|
<div flex ml-4>
|
2022-11-21 15:07:55 +00:00
|
|
|
<div i-ri:heart-fill mr-3 color-red />{{ displayName }} favourited your post
|
2022-11-15 21:21:54 +00:00
|
|
|
</div>
|
|
|
|
<StatusCard :status="notification.status!" p3 />
|
|
|
|
</template>
|
|
|
|
<template v-if="notification.type === 'reblog'">
|
|
|
|
<div flex ml-4>
|
2022-11-21 15:07:55 +00:00
|
|
|
<div i-ri:repeat-fill mr-3 color-green />{{ displayName }} 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>
|