frontend/components/notes/note.vue

41 lines
1.7 KiB
Vue
Raw Normal View History

2024-11-30 02:19:32 +01:00
<template>
<Card as="article" class="rounded-none border-0 duration-200 shadow-none">
<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" />
<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">
<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";
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";
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;
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}`;
</script>