128 lines
4.0 KiB
Vue
128 lines
4.0 KiB
Vue
<script setup lang="ts">
|
|
import type { BlogPost } from '@/types/blog'
|
|
|
|
const { path } = useRoute()
|
|
const articles = await queryContent(path).findOne()
|
|
|
|
const data = computed<BlogPost>(() => {
|
|
return {
|
|
title: articles.title || 'no-title available',
|
|
description: articles.description || 'no-descriptoin available',
|
|
image: articles.image || '/nuxt-blog/no-image_cyyits.png',
|
|
alt: articles.alt || 'no alter data available',
|
|
ogImage: articles.ogImage || '/nuxt-blog/no-image_cyyits.png',
|
|
date: articles.date || 'not-date-available',
|
|
tags: articles.tags || [],
|
|
published: articles.published || false,
|
|
}
|
|
})
|
|
|
|
const links = articles.body.toc.links
|
|
|
|
useHead({
|
|
title: data.value.title || '',
|
|
meta: [
|
|
{ name: 'description', content: data.value.description },
|
|
{
|
|
name: 'description',
|
|
content: data.value.description,
|
|
},
|
|
// Test on: https://developers.facebook.com/tools/debug/ or https://socialsharepreview.com/
|
|
{ property: 'og:site_name', content: 'Riyad\'s Blog' },
|
|
{ hid: 'og:type', property: 'og:type', content: 'website' },
|
|
{
|
|
property: 'og:url',
|
|
content: `https://blog-nurriyad.vercel.app/${path}`,
|
|
},
|
|
{
|
|
property: 'og:title',
|
|
content: data.value.title,
|
|
},
|
|
{
|
|
property: 'og:description',
|
|
content: data.value.description,
|
|
},
|
|
{
|
|
property: 'og:image',
|
|
content: data.value.ogImage || data.value.image,
|
|
},
|
|
// Test on: https://cards-dev.twitter.com/validator or https://socialsharepreview.com/
|
|
{ name: 'twitter:site', content: '@qdnvubp' },
|
|
{ name: 'twitter:card', content: 'summary_large_image' },
|
|
{
|
|
name: 'twitter:url',
|
|
content: `https://blog-nurriyad.vercel.app/${path}`,
|
|
},
|
|
{
|
|
name: 'twitter:title',
|
|
content: data.value.title,
|
|
},
|
|
{
|
|
name: 'twitter:description',
|
|
content: data.value.description,
|
|
},
|
|
{
|
|
name: 'twitter:image',
|
|
content: data.value.ogImage || data.value.image,
|
|
},
|
|
],
|
|
link: [
|
|
{
|
|
rel: 'canonical',
|
|
href: `https://blog-nurriyad.vercel.app/${path}`,
|
|
},
|
|
],
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<main class="px-6 container max-w-6xl mx-auto grid grid-cols-12 space-x-8">
|
|
<div class="col-span-12 lg:col-span-9">
|
|
<header>
|
|
<h1 class="text-xl md:text-3xl lg:text-4xl m-7 font-bold text-center">
|
|
{{ data.title || '' }}
|
|
</h1>
|
|
<NuxtImg
|
|
:src="data.image || ''"
|
|
:alt="data.alt || ''"
|
|
class="m-auto rounded-2xl shadow-lg h-52 md:h-96 w-4/5 content-center object-cover"
|
|
/>
|
|
<p class="text-xs sm:text-sm my-3 max-w-3xl mx-auto text-center text-zinc-600">
|
|
{{ data.description }}
|
|
</p>
|
|
<div class="flex w-full justify-center text-xs md:text-base my-8">
|
|
<div class="md:flex text-black content-center gap-8 text-xs sm:text-sm">
|
|
<div class="flex items-center font-semibold">
|
|
<LogoDate />
|
|
<p>{{ data.date || '' }}</p>
|
|
</div>
|
|
<div class="flex items-center gap-2 flex-wrap my-5">
|
|
<LogoTag />
|
|
<template v-for="tag in data.tags" :key="tag">
|
|
<span class="bg-gray-200 rounded-md px-2 py-1 font-semibold">{{ tag }}</span>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div
|
|
class="prose prose-pre:max-w-xs sm:prose-pre:max-w-full prose-sm sm:prose-base md:prose-lg prose-h1:no-underline max-w-5xl mx-auto prose-zinc prose-img:rounded-lg"
|
|
>
|
|
<ContentRenderer :value="articles">
|
|
<template #empty>
|
|
<p>No content found.</p>
|
|
</template>
|
|
</ContentRenderer>
|
|
</div>
|
|
</div>
|
|
<div class="lg:col-span-3 sticky top-28 h-96 p-2 hidden lg:block">
|
|
<h1 class="text-lg font-bold mb-4">
|
|
Table Of Content
|
|
</h1>
|
|
<NuxtLink v-for="link in links" :key="link.id" :to="`#${link.id}`" class="block underline text-md mb-3">
|
|
{{ link.text }}
|
|
</NuxtLink>
|
|
</div>
|
|
</main>
|
|
</template>
|