Files
artchat/app/components/tool/Projects.vue

60 lines
2.1 KiB
Vue

<script lang="ts" setup>
const { locale, locales, t } = useI18n()
const currentLocale = computed(() => locales.value.find(l => l.code === locale.value))
const { data: projects } = await useAsyncData('projects-index', async () => await queryCollection('projects').where('favorite', '=', true).select('title', 'description', 'id', 'publishedAt', 'tags', 'slug').all())
const date = (date: string) => useDateFormat(new Date(date), 'DD MMMM YYYY', { locales: currentLocale.value?.code ?? 'en' })
</script>
<template>
<section>
<div class="prose dark:prose-invert">
<PostAlert class="mb-2" />
<i18n-t keypath="tool.projects.main" tag="p">
<template #projects>
<UButton
:label="t('tool.projects.link')"
color="neutral"
variant="link"
size="lg"
trailing-icon="i-ph-code-duotone"
to="/projects"
class="cursor-pointer px-0 py-0.5"
/>
</template>
<template #space>
<br>
</template>
</i18n-t>
</div>
<div v-if="projects" class="m-1 my-4 flex flex-col gap-4">
<div v-for="project in projects" :key="project.id">
<NuxtLink :to="`/projects/${project.slug}`">
<UCard variant="subtle" class="shadow-sm bg-white dark:bg-neutral-900 hover:bg-neutral-100 dark:hover:bg-black duration-300">
<h1 class="text-xl font-medium">
{{ project.title }}
</h1>
<h3 class="text-muted my-2">
{{ project.description }}
</h3>
<div class="flex items-center justify-between">
<p class="text-sm text-muted-foreground">
{{ date(project.publishedAt).value }}
</p>
<div class="flex flex-wrap gap-2">
<UBadge
v-for="tag in project.tags.sort((a: any, b: any) => a.localeCompare(b))"
:key="tag"
variant="soft"
>
{{ tag }}
</UBadge>
</div>
</div>
</UCard>
</NuxtLink>
</div>
</div>
</section>
</template>