chore: 初始化项目仓库

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-31 21:27:39 +08:00
commit b7addb5c7a
50 changed files with 15964 additions and 0 deletions
+93
View File
@@ -0,0 +1,93 @@
<script setup lang="ts">
import { siteConfig } from '~/config/site'
const route = useRoute()
const slug = route.params.slug as string
const { data: post } = await useAsyncData(`post-${slug}`, () =>
queryCollection('posts')
.path(`/posts/${slug}`)
.first()
)
if (!post.value) {
throw createError({ statusCode: 404, message: '文章不存在' })
}
useSeoMeta({
title: post.value.title || slug,
description: post.value.description || '',
ogType: 'article',
ogTitle: post.value.title || slug,
ogDescription: post.value.description || '',
ogImage: post.value.image || siteConfig.ogImage,
twitterCard: 'summary_large_image',
twitterTitle: post.value.title || slug,
twitterDescription: post.value.description || '',
twitterImage: post.value.image || siteConfig.ogImage,
})
function formatDate(date: string) {
return new Date(date).toLocaleDateString('zh-CN', {
year: 'numeric',
month: 'long',
day: 'numeric',
})
}
</script>
<template>
<article v-if="post" class="container mx-auto max-w-3xl px-4 py-12">
<header class="mb-8 anim-fade-in-up">
<div class="mb-4 flex items-center gap-2">
<time v-if="post.published" class="text-sm text-muted-foreground">
{{ formatDate(post.published) }}
</time>
</div>
<h1 class="mb-4 text-4xl font-bold">{{ post.title }}</h1>
<p v-if="post.description" class="text-lg text-muted-foreground">
{{ post.description }}
</p>
<div v-if="post.image" class="mt-6">
<img
:src="post.image"
:alt="post.title"
class="w-full rounded-lg object-cover"
/>
</div>
</header>
<div class="prose prose-neutral dark:prose-invert max-w-none break-words
prose-headings:text-foreground prose-headings:scroll-mt-14
prose-p:text-foreground
prose-strong:text-foreground
prose-a:text-primary prose-a:underline prose-a:underline-offset-4 prose-a:break-all prose-a:transition-opacity prose-a:hover:opacity-80
prose-blockquote:border-l-primary prose-blockquote:text-muted-foreground
prose-code:bg-muted prose-code:text-foreground prose-code:rounded prose-code:px-1.5 prose-code:py-0.5 prose-code:before:content-none prose-code:after:content-none
prose-pre:bg-muted prose-pre:px-4 prose-pre:py-2 prose-pre:text-foreground prose-pre:overflow-x-auto
prose-hr:border-border
prose-th:border prose-th:border-border prose-th:bg-muted
prose-td:border prose-td:border-border
prose-img:rounded-lg
anim-fade-in-up anim-delay-1">
<ContentRenderer :value="post" />
</div>
<div class="anim-fade-in-up anim-delay-2">
<BlogGiscus class="mt-16" />
</div>
<div class="mt-8 pt-6 anim-fade-in-up anim-delay-3" style="border-top: 1px solid var(--color-border)">
<NuxtLink to="/posts" class="text-sm hover:underline" style="color: var(--color-primary)">
&larr; 返回文章列表
</NuxtLink>
</div>
<!-- 右侧目录导航 body AST 提取所有标题SSR 阶段全量渲染 -->
<BlogPostToc :body="post.body" />
</article>
</template>
+176
View File
@@ -0,0 +1,176 @@
<script setup lang="ts">
import { siteConfig } from '~/config/site'
useSeoMeta({
title: '博客文章',
description: `${siteConfig.siteName} 的所有文章`,
})
const searchQuery = ref('')
const currentPage = ref(1)
const postsPerPage = 10
const searchFilters = ref({
title: true,
description: true,
content: true,
tags: true,
})
// 高频标签
const topTags = computed(() => {
if (!allPosts.value) return []
const count: Record<string, number> = {}
for (const post of allPosts.value) {
for (const tag of (post.tags || [])) {
count[tag] = (count[tag] || 0) + 1
}
}
return Object.entries(count)
.sort((a, b) => b[1] - a[1])
.slice(0, 26)
.map(([tag, count]) => ({ tag, count }))
})
function searchByTag(tag: string) {
searchQuery.value = tag
currentPage.value = 1
}
const { data: allPosts } = await useAsyncData('posts-list', () =>
queryCollection('posts')
.order('pinned', 'DESC')
.order('published', 'DESC')
.all()
)
const { searchResults, filteredPosts, highlight } = usePostSearch(allPosts, searchQuery, searchFilters)
const hasAnyFilter = computed(() => searchFilters.value.title || searchFilters.value.description || searchFilters.value.content)
const totalPages = computed(() => Math.ceil(searchResults.value.length / postsPerPage))
const paginatedResults = computed(() => {
const start = (currentPage.value - 1) * postsPerPage
return searchResults.value.slice(start, start + postsPerPage)
})
watch(() => searchFilters.value, () => {
currentPage.value = 1
}, { deep: true })
</script>
<template>
<div class="container mx-auto max-w-4xl px-4 py-12">
<!-- 页面标题 -->
<div class="mb-12 text-center anim-fade-in-up">
<h1 class="mb-4 text-4xl font-bold">博客文章</h1>
<p class="text-muted-foreground">分享技术想法和经验</p>
<p class="mt-2 text-sm text-muted-foreground">
{{ allPosts?.length || 0 }} 篇文章
</p>
</div>
<!-- 搜索框 -->
<div class="mb-8 anim-fade-in-up anim-delay-1">
<div class="relative">
<svg class="absolute left-3.5 top-1/2 -translate-y-1/2 w-4 h-4 text-muted-foreground pointer-events-none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="11" cy="11" r="8" />
<path d="m21 21-4.3-4.3" />
</svg>
<input
v-model="searchQuery"
type="text"
placeholder="搜索文章标题、描述或内容..."
class="w-full h-10 rounded-full border bg-transparent pl-10 pr-4 text-sm outline-none transition-all focus:ring-2"
style="border-color: var(--color-border); --tw-ring-color: var(--color-border);"
@input="currentPage = 1"
/>
</div>
<div class="mt-3 flex flex-wrap gap-4">
<label class="flex items-center gap-2 cursor-pointer select-none text-sm text-muted-foreground">
<input type="checkbox" v-model="searchFilters.title" class="w-4 h-4 rounded" style="accent-color: var(--color-text);" />
<span>标题</span>
</label>
<label class="flex items-center gap-2 cursor-pointer select-none text-sm text-muted-foreground">
<input type="checkbox" v-model="searchFilters.description" class="w-4 h-4 rounded" style="accent-color: var(--color-text);" />
<span>简介</span>
</label>
<label class="flex items-center gap-2 cursor-pointer select-none text-sm text-muted-foreground">
<input type="checkbox" v-model="searchFilters.content" class="w-4 h-4 rounded" style="accent-color: var(--color-text);" />
<span>正文</span>
</label>
<label class="flex items-center gap-2 cursor-pointer select-none text-sm text-muted-foreground">
<input type="checkbox" v-model="searchFilters.tags" class="w-4 h-4 rounded" style="accent-color: var(--color-text);" />
<span>标签</span>
</label>
</div>
<!-- 高频标签 -->
<div v-if="topTags.length > 0" class="mt-3 flex flex-wrap gap-2">
<button
v-for="{ tag, count } in topTags"
:key="tag"
class="px-2.5 py-1 rounded-full text-xs font-medium transition-colors cursor-pointer"
:style="searchQuery === tag
? 'background: var(--color-primary); color: white;'
: 'background: var(--color-bg-hover); color: var(--color-text-secondary);'"
@click="searchByTag(tag)"
>
{{ tag }}
<span class="opacity-60">{{ count }}</span>
</button>
</div>
<div v-if="searchQuery" class="mt-2 min-h-[20px]">
<p v-if="!hasAnyFilter" class="text-sm text-red-500">请至少选择一个搜索范围</p>
<p v-else-if="filteredPosts.length === 0" class="text-sm text-muted-foreground">未找到匹配的文章</p>
<p v-else class="text-sm text-muted-foreground">找到 {{ filteredPosts.length }} 篇文章</p>
</div>
</div>
<!-- 文章列表 -->
<div class="space-y-6 anim-fade-in-up anim-delay-2">
<BlogPostCard
v-for="{ post, matchedLines } in paginatedResults"
:key="post.id"
:post="post"
:matched-lines="matchedLines"
:highlight="highlight"
/>
</div>
<!-- 空状态 -->
<div v-if="paginatedResults.length === 0" class="text-center py-12 text-muted-foreground">
{{ searchQuery ? '未找到匹配的文章' : '暂无文章' }}
</div>
<!-- 分页 -->
<div v-if="totalPages > 1" class="mt-8 flex flex-col items-center gap-4">
<div class="flex items-center gap-2">
<button
:disabled="currentPage <= 1"
class="btn-pill disabled:opacity-40"
@click="currentPage--"
>
上一页
</button>
<span class="text-sm text-muted-foreground">
{{ currentPage }} / {{ totalPages }}
</span>
<button
:disabled="currentPage >= totalPages"
class="btn-pill disabled:opacity-40"
@click="currentPage++"
>
下一页
</button>
</div>
<p class="text-center text-sm text-muted-foreground">
{{ totalPages }} / {{ filteredPosts.length }}
</p>
</div>
</div>
</template>