2024-11-30 02:19:32 +01:00
|
|
|
<template>
|
2024-11-30 16:21:16 +01:00
|
|
|
<Card as="article" class="rounded-none border-0 duration-200 shadow-none">
|
2024-11-30 17:17:16 +01:00
|
|
|
<CardHeader class="pb-4" as="header">
|
2024-11-30 16:39:02 +01:00
|
|
|
<ReblogHeader v-if="note.reblog" :avatar="note.account.avatar"
|
|
|
|
|
:display-name="note.account.display_name" :url="reblogAccountUrl" />
|
2024-11-30 16:21:16 +01:00
|
|
|
<Header :avatar="noteToUse.account.avatar" :corner-avatar="note.reblog ? note.account.avatar : undefined"
|
|
|
|
|
:acct="noteToUse.account.acct" :display-name="noteToUse.account.display_name"
|
2024-11-30 16:39:02 +01:00
|
|
|
:visibility="noteToUse.visibility" :url="accountUrl" :created-at="new Date(noteToUse.created_at)" :small-layout="smallLayout" />
|
2024-11-30 02:19:32 +01:00
|
|
|
</CardHeader>
|
|
|
|
|
<CardContent>
|
2024-11-30 16:39:02 +01:00
|
|
|
<Content :content="noteToUse.content" :quote="note.quote ?? undefined" />
|
2024-11-30 02:19:32 +01:00
|
|
|
</CardContent>
|
2024-11-30 16:39:02 +01:00
|
|
|
<CardFooter v-if="!hideActions">
|
2024-11-30 16:21:16 +01:00
|
|
|
<Actions :reply-count="noteToUse.replies_count" :like-count="noteToUse.favourites_count"
|
|
|
|
|
:reblog-count="noteToUse.reblogs_count" />
|
|
|
|
|
</CardFooter>
|
2024-11-30 02:19:32 +01:00
|
|
|
</Card>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { Status } from "@versia/client/types";
|
2024-11-30 16:21:16 +01:00
|
|
|
import { Card, CardFooter, CardHeader } from "../ui/card";
|
|
|
|
|
import Actions from "./actions.vue";
|
2024-11-30 02:19:32 +01:00
|
|
|
import Content from "./content.vue";
|
|
|
|
|
import Header from "./header.vue";
|
2024-11-30 16:21:16 +01:00
|
|
|
import ReblogHeader from "./reblog-header.vue";
|
2024-11-30 02:19:32 +01:00
|
|
|
|
|
|
|
|
const { note } = defineProps<{
|
|
|
|
|
note: Status;
|
2024-11-30 16:39:02 +01:00
|
|
|
hideActions?: boolean;
|
|
|
|
|
smallLayout?: boolean;
|
2024-11-30 02:19:32 +01:00
|
|
|
}>();
|
|
|
|
|
|
2024-11-30 16:39:02 +01:00
|
|
|
// Notes can be reblogs, in which case the actual thing to render is inside the reblog property
|
|
|
|
|
const noteToUse = note.reblog ? note.reblog : note;
|
2024-11-30 16:21:16 +01:00
|
|
|
|
|
|
|
|
const url = `/@${noteToUse.account.acct}/${noteToUse.id}`;
|
|
|
|
|
const accountUrl = `/@${noteToUse.account.acct}`;
|
2024-11-30 16:39:02 +01:00
|
|
|
const reblogAccountUrl = `/@${note.account.acct}`;
|
2024-11-30 16:21:16 +01:00
|
|
|
</script>
|