feat(admin): groups management UI in the console

Add a super-admin-only Groups tab to create, edit and delete groups
(name, admin ids, owner scope). Routes now require a group via a select
in the editor, group names are shown on route cards, and the new
useMe/useGroups composables back the UI.
This commit is contained in:
RhenCloud 2026-08-02 08:16:05 +08:00
parent 537f4cbb84
commit 62985a2f3f
No known key found for this signature in database
GPG key ID: A574A617378C4E0B
8 changed files with 382 additions and 9 deletions

View file

@ -9,7 +9,16 @@
</div>
</div>
<div class="head-actions">
<button v-if="!needLogin" class="btn btn-accent" @click="openNew">+ New Route</button>
<button v-if="!needLogin && view === 'routes'" class="btn btn-accent" @click="openNew">
+ New Route
</button>
<button
v-if="!needLogin && view === 'groups' && isSuper"
class="btn btn-accent"
@click="openNewGroup"
>
+ New Group
</button>
<a v-if="!needLogin" class="btn btn-ghost" href="/admin/logout">Sign out</a>
</div>
</header>
@ -18,7 +27,9 @@
<div v-if="needLogin" class="login">
<div class="login-card">
<h2>Config Console</h2>
<p v-if="forbidden">Access denied this GitHub account is not in <code>ADMIN_USER_IDS</code>.</p>
<p v-if="forbidden">
Access denied this GitHub account is not an admin or group admin.
</p>
<p v-else>Sign in with GitHub to manage routes.</p>
<a class="btn btn-accent btn-lg" href="/admin/login">Sign in with GitHub</a>
</div>
@ -29,6 +40,14 @@
<button class="tab" :class="{ active: view === 'routes' }" @click="switchView('routes')">
Routes
</button>
<button
v-if="isSuper"
class="tab"
:class="{ active: view === 'groups' }"
@click="switchView('groups')"
>
Groups
</button>
<button class="tab" :class="{ active: view === 'logs' }" @click="switchView('logs')">
Send Logs
</button>
@ -53,6 +72,7 @@
v-for="(r, i) in routes"
:key="r.id"
:route="r"
:group-name="groupName(r.groupId)"
:style="{ animationDelay: i * 45 + 'ms' }"
@toggle="onToggle"
@edit="openEdit"
@ -66,6 +86,51 @@
</section>
</template>
<template v-else-if="view === 'groups'">
<section class="toolbar">
<div>
<span class="kpi-label">GROUPS</span>
<span class="kpi">{{ groups.length }}</span>
</div>
<div class="status">
<span class="dot" :class="groupsLoading ? '' : 'ok'"></span>
<span>{{ groupsLoading ? "loading" : "connected" }}</span>
</div>
</section>
<p v-if="groupsError" class="err">{{ groupsError }}</p>
<section class="routes">
<article v-for="g in groups" :key="g.id" class="card">
<div class="card-head">
<div class="card-title">
<span class="route-name">{{ g.name || "(untitled)" }}</span>
<span class="route-id">{{ g.id }}</span>
</div>
<div class="card-actions">
<button class="icon-btn" title="Edit" @click="openEditGroup(g)"></button>
<button class="icon-btn danger" title="Delete" @click="onDeleteGroup(g)"></button>
</div>
</div>
<div class="target">
<span
><b>ADMINS</b
><code>{{ g.adminIds.length ? g.adminIds.join(", ") : "—" }}</code></span
>
<span
><b>OWNERS</b
><code>{{ g.owners && g.owners.length ? g.owners.join(", ") : "any" }}</code></span
>
</div>
</article>
</section>
<section v-if="!groupsLoading && !groups.length" class="empty">
<p>No groups yet. Groups scope routes by org/user and delegate access.</p>
<button class="btn btn-accent" @click="openNewGroup">Create your first group</button>
</section>
</template>
<template v-else>
<section class="toolbar">
<div class="status">
@ -82,24 +147,45 @@
:open="editorOpen"
:route="editing"
:saving="saving"
:groups="groups"
@close="editorOpen = false"
@save="onSave"
/>
<GroupEditor
:open="groupEditorOpen"
:group="editingGroup"
:saving="savingGroup"
@close="groupEditorOpen = false"
@save="onSaveGroup"
/>
</div>
</template>
<script setup lang="ts">
import type { Route } from "~/types";
import type { Group, Route } from "~/types";
const { routes, loading, needLogin, error, load, save } = useRoutesApi();
const { push } = useToasts();
const { logs, loading: logsLoading, load: loadLogs } = useSendLogs();
const {
groups,
isSuper,
loading: groupsLoading,
error: groupsError,
load: loadGroups,
save: saveGroups,
} = useGroupsApi();
const editorOpen = ref(false);
const editing = ref<Route | null>(null);
const saving = ref(false);
const forbidden = ref(false);
const view = ref<"routes" | "logs">("routes");
const view = ref<"routes" | "groups" | "logs">("routes");
const groupEditorOpen = ref(false);
const editingGroup = ref<Group | null>(null);
const savingGroup = ref(false);
onMounted(() => {
if (typeof window !== "undefined") {
@ -108,11 +194,21 @@ onMounted(() => {
}
load();
loadLogs();
loadGroups();
});
function switchView(next: "routes" | "logs"): void {
function groupName(id?: string): string | undefined {
if (!id) return undefined;
return groups.value.find((g) => g.id === id)?.name ?? id;
}
function switchView(next: "routes" | "groups" | "logs"): void {
view.value = next;
if (next === "routes") load();
if (next === "routes") {
load();
loadGroups();
}
if (next === "groups") loadGroups();
if (next === "logs") loadLogs();
}
@ -167,4 +263,49 @@ async function onDelete(route: Route): Promise<void> {
push(`Delete failed: ${err instanceof Error ? err.message : err}`, "bad");
}
}
function openNewGroup(): void {
editingGroup.value = null;
groupEditorOpen.value = true;
}
function openEditGroup(group: Group): void {
editingGroup.value = group;
groupEditorOpen.value = true;
}
async function onSaveGroup(group: Group): Promise<void> {
savingGroup.value = true;
try {
let next: Group[];
if (editingGroup.value) {
next = groups.value.map((g) => (g.id === editingGroup.value!.id ? group : g));
} else {
if (groups.value.some((g) => g.id === group.id)) {
push("Group ID already exists", "bad");
return;
}
next = [...groups.value, group];
}
await saveGroups(next);
groupEditorOpen.value = false;
push("Groups saved");
} catch (err) {
push(`Save failed: ${err instanceof Error ? err.message : err}`, "bad");
} finally {
savingGroup.value = false;
}
}
async function onDeleteGroup(group: Group): Promise<void> {
const used = routes.value.filter((r) => r.groupId === group.id).length;
const warn = used ? ` ${used} route(s) reference it and will lose their group.` : "";
if (!window.confirm(`Delete group "${group.name || group.id}"?${warn}`)) return;
try {
await saveGroups(groups.value.filter((g) => g.id !== group.id));
push("Group deleted");
} catch (err) {
push(`Delete failed: ${err instanceof Error ? err.message : err}`, "bad");
}
}
</script>