feat: manage-users edge function, admin CRUD via API instead of direct supabase.auth.admin

This commit is contained in:
root 2026-05-27 11:28:53 +00:00
parent b9b227e524
commit 9009ffdfb0
1 changed files with 88 additions and 87 deletions

View File

@ -3,7 +3,7 @@ import { Panel } from '../UI/Panel';
import { Badge } from '../UI/Badge';
import { Input } from '../UI/Input';
import { supabase } from '../../supabaseClient';
import { supabase, supabaseUrl } from '../../supabaseClient';
const ROLES = ['admin', 'driver', 'logistician', 'manager', 'mega_admin'];
@ -23,19 +23,45 @@ const ROLE_TONES = {
driver: 'accent',
};
/* ── Call manage-users edge function ── */
async function adminApi(method, body) {
const { data: { session } } = await supabase.auth.getSession();
const token = session?.access_token;
if (!token) throw new Error('Не авторизован');
const opts = {
method,
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${token}`,
'apikey': import.meta.env.VITE_SUPABASE_ANON_KEY,
},
};
if (body && method !== 'DELETE') opts.body = JSON.stringify(body);
const url = method === 'DELETE' && body?.id
? `${supabaseUrl}/functions/v1/manage-users?id=${body.id}`
: `${supabaseUrl}/functions/v1/manage-users`;
const res = await fetch(url, opts);
const json = await res.json();
if (!res.ok) throw new Error(json.error || `Ошибка ${res.status}`);
return json;
}
/* ── Custom dropdown (matches app design system) ── */
function RoleDropdown({ value, onChange, onClose }) {
function RoleDropdown({ value, onChange }) {
const [open, setOpen] = useState(false);
const ref = useRef(null);
useEffect(() => {
if (!open) return;
const onDown = (e) => { if (ref.current && !ref.current.contains(e.target)) { setOpen(false); onClose?.(); } };
const onKey = (e) => { if (e.key === 'Escape') { setOpen(false); onClose?.(); } };
const onDown = (e) => { if (ref.current && !ref.current.contains(e.target)) setOpen(false); };
const onKey = (e) => { if (e.key === 'Escape') setOpen(false); };
document.addEventListener('pointerdown', onDown);
document.addEventListener('keydown', onKey);
return () => { document.removeEventListener('pointerdown', onDown); document.removeEventListener('keydown', onKey); };
}, [open, onClose]);
}, [open]);
const pick = (role) => { onChange(role); setOpen(false); };
@ -50,7 +76,7 @@ function RoleDropdown({ value, onChange, onClose }) {
<span className="ml-1 text-[var(--color-text-muted)] text-xs"></span>
</button>
{open && (
<div className="absolute left-0 right-0 top-full z-30 mt-2 overflow-hidden rounded-2xl border border-[var(--color-border)] bg-[var(--color-dropdown-surface)] shadow-soft min-w-[180px]">
<div className="absolute left-0 top-full z-30 mt-2 overflow-hidden rounded-2xl border border-[var(--color-border)] bg-[var(--color-dropdown-surface)] shadow-soft min-w-[180px]">
{ROLES.map((r) => {
const sel = r === value;
return (
@ -59,7 +85,7 @@ function RoleDropdown({ value, onChange, onClose }) {
type="button"
onClick={() => pick(r)}
className={[
'flex w-full items-center justify-between px-4 py-3 text-left text-sm transition',
'flex w-full items-center justify-between px-4 py-2.5 text-left text-sm transition',
sel ? 'bg-[var(--color-accent-soft)] text-[var(--color-text)]' : 'text-[var(--color-text)] hover:bg-[var(--color-surface-strong)]',
].join(' ')}
>
@ -119,24 +145,14 @@ export default function UserManagementPanel() {
return match ? match.id : null;
};
/* ── Add ── */
/* ── Add via edge function ── */
const handleAddUser = async (e) => {
e.preventDefault();
setAddError(null);
if (!addForm.name || !addForm.email || !addForm.role) { setAddError('Все поля обязательны.'); return; }
setAddSubmitting(true);
try {
const roleId = getRoleId(addForm.role);
const { data: authData, error: authErr } = await supabase.auth.admin.createUser({
email: addForm.email,
email_confirm: true,
user_metadata: { name: addForm.name },
});
if (authErr) throw authErr;
const { error: insertErr } = await supabase
.from('users')
.insert({ id: authData.user.id, email: addForm.email, name: addForm.name, role_id: roleId });
if (insertErr) throw insertErr;
await adminApi('POST', { email: addForm.email, name: addForm.name, role: addForm.role });
await fetchUsers();
setShowAddForm(false);
setAddForm({ name: '', email: '', role: '' });
@ -145,7 +161,7 @@ export default function UserManagementPanel() {
} finally { setAddSubmitting(false); }
};
/* ── Edit ── */
/* ── Edit via edge function ── */
const startEdit = (user) => {
setEditingId(user.id);
setEditForm({ name: user.name || '', email: user.email || '', role: getRoleName(user) });
@ -155,24 +171,17 @@ export default function UserManagementPanel() {
const saveEdit = async () => {
setSaving(true);
try {
const roleId = getRoleId(editForm.role);
const { error: err } = await supabase
.from('users')
.update({ name: editForm.name, email: editForm.email, role_id: roleId })
.eq('id', editingId);
if (err) throw err;
await adminApi('PATCH', { id: editingId, name: editForm.name, email: editForm.email, role: editForm.role });
setEditingId(null);
await fetchUsers();
} catch (err) { setError(err.message || 'Не удалось сохранить.'); }
finally { setSaving(false); }
};
/* ── Delete ── */
/* ── Delete via edge function ── */
const handleDeleteUser = async (userId) => {
try {
const { error: err } = await supabase.from('users').delete().eq('id', userId);
if (err) throw err;
try { await supabase.auth.admin.deleteUser(userId); } catch {}
await adminApi('DELETE', { id: userId });
setDeleteConfirmId(null);
await fetchUsers();
} catch (err) { setError(err.message || 'Не удалось удалить.'); }
@ -197,38 +206,34 @@ export default function UserManagementPanel() {
</button>
</div>
{/* Add form */}
{/* Add form — compact column */}
{showAddForm && (
<form onSubmit={handleAddUser} className="mb-4 rounded-2xl border border-[var(--color-border)] bg-[var(--color-surface-strong)] p-4 space-y-3">
<div className="flex flex-wrap gap-3">
<form onSubmit={handleAddUser} className="mb-4 inline-flex flex-col gap-2 rounded-2xl border border-[var(--color-border)] bg-[var(--color-surface-strong)] p-4">
<Input
placeholder="Имя"
value={addForm.name}
onChange={(e) => setAddForm((f) => ({ ...f, name: e.target.value }))}
className="flex-1 min-w-[140px]!"
className="w-[220px]!"
/>
<Input
placeholder="Email"
type="email"
value={addForm.email}
onChange={(e) => setAddForm((f) => ({ ...f, email: e.target.value }))}
className="flex-1 min-w-[180px]!"
className="w-[260px]!"
/>
<RoleDropdown
value={addForm.role || 'manager'}
onChange={(r) => setAddForm((f) => ({ ...f, role: r }))}
/>
</div>
{addError && <div className="text-sm text-[var(--color-danger)]">{addError}</div>}
<div className="flex justify-end">
<button
type="submit"
disabled={addSubmitting}
className="rounded-full bg-[var(--color-accent)] px-5 py-2 text-sm font-semibold text-white hover:opacity-90 transition disabled:opacity-50"
className="mt-1 self-start rounded-full bg-[var(--color-accent)] px-5 py-2 text-sm font-semibold text-white hover:opacity-90 transition disabled:opacity-50"
>
{addSubmitting ? 'Добавление…' : 'Добавить'}
</button>
</div>
</form>
)}
@ -252,29 +257,28 @@ export default function UserManagementPanel() {
return (
<div
key={user.id}
className="rounded-[22px] border border-[var(--color-accent)] bg-[var(--color-surface-strong)] p-4 space-y-3"
className="rounded-[22px] border border-[var(--color-accent)] bg-[var(--color-surface-strong)] p-4 space-y-2"
>
<div className="flex flex-wrap gap-3">
<div className="flex flex-col gap-2 sm:flex-row sm:items-center">
<Input
placeholder="Имя"
value={editForm.name}
onChange={(e) => setEditForm((f) => ({ ...f, name: e.target.value }))}
className="flex-1 min-w-[140px]!"
className="w-[200px]!"
/>
<Input
placeholder="Email"
type="email"
value={editForm.email}
onChange={(e) => setEditForm((f) => ({ ...f, email: e.target.value }))}
className="flex-1 min-w-[180px]!"
className="w-[240px]!"
/>
<RoleDropdown
value={editForm.role}
onChange={(r) => setEditForm((f) => ({ ...f, role: r }))}
onClose={undefined}
/>
</div>
<div className="flex gap-2 justify-end">
<div className="flex gap-2">
<button
onClick={cancelEdit}
className="rounded-lg border border-[var(--color-border)] px-3 py-1.5 text-sm text-[var(--color-text-muted)] hover:bg-[var(--color-surface)] transition"
@ -292,34 +296,31 @@ export default function UserManagementPanel() {
return (
<div
key={user.id}
className="flex flex-wrap items-center justify-between gap-3 rounded-[22px] border border-[var(--color-border)] bg-[var(--color-surface-strong)] p-4"
className="flex flex-wrap items-center justify-between gap-3 rounded-[22px] border border-[var(--color-border)] bg-[var(--color-surface-strong)] px-4 py-3"
>
<div className="min-w-0">
<div className="font-medium truncate">{user.name || '—'}</div>
<div className="text-sm text-[var(--color-text-muted)] truncate">{user.email}</div>
<div className="text-sm text-[var(--color-text-muted)]">{fmtDate(user.created_at)}</div>
<span className="font-medium">{user.name || '—'}</span>
<span className="text-sm text-[var(--color-text-muted)] ml-2">{user.email}</span>
</div>
<div className="flex items-center gap-3 flex-wrap">
<div className="flex items-center gap-2">
<Badge tone={ROLE_TONES[rn] || 'neutral'}>{ROLE_LABELS[rn] || rn}</Badge>
<div className="flex gap-2">
<button
onClick={() => startEdit(user)}
className="rounded-lg border border-[var(--color-accent)] px-3 py-1.5 text-xs font-semibold text-[var(--color-accent)] hover:bg-[var(--color-accent-soft)] transition"
className="rounded-lg border border-[var(--color-accent)] px-2.5 py-1 text-xs font-semibold text-[var(--color-accent)] hover:bg-[var(--color-accent-soft)] transition"
>Изменить</button>
{deleteConfirmId === user.id ? (
<>
<button onClick={() => handleDeleteUser(user.id)} className="rounded-lg bg-[var(--color-danger)] px-3 py-1.5 text-xs font-semibold text-white transition">Да</button>
<button onClick={() => setDeleteConfirmId(null)} className="rounded-lg border border-[var(--color-border)] px-3 py-1.5 text-xs text-[var(--color-text-muted)] transition">Нет</button>
</>
<div className="flex gap-1">
<button onClick={() => handleDeleteUser(user.id)} className="rounded-lg bg-[var(--color-danger)] px-2.5 py-1 text-xs font-semibold text-white transition">Да</button>
<button onClick={() => setDeleteConfirmId(null)} className="rounded-lg border border-[var(--color-border)] px-2.5 py-1 text-xs text-[var(--color-text-muted)] transition">Нет</button>
</div>
) : (
<button
onClick={() => setDeleteConfirmId(user.id)}
className="rounded-lg border border-[var(--color-danger)] px-3 py-1.5 text-xs font-semibold text-[var(--color-danger)] hover:bg-[rgba(201,61,61,0.08)] transition"
className="rounded-lg border border-[var(--color-danger)] px-2.5 py-1 text-xs font-semibold text-[var(--color-danger)] hover:bg-[rgba(201,61,61,0.08)] transition"
>Удалить</button>
)}
</div>
</div>
</div>
);
})}
</div>