Files
lms-sb/src/components/admin/stop-impersonate-banner.tsx
T
2026-04-25 13:12:47 +05:00

41 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client";
import { useState } from "react";
import { authClient } from "@/lib/auth-client";
export function StopImpersonateBanner({ userName }: { userName: string }) {
const [loading, setLoading] = useState(false);
async function handleStop() {
setLoading(true);
try {
await authClient.admin.stopImpersonating();
window.location.href = "/admin/users";
} catch {
setLoading(false);
}
}
return (
<div
className="flex items-center justify-between px-6 py-2 text-sm"
style={{
backgroundColor: "var(--color-highlight)",
borderBottom: "2px solid var(--foreground)",
}}
>
<span>
Вы просматриваете платформу как <strong>{userName}</strong>
</span>
<button
type="button"
onClick={handleStop}
disabled={loading}
className="btn-aubade text-xs px-3 py-1"
>
{loading ? "..." : "← Вернуться в админку"}
</button>
</div>
);
}