feat: add forum seed categories, improve page layouts and navigation

- Seed default forum categories (announcements, learning, feedback) on startup
- Update forum pages with improved category/post/reply UI
- Refine navbar, mobile nav, and home page content layout
- Improve analytics, course-content, knowledge, profile, settings, spatial pages

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 10:02:30 +08:00
parent 45e3da82e1
commit 50faf7ad4e
13 changed files with 592 additions and 389 deletions
+150 -59
View File
@@ -2,17 +2,76 @@
import { useEffect, useState } from "react";
import Link from "next/link";
import { MessageSquare, Loader2, MessageCircle } from "lucide-react";
import {
MessageSquare,
Loader2,
MessageCircle,
BookOpen,
Lightbulb,
Megaphone,
ChevronRight,
Clock,
User,
} from "lucide-react";
import { forumAPI } from "@/lib/api";
import type { ForumCategory, ForumPostSummary } from "@/types";
import { Card, CardHeader, CardTitle, CardDescription, CardContent } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { Alert, AlertDescription } from "@/components/ui/alert";
const CATEGORY_ICONS: Record<string, React.ReactNode> = {
default: <MessageSquare className="w-5 h-5" />,
};
const CATEGORY_ORDER = ["公告", "通知", "学习", "讨论", "课程", "反馈", "使用"];
function getCategoryIcon(name: string) {
if (name.includes("公告") || name.includes("通知"))
return <Megaphone className="w-4 h-4" />;
if (name.includes("学习") || name.includes("讨论") || name.includes("课程"))
return <BookOpen className="w-4 h-4" />;
if (name.includes("反馈") || name.includes("使用"))
return <Lightbulb className="w-4 h-4" />;
return CATEGORY_ICONS.default;
}
function getCategoryGradient(name: string) {
if (name.includes("公告") || name.includes("通知"))
return "from-rose-500/10 to-rose-50";
if (name.includes("学习") || name.includes("讨论") || name.includes("课程"))
return "from-blue-500/10 to-blue-50";
if (name.includes("反馈") || name.includes("使用"))
return "from-amber-500/10 to-amber-50";
return "from-slate-500/10 to-slate-50";
}
function getCategoryAccent(name: string) {
if (name.includes("公告") || name.includes("通知")) return "text-rose-600";
if (name.includes("学习") || name.includes("讨论") || name.includes("课程")) return "text-blue-600";
if (name.includes("反馈") || name.includes("使用")) return "text-amber-600";
return "text-slate-600";
}
function formatRelativeTime(dateStr: string) {
const date = new Date(
new Date(dateStr).getTime() + 8 * 60 * 60 * 1000
);
const now = new Date();
const diffMs = now.getTime() - date.getTime();
const diffMinutes = Math.floor(diffMs / (1000 * 60));
const diffHours = Math.floor(diffMs / (1000 * 60 * 60));
const diffDays = Math.floor(diffMs / (1000 * 60 * 60 * 24));
if (diffMinutes < 1) return "刚刚";
if (diffMinutes < 60) return `${diffMinutes} 分钟前`;
if (diffHours < 24) return `${diffHours} 小时前`;
if (diffDays < 7) return `${diffDays} 天前`;
return date.toLocaleDateString("zh-CN", { month: "short", day: "numeric" });
}
export default function ForumHomePage() {
const [categories, setCategories] = useState<ForumCategory[]>([]);
const [categoryPosts, setCategoryPosts] = useState<Record<number, ForumPostSummary[]>>({});
const [categoryPosts, setCategoryPosts] = useState<
Record<number, ForumPostSummary[]>
>({});
const [isLoading, setIsLoading] = useState(true);
const [error, setError] = useState<string | null>(null);
@@ -25,10 +84,9 @@ export default function ForumHomePage() {
const postsEntries = await Promise.all(
data.map(async (category) => {
try {
const posts = await forumAPI.getPosts(category.id, 10);
const posts = await forumAPI.getPosts(category.id, 3);
return [category.id, posts] as const;
} catch (err) {
console.warn(`加载分类 ${category.name} 的帖子失败:`, err);
} catch {
return [category.id, []] as const;
}
})
@@ -36,7 +94,8 @@ export default function ForumHomePage() {
setCategoryPosts(Object.fromEntries(postsEntries));
setError(null);
} catch (err) {
const message = err instanceof Error ? err.message : "加载论坛数据失败";
const message =
err instanceof Error ? err.message : "加载论坛数据失败";
setError(message);
} finally {
setIsLoading(false);
@@ -47,78 +106,110 @@ export default function ForumHomePage() {
}, []);
return (
<div className="mit-container py-10 space-y-6">
<div className="space-y-2">
<h1 className="text-3xl font-bold flex items-center gap-2">
<MessageSquare className="h-7 w-7 text-primary" />
</h1>
<p className="text-muted-foreground">
使
</p>
</div>
<div className="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 py-6 space-y-5">
{isLoading ? (
<div className="flex items-center gap-2 text-muted-foreground">
<div className="flex items-center justify-center gap-2 text-muted-foreground py-20">
<Loader2 className="h-4 w-4 animate-spin" />
...
...
</div>
) : error ? (
<Alert variant="destructive">
<AlertDescription>{error}</AlertDescription>
</Alert>
<div className="text-center py-16">
<p className="text-muted-foreground">{error}</p>
</div>
) : (
<div className="grid gap-4 md:grid-cols-2">
{categories.map((category) => (
<Card key={category.id} className="flex flex-col">
<CardHeader>
<CardTitle>{category.name}</CardTitle>
{category.description && (
<CardDescription>{category.description}</CardDescription>
)}
</CardHeader>
<CardContent className="flex flex-col gap-4 h-full">
<div className="flex items-center justify-between text-sm text-muted-foreground">
<span>{category.post_count} </span>
<Button asChild size="sm" variant="ghost" className="px-2">
<Link href={`/forum/${category.id}`}></Link>
</Button>
<div className="space-y-3">
{[...categories]
.sort((a, b) => {
const getOrder = (name: string) => {
for (let i = 0; i < CATEGORY_ORDER.length; i++) {
if (name.includes(CATEGORY_ORDER[i])) return i;
}
return CATEGORY_ORDER.length;
};
return getOrder(a.name) - getOrder(b.name);
})
.map((category) => {
const posts = categoryPosts[category.id] || [];
return (
<div
key={category.id}
className={`bg-gradient-to-r ${getCategoryGradient(
category.name
)} rounded-xl border border-border/40 overflow-hidden`}
>
{/* Category header */}
<div className="px-4 py-3 flex items-center justify-between border-b border-border/20">
<div className="flex items-center gap-2.5">
<span className={getCategoryAccent(category.name)}>
{getCategoryIcon(category.name)}
</span>
<div>
<h2 className="text-sm font-semibold text-foreground">
{category.name}
</h2>
{category.description && (
<p className="text-[11px] text-muted-foreground mt-0">
{category.description}
</p>
)}
</div>
</div>
<div className="flex items-center gap-2.5">
<span className="text-[11px] text-muted-foreground tabular-nums">
{category.post_count}
</span>
<Link
href={`/forum/${category.id}`}
className="text-[11px] font-medium text-primary hover:underline flex items-center gap-0.5"
>
<ChevronRight className="w-3 h-3" />
</Link>
</div>
</div>
<div className="flex-1 space-y-3 overflow-y-auto pr-1">
{categoryPosts[category.id] && categoryPosts[category.id].length > 0 ? (
categoryPosts[category.id].map((post) => (
{/* Posts list */}
<div className="divide-y divide-border/20">
{posts.length > 0 ? (
posts.map((post) => (
<Link
key={post.id}
href={`/forum/post/${post.id}`}
className="block rounded-lg border border-border/60 hover:border-primary/50 hover:bg-muted/40 transition-colors"
className="flex items-start gap-2.5 px-4 py-2.5 hover:bg-white/40 transition-colors group"
>
<div className="px-3 py-2">
<div className="font-medium text-foreground line-clamp-1">
<div className="mt-0.5 w-6 h-6 rounded-full bg-muted/60 flex items-center justify-center flex-shrink-0">
<User className="w-3 h-3 text-muted-foreground" />
</div>
<div className="flex-1 min-w-0">
<p className="text-[13px] font-medium text-foreground group-hover:text-primary transition-colors line-clamp-1">
{post.title}
</div>
<div className="mt-1 flex items-center text-xs text-muted-foreground gap-2">
</p>
<div className="flex items-center gap-2 mt-0.5 text-[11px] text-muted-foreground">
<span>{post.author_name}</span>
<span>·</span>
<span>{new Date(new Date(post.created_at).getTime() + 8 * 60 * 60 * 1000).toLocaleString()}</span>
<span>·</span>
<span>{post.reply_count} </span>
<span className="inline-flex items-center gap-0.5">
<Clock className="w-2.5 h-2.5" />
{formatRelativeTime(post.created_at)}
</span>
<span className="inline-flex items-center gap-0.5">
<MessageCircle className="w-2.5 h-2.5" />
{post.reply_count}
</span>
</div>
</div>
<ChevronRight className="w-3.5 h-3.5 text-muted-foreground/0 group-hover:text-muted-foreground transition-colors mt-1 flex-shrink-0" />
</Link>
))
) : (
<div className="flex items-center gap-2 text-sm text-muted-foreground">
<MessageCircle className="h-4 w-4" />
<div className="px-4 py-5 text-center text-xs text-muted-foreground">
</div>
)}
</div>
</CardContent>
</Card>
))}
</div>
);
})}
</div>
)}
</div>
);
}