Files
record-app-next/app/profile/page.tsx
2025-07-31 17:05:07 +08:00

214 lines
6.9 KiB
TypeScript

"use client";
import { useSession } from "next-auth/react";
import { useRouter } from "next/navigation";
import { useState, useEffect } from "react";
import Header from "@/components/Header";
import LoadingSpinner from "@/components/LoadingSpinner";
interface UserProfile {
id: string;
name: string;
email: string;
image?: string;
createdAt: string;
}
export default function ProfilePage() {
const { data: session, status } = useSession();
const router = useRouter();
const [isEditing, setIsEditing] = useState(false);
const [name, setName] = useState("");
const [isSaving, setIsSaving] = useState(false);
const [isLoading, setIsLoading] = useState(true);
const [userProfile, setUserProfile] = useState<UserProfile | null>(null);
// 获取用户资料
const fetchUserProfile = async () => {
try {
const response = await fetch("/api/user/profile");
if (response.ok) {
const result = await response.json();
if (result.success && result.data) {
const data = result.data;
setUserProfile(data);
setName(data.name || "");
} else {
console.error("API 返回数据格式错误:", result);
}
}
} catch (error) {
console.error("获取用户资料失败:", error);
} finally {
setIsLoading(false);
}
};
useEffect(() => {
if (status === "authenticated") {
fetchUserProfile();
}
}, [status]);
const handleSave = async () => {
setIsSaving(true);
try {
const response = await fetch("/api/user/profile", {
method: "PUT",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({ name }),
});
if (response.ok) {
const result = await response.json();
if (result.success && result.data) {
const updatedProfile = result.data;
setUserProfile(updatedProfile);
setIsEditing(false);
// 刷新 session 以更新显示名称
window.location.reload();
} else {
throw new Error("API 返回数据格式错误");
}
} else {
throw new Error("保存失败");
}
} catch (error) {
console.error("保存失败:", error);
alert("保存失败,请重试");
} finally {
setIsSaving(false);
}
};
if (status === "loading" || isLoading) {
return (
<div className="flex justify-center items-center min-h-screen">
<LoadingSpinner size="lg" color="blue" text="加载中..." />
</div>
);
}
if (status === "unauthenticated") {
router.push("/login");
return null;
}
if (!session?.user || !userProfile) {
return null;
}
return (
<div className="min-h-screen bg-gray-50">
<Header />
<main className="container mx-auto p-4 md:p-8 max-w-4xl">
<div className="bg-white rounded-xl shadow-sm border border-gray-200 p-6 md:p-8">
<div className="flex items-center gap-4 mb-8">
<div className="w-16 h-16 bg-blue-500 rounded-full flex items-center justify-center text-white text-2xl font-bold">
{userProfile.name?.[0] || userProfile.email?.[0] || "U"}
</div>
<div>
<h1 className="text-2xl font-bold text-gray-900"></h1>
<p className="text-gray-600"></p>
</div>
</div>
<div className="space-y-6">
{/* 基本信息 */}
<div>
<h2 className="text-lg font-semibold text-gray-900 mb-4">
</h2>
<div className="grid gap-4 md:grid-cols-2">
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
</label>
{isEditing ? (
<input
type="text"
value={name}
onChange={(e) => setName(e.target.value)}
className="w-full px-3 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent"
placeholder="请输入显示名称"
/>
) : (
<div className="px-3 py-2 bg-gray-50 rounded-lg text-gray-900">
{userProfile.name || "未设置"}
</div>
)}
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
</label>
<div className="px-3 py-2 bg-gray-50 rounded-lg text-gray-900">
{userProfile.email}
</div>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
</label>
<div className="px-3 py-2 bg-gray-50 rounded-lg text-gray-900">
{userProfile.email?.includes("@gmail.com")
? "Google 账户"
: "邮箱账户"}
</div>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
</label>
<div className="px-3 py-2 bg-gray-50 rounded-lg text-gray-900">
{new Date(userProfile.createdAt).toLocaleDateString(
"zh-CN"
)}
</div>
</div>
</div>
</div>
{/* 操作按钮 */}
<div className="flex gap-3 pt-6 border-t border-gray-200">
{isEditing ? (
<>
<button
onClick={handleSave}
disabled={isSaving}
className="px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600 disabled:opacity-50 transition-colors"
>
{isSaving ? "保存中..." : "保存"}
</button>
<button
onClick={() => {
setIsEditing(false);
setName(userProfile.name || "");
}}
className="px-4 py-2 bg-gray-200 text-gray-700 rounded-lg hover:bg-gray-300 transition-colors"
>
</button>
</>
) : (
<button
onClick={() => setIsEditing(true)}
className="px-4 py-2 bg-blue-500 text-white rounded-lg hover:bg-blue-600 transition-colors"
>
</button>
)}
</div>
</div>
</div>
</main>
</div>
);
}