95 lines
3.0 KiB
TypeScript
95 lines
3.0 KiB
TypeScript
import React, { useEffect, useState } from 'react'
|
||
import { Header } from '../components/Header'
|
||
import { Footer } from '../components/Footer'
|
||
import { Categories } from '../clientsdk/sdk.gen'
|
||
import { createClient } from '../clientsdk/client'
|
||
import { customQuerySerializer } from '../clientsdk/querySerializer'
|
||
import { TENANT_SLUG, TENANT_API_KEY, API_URL } from '../config'
|
||
|
||
const client = createClient({
|
||
baseUrl: API_URL,
|
||
querySerializer: customQuerySerializer,
|
||
headers: {
|
||
'X-Tenant-Slug': TENANT_SLUG,
|
||
'X-API-Key': TENANT_API_KEY,
|
||
},
|
||
})
|
||
|
||
export const CategoriesPage: React.FC = () => {
|
||
const [categories, setCategories] = useState<any[]>([])
|
||
const [loading, setLoading] = useState(true)
|
||
const [error, setError] = useState<string | null>(null)
|
||
|
||
useEffect(() => {
|
||
const fetchCategories = async () => {
|
||
try {
|
||
setLoading(true)
|
||
setError(null)
|
||
|
||
const response = await Categories.listCategories({
|
||
client,
|
||
query: {
|
||
limit: 100,
|
||
},
|
||
})
|
||
|
||
setCategories((response as any)?.data?.docs || [])
|
||
} catch (err) {
|
||
setError(err instanceof Error ? err.message : '加载失败')
|
||
console.error('获取分类失败:', err)
|
||
} finally {
|
||
setLoading(false)
|
||
}
|
||
}
|
||
|
||
fetchCategories()
|
||
}, [])
|
||
|
||
return (
|
||
<div className="min-h-screen bg-gray-50">
|
||
<Header />
|
||
|
||
<main className="container mx-auto px-4 py-8">
|
||
<section className="mb-12">
|
||
<h2 className="text-3xl font-bold text-gray-900 mb-2">📂 文章分类</h2>
|
||
<p className="text-gray-600">浏览所有分类</p>
|
||
</section>
|
||
|
||
{error && (
|
||
<div className="bg-red-50 border border-red-200 text-red-700 px-4 py-3 rounded-lg mb-6">
|
||
<strong>错误:</strong> {error}
|
||
</div>
|
||
)}
|
||
|
||
<div className="grid gap-4 md:grid-cols-2 lg:grid-cols-3">
|
||
{loading
|
||
? Array.from({ length: 6 }).map((_, i) => (
|
||
<div key={i} className="bg-white p-6 rounded-lg shadow-sm animate-pulse">
|
||
<div className="h-6 bg-gray-200 rounded w-3/4 mb-2"></div>
|
||
<div className="h-4 bg-gray-200 rounded w-1/2"></div>
|
||
</div>
|
||
))
|
||
: categories.map((category) => (
|
||
<a
|
||
key={category.id}
|
||
href={`/categories/${category.slug}`}
|
||
className="bg-white p-6 rounded-lg shadow-sm hover:shadow-md transition-shadow"
|
||
>
|
||
<h3 className="text-xl font-semibold text-gray-900 mb-2">{category.title}</h3>
|
||
<p className="text-sm text-gray-600">查看该分类下的所有文章</p>
|
||
</a>
|
||
))}
|
||
</div>
|
||
|
||
{!loading && categories.length === 0 && !error && (
|
||
<div className="text-center py-12">
|
||
<p className="text-gray-500 text-lg">暂无分类</p>
|
||
</div>
|
||
)}
|
||
</main>
|
||
|
||
<Footer />
|
||
</div>
|
||
)
|
||
}
|