refactor: support demotion and improve error handling in role management

This commit is contained in:
beilunyang
2024-12-28 18:10:30 +08:00
parent fbd65a5ee4
commit bfe439f90b
3 changed files with 87 additions and 47 deletions

View File

@@ -1,25 +1,25 @@
"use client"
import { Button } from "@/components/ui/button"
import { Sword, Search, Loader2 } from "lucide-react"
import { Sword, Loader2, UserMinus } from "lucide-react"
import { Input } from "@/components/ui/input"
import { useState } from "react"
import { useToast } from "@/components/ui/use-toast"
import { ROLES } from "@/lib/permissions"
export function PromotePanel() {
const [email, setEmail] = useState("")
const [loading, setLoading] = useState(false)
const [action, setAction] = useState<"promote" | "demote">("promote")
const { toast } = useToast()
const handlePromote = async () => {
const handleAction = async () => {
if (!email) return
setLoading(true)
try {
const res = await fetch(`/api/roles/users?email=${encodeURIComponent(email)}`)
const data = await res.json() as { user?: { id: string; name?: string; email: string }; error?: string }
const data = await res.json() as { user?: { id: string; name?: string; email: string; role?: string }; error?: string }
if (!res.ok) throw new Error(data.error || '未知错误')
if (!data.user) {
@@ -31,26 +31,43 @@ export function PromotePanel() {
return
}
if (action === "promote" && data.user.role === ROLES.KNIGHT) {
toast({
title: "用户已是骑士",
description: "无需重复册封",
})
return
}
if (action === "demote" && data.user.role === ROLES.CIVILIAN) {
toast({
title: "用户已是平民",
description: "无需重复贬为平民",
})
return
}
const promoteRes = await fetch('/api/roles/promote', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
userId: data.user.id,
roleName: ROLES.KNIGHT
roleName: action === "promote" ? ROLES.KNIGHT : ROLES.CIVILIAN
})
})
if (!promoteRes.ok) throw new Error('册封失败')
const result = await promoteRes.json() as { error: string }
if (!promoteRes.ok) throw new Error(result.error)
toast({
title: "册封成功",
description: `已将 ${data.user.email} 册封为骑士`
title: action === "promote" ? "册封成功" : "贬为平民",
description: `已将 ${data.user.email} ${action === "promote" ? "册封为骑士" : "贬为平民"}`
})
setEmail("")
} catch (error) {
toast({
title: "册封失败",
title: "操作失败",
description: error instanceof Error ? error.message : "请稍后重试",
variant: "destructive"
})
@@ -63,10 +80,10 @@ export function PromotePanel() {
<div className="bg-background rounded-lg border-2 border-primary/20 p-6">
<div className="flex items-center gap-2 mb-6">
<Sword className="w-5 h-5 text-primary" />
<h2 className="text-lg font-semibold"></h2>
<h2 className="text-lg font-semibold"></h2>
</div>
<div className="flex gap-2">
<div className="flex flex-col sm:flex-row gap-2">
<div className="flex-1">
<Input
placeholder="输入用户邮箱"
@@ -75,18 +92,39 @@ export function PromotePanel() {
disabled={loading}
/>
</div>
<Button
onClick={handlePromote}
disabled={!email || loading}
className="gap-2"
>
{loading ? (
<Loader2 className="w-4 h-4 animate-spin" />
) : (
<Search className="w-4 h-4" />
)}
{loading ? "册封中..." : "册封"}
</Button>
<div className="flex gap-2 sm:flex-shrink-0">
<Button
onClick={() => {
setAction("promote")
handleAction()
}}
disabled={!email || loading}
className="flex-1 sm:flex-initial gap-2"
>
{loading && action === "promote" ? (
<Loader2 className="w-4 h-4 animate-spin" />
) : (
<Sword className="w-4 h-4" />
)}
</Button>
<Button
onClick={() => {
setAction("demote")
handleAction()
}}
disabled={!email || loading}
variant="destructive"
className="flex-1 sm:flex-initial gap-2"
>
{loading && action === "demote" ? (
<Loader2 className="w-4 h-4 animate-spin" />
) : (
<UserMinus className="w-4 h-4" />
)}
</Button>
</div>
</div>
</div>
)