2024-08-10 07:00:17 +00:00
|
|
|
<template>
|
|
|
|
<v-container class="content-container mx-auto">
|
|
|
|
<div class="my-3 flex flex-row gap-4">
|
|
|
|
<v-avatar :image="post.author?.avatar" />
|
|
|
|
<div class="flex flex-col">
|
|
|
|
<span>{{ post.author?.nick }} <span class="text-xs">@{{ post.author?.name }}</span></span>
|
|
|
|
<span v-if="post.body?.title" class="text-md">{{ post.body?.title }}</span>
|
|
|
|
<span v-if="post.body?.description" class="text-sm">{{ post.body?.description }}</span>
|
|
|
|
<span v-if="!post.body?.title && !post.body?.description" class="text-sm">{{ post.author?.description }}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-08-10 13:16:36 +00:00
|
|
|
<article class="text-base prose xl:text-lg mx-auto">
|
2024-08-10 07:00:17 +00:00
|
|
|
<m-d-c :value="post.body?.content"></m-d-c>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
<v-card v-if="post.body?.attachments?.length > 0" class="mb-5">
|
2024-08-10 08:09:17 +00:00
|
|
|
<attachment-carousel :attachments="post.body?.attachments" />
|
2024-08-10 07:00:17 +00:00
|
|
|
</v-card>
|
|
|
|
|
|
|
|
<div class="mb-3 text-sm flex flex-col">
|
|
|
|
<span class="flex flex-row gap-1">
|
|
|
|
<span>
|
|
|
|
{{ post.metric.reply_count }} {{ post.metric.reply_count > 1 ? "replies" : "reply" }},
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
{{ post.metric.reaction_count }} {{ post.metric.reaction_count > 1 ? "reactions" : "reaction" }}
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
{{ post.type.startsWith("a") ? "An" : "A" }} {{ post.type }} posted on
|
|
|
|
{{ new Date(post.published_at).toLocaleString() }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
2024-08-10 08:09:17 +00:00
|
|
|
<div v-if="post.tags?.length > 0" class="text-xs text-grey flex flex-row gap-1 mb-3">
|
|
|
|
<span v-for="tag in post.tags">#{{ tag.alias }}</span>
|
|
|
|
</div>
|
|
|
|
|
2024-08-10 07:00:17 +00:00
|
|
|
<div class="text-xs text-grey flex flex-col">
|
|
|
|
<span>Solar Network Post Web Preview</span>
|
|
|
|
<span>To get full view of this post, open it on <a class="underline" :href="externalOpenLink">Solian</a></span>
|
|
|
|
</div>
|
|
|
|
</v-container>
|
|
|
|
</template>
|
2024-08-10 05:26:58 +00:00
|
|
|
|
|
|
|
<script setup lang="ts">
|
2024-08-10 07:00:17 +00:00
|
|
|
const route = useRoute()
|
|
|
|
const config = useRuntimeConfig()
|
|
|
|
|
|
|
|
const { data: post } = await useFetch<any>(`${config.public.solarNetworkApi}/cgi/interactive/posts/${route.params.id}`)
|
|
|
|
|
2024-08-10 05:26:58 +00:00
|
|
|
useHead({
|
2024-08-10 07:00:17 +00:00
|
|
|
title: post.value.body?.title ?? `Post #${route.params.id}`,
|
|
|
|
titleTemplate: "%s on Solar Network",
|
2024-08-10 14:34:29 +00:00
|
|
|
link: [
|
|
|
|
{ rel: "icon", type: "image/png", href: "/favicon-solian.png" },
|
|
|
|
{ rel: "apple-touch-icon", type: "image/png", href: "/favicon-solian.png" },
|
|
|
|
],
|
|
|
|
})
|
|
|
|
|
|
|
|
useSeoMeta({
|
|
|
|
title: post.value.body?.title ?? `Post #${route.params.id}`,
|
|
|
|
description: post.value.body?.description ?? post.value.body?.content.substring(0, 160).trim(),
|
|
|
|
ogTitle: post.value.body?.title ?? `Post #${route.params.id}`,
|
|
|
|
ogDescription: post.value.body?.description ?? post.value.body?.content.substring(0, 160).trim(),
|
|
|
|
ogUrl: `${useRuntimeConfig().public.siteUrl}/${route.fullPath}`,
|
2024-08-10 05:26:58 +00:00
|
|
|
})
|
2024-08-10 07:00:17 +00:00
|
|
|
|
|
|
|
const externalOpenLink = computed(() => `${config.public.solianUrl}/posts/view/${route.params.id}`)
|
2024-08-10 05:26:58 +00:00
|
|
|
</script>
|
2024-08-10 07:00:17 +00:00
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.content-container {
|
|
|
|
max-width: 65ch !important;
|
|
|
|
}
|
|
|
|
</style>
|