mirror of
https://github.com/beilunyang/moemail.git
synced 2025-09-26 19:41:22 +08:00
123 lines
4.2 KiB
TypeScript
123 lines
4.2 KiB
TypeScript
"use client"
|
|
|
|
import { User } from "next-auth"
|
|
import Image from "next/image"
|
|
import { Button } from "@/components/ui/button"
|
|
import { signOut } from "next-auth/react"
|
|
import { Github, Settings, Crown, Sword, User2, Gem, Mail } from "lucide-react"
|
|
import { useRouter } from "next/navigation"
|
|
import { WebhookConfig } from "./webhook-config"
|
|
import { PromotePanel } from "./promote-panel"
|
|
import { EmailServiceConfig } from "./email-service-config"
|
|
import { useRolePermission } from "@/hooks/use-role-permission"
|
|
import { PERMISSIONS } from "@/lib/permissions"
|
|
import { WebsiteConfigPanel } from "./website-config-panel"
|
|
import { ApiKeyPanel } from "./api-key-panel"
|
|
|
|
interface ProfileCardProps {
|
|
user: User
|
|
}
|
|
|
|
const roleConfigs = {
|
|
emperor: { name: '皇帝', icon: Crown },
|
|
duke: { name: '公爵', icon: Gem },
|
|
knight: { name: '骑士', icon: Sword },
|
|
civilian: { name: '平民', icon: User2 },
|
|
} as const
|
|
|
|
export function ProfileCard({ user }: ProfileCardProps) {
|
|
const router = useRouter()
|
|
const { checkPermission } = useRolePermission()
|
|
const canManageWebhook = checkPermission(PERMISSIONS.MANAGE_WEBHOOK)
|
|
const canPromote = checkPermission(PERMISSIONS.PROMOTE_USER)
|
|
const canManageConfig = checkPermission(PERMISSIONS.MANAGE_CONFIG)
|
|
|
|
return (
|
|
<div className="max-w-2xl mx-auto space-y-6">
|
|
<div className="bg-background rounded-lg border-2 border-primary/20 p-6">
|
|
<div className="flex items-center gap-6">
|
|
<div className="relative">
|
|
{user.image && (
|
|
<Image
|
|
src={user.image}
|
|
alt={user.name || "用户头像"}
|
|
width={80}
|
|
height={80}
|
|
className="rounded-full ring-2 ring-primary/20"
|
|
/>
|
|
)}
|
|
</div>
|
|
<div className="flex-1 min-w-0">
|
|
<div className="flex items-center gap-2">
|
|
<h2 className="text-xl font-bold truncate">{user.name}</h2>
|
|
{
|
|
user.email && (
|
|
// 先简单实现,后续再完善
|
|
<div className="flex items-center gap-1 text-xs text-primary bg-primary/10 px-2 py-0.5 rounded-full flex-shrink-0">
|
|
<Github className="w-3 h-3" />
|
|
已关联
|
|
</div>
|
|
)
|
|
}
|
|
</div>
|
|
<p className="text-sm text-muted-foreground truncate mt-1">
|
|
{
|
|
user.email ? user.email : `用户名: ${user.username}`
|
|
}
|
|
</p>
|
|
{user.roles && (
|
|
<div className="flex gap-2 mt-2">
|
|
{user.roles.map(({ name }) => {
|
|
const roleConfig = roleConfigs[name as keyof typeof roleConfigs]
|
|
const Icon = roleConfig.icon
|
|
return (
|
|
<div
|
|
key={name}
|
|
className="flex items-center gap-1 text-xs bg-primary/10 text-primary px-2 py-0.5 rounded"
|
|
title={roleConfig.name}
|
|
>
|
|
<Icon className="w-3 h-3" />
|
|
{roleConfig.name}
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{canManageWebhook && (
|
|
<div className="bg-background rounded-lg border-2 border-primary/20 p-6">
|
|
<div className="flex items-center gap-2 mb-6">
|
|
<Settings className="w-5 h-5 text-primary" />
|
|
<h2 className="text-lg font-semibold">Webhook 配置</h2>
|
|
</div>
|
|
<WebhookConfig />
|
|
</div>
|
|
)}
|
|
|
|
{canManageConfig && <WebsiteConfigPanel />}
|
|
{canManageConfig && <EmailServiceConfig />}
|
|
{canPromote && <PromotePanel />}
|
|
{canManageWebhook && <ApiKeyPanel />}
|
|
|
|
<div className="flex flex-col sm:flex-row gap-4 px-1">
|
|
<Button
|
|
onClick={() => router.push("/moe")}
|
|
className="gap-2 flex-1"
|
|
>
|
|
<Mail className="w-4 h-4" />
|
|
返回邮箱
|
|
</Button>
|
|
<Button
|
|
variant="outline"
|
|
onClick={() => signOut({ callbackUrl: "/" })}
|
|
className="flex-1"
|
|
>
|
|
退出登录
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|