37 lines
755 B
TypeScript
37 lines
755 B
TypeScript
"use client";
|
|
|
|
import { useState, startTransition } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
export default function LogoutButton() {
|
|
const router = useRouter();
|
|
const [isPending, setIsPending] = useState(false);
|
|
|
|
async function handleLogout(): Promise<void> {
|
|
setIsPending(true);
|
|
|
|
try {
|
|
await fetch("/api/auth/logout", {
|
|
method: "POST",
|
|
});
|
|
} finally {
|
|
startTransition(() => {
|
|
router.push("/login");
|
|
router.refresh();
|
|
});
|
|
setIsPending(false);
|
|
}
|
|
}
|
|
|
|
return (
|
|
<button
|
|
type="button"
|
|
className="ghost-button"
|
|
onClick={handleLogout}
|
|
disabled={isPending}
|
|
>
|
|
{isPending ? "退出中..." : "退出登录"}
|
|
</button>
|
|
);
|
|
}
|