2024-11-30 02:19:32 +01:00
|
|
|
<template>
|
2025-03-28 01:16:24 +01:00
|
|
|
<Card as="article" class="relative gap-4 items-stretch">
|
|
|
|
|
<CardHeader as="header">
|
|
|
|
|
<ReblogHeader
|
|
|
|
|
v-if="note.reblog"
|
|
|
|
|
:avatar="note.account.avatar"
|
|
|
|
|
:display-name="note.account.display_name"
|
|
|
|
|
:url="reblogAccountUrl"
|
|
|
|
|
:emojis="note.account.emojis"
|
|
|
|
|
/>
|
|
|
|
|
<Header
|
|
|
|
|
:author="noteToUse.account"
|
|
|
|
|
:author-url="accountUrl"
|
|
|
|
|
:corner-avatar="note.reblog ? note.account.avatar : undefined"
|
|
|
|
|
:note-url="url"
|
|
|
|
|
:visibility="noteToUse.visibility"
|
|
|
|
|
:created-at="new Date(noteToUse.created_at)"
|
|
|
|
|
:small-layout="smallLayout"
|
|
|
|
|
class="z-[1]"
|
|
|
|
|
/>
|
|
|
|
|
<div
|
|
|
|
|
v-if="topAvatarBar"
|
|
|
|
|
:class="
|
|
|
|
|
cn(
|
|
|
|
|
'shrink-0 bg-border w-0.5 absolute top-0 h-7 left-[3rem]'
|
|
|
|
|
)
|
|
|
|
|
"
|
|
|
|
|
></div>
|
|
|
|
|
<div
|
|
|
|
|
v-if="bottomAvatarBar"
|
|
|
|
|
:class="
|
|
|
|
|
cn(
|
|
|
|
|
'shrink-0 bg-border w-0.5 absolute bottom-0 h-[calc(100%-1.5rem)] left-[3rem]'
|
|
|
|
|
)
|
|
|
|
|
"
|
|
|
|
|
></div>
|
2024-11-30 02:19:32 +01:00
|
|
|
</CardHeader>
|
2024-12-29 14:51:21 +01:00
|
|
|
<!-- Simply offset by the size of avatar + 0.75rem (the gap) -->
|
2025-03-28 01:16:24 +01:00
|
|
|
<CardContent
|
|
|
|
|
:class="
|
|
|
|
|
contentUnderUsername && (smallLayout ? 'ml-11' : 'ml-[4.25rem]')
|
|
|
|
|
"
|
|
|
|
|
>
|
|
|
|
|
<Content
|
|
|
|
|
:content="noteToUse.content"
|
|
|
|
|
:quote="note.quote ?? undefined"
|
|
|
|
|
:attachments="noteToUse.media_attachments"
|
|
|
|
|
:plain-content="noteToUse.plain_content ?? undefined"
|
|
|
|
|
:emojis="noteToUse.emojis"
|
|
|
|
|
:sensitive="noteToUse.sensitive"
|
|
|
|
|
:content-warning="noteToUse.spoiler_text"
|
|
|
|
|
/>
|
2024-11-30 02:19:32 +01:00
|
|
|
</CardContent>
|
2025-03-28 01:16:24 +01:00
|
|
|
<CardFooter v-if="!hideActions">
|
|
|
|
|
<Actions
|
|
|
|
|
:reply-count="noteToUse.replies_count"
|
|
|
|
|
:like-count="noteToUse.favourites_count"
|
|
|
|
|
:url="url"
|
|
|
|
|
:api-note-string="JSON.stringify(note, null, 4)"
|
|
|
|
|
:reblog-count="noteToUse.reblogs_count"
|
|
|
|
|
:remote-url="noteToUse.url"
|
|
|
|
|
:is-remote="isRemote"
|
|
|
|
|
:author-id="noteToUse.account.id"
|
|
|
|
|
@edit="useEvent('composer:edit', note)"
|
|
|
|
|
@reply="useEvent('composer:reply', note)"
|
|
|
|
|
@quote="useEvent('composer:quote', note)"
|
|
|
|
|
@delete="useEvent('note:delete', note)"
|
|
|
|
|
:note-id="noteToUse.id"
|
|
|
|
|
:liked="noteToUse.favourited ?? false"
|
|
|
|
|
:reblogged="noteToUse.reblogged ?? false"
|
|
|
|
|
/>
|
2024-11-30 16:21:16 +01:00
|
|
|
</CardFooter>
|
2024-11-30 02:19:32 +01:00
|
|
|
</Card>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2024-12-29 14:51:21 +01:00
|
|
|
import { cn } from "@/lib/utils";
|
2024-11-30 02:19:32 +01:00
|
|
|
import type { Status } from "@versia/client/types";
|
2025-03-27 22:20:04 +01:00
|
|
|
import { Card, CardContent, CardFooter, CardHeader } from "../ui/card";
|
2024-11-30 16:21:16 +01:00
|
|
|
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-12-29 14:51:21 +01:00
|
|
|
contentUnderUsername?: boolean;
|
|
|
|
|
topAvatarBar?: boolean;
|
|
|
|
|
bottomAvatarBar?: 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
|
2024-12-01 18:54:17 +01:00
|
|
|
const noteToUse = computed(() => (note.reblog ? note.reblog : note));
|
2024-11-30 16:21:16 +01:00
|
|
|
|
2024-12-01 18:54:17 +01:00
|
|
|
const url = wrapUrl(`/@${noteToUse.value.account.acct}/${noteToUse.value.id}`);
|
|
|
|
|
const accountUrl = wrapUrl(`/@${noteToUse.value.account.acct}`);
|
2024-11-30 18:21:40 +01:00
|
|
|
const reblogAccountUrl = wrapUrl(`/@${note.account.acct}`);
|
2024-12-01 18:54:17 +01:00
|
|
|
const isRemote = noteToUse.value.account.acct.includes("@");
|
2024-11-30 16:21:16 +01:00
|
|
|
</script>
|