1
0
mirror of https://github.com/elk-zone/elk synced 2024-11-24 15:16:09 +09:00
elk/components/conversation/ConversationCard.vue

27 lines
798 B
Vue
Raw Normal View History

2022-11-18 18:37:22 +09:00
<script setup lang="ts">
import type { Conversation } from 'masto'
2022-12-07 08:51:29 +09:00
const { conversation } = defineProps<{
2022-11-18 18:37:22 +09:00
conversation: Conversation
}>()
2022-12-07 08:51:29 +09:00
const withAccounts = $computed(() =>
conversation.accounts.filter(account => account.id !== conversation.lastStatus?.account.id),
)
2022-11-18 18:37:22 +09:00
</script>
<template>
<article v-if="conversation.lastStatus" flex flex-col gap-2>
2022-12-13 23:56:00 +09:00
<StatusCard v-if="conversation.lastStatus" :status="conversation.lastStatus" :actions="false">
<template #meta>
<div flex gap-2 text-sm text-secondary font-bold>
<p mr-1>
{{ $t('conversation.with') }}
</p>
<AccountAvatar v-for="account in withAccounts" :key="account.id" h-5 w-5 :account="account" />
</div>
</template>
</StatusCard>
2022-11-28 08:29:21 +09:00
</article>
2022-11-18 18:37:22 +09:00
</template>