feat(web): account data export + sidebar rebrand to "Account"
Some checks failed
CI / Tests / 🧪 Test (push) Has been cancelled
Some checks failed
CI / Tests / 🧪 Test (push) Has been cancelled
Step 16 (account / profile) — landed smaller than scoped because turbo-
starter already ships the full /dashboard/settings flow (avatar, name,
email, language, delete-account) and BetterAuth handles security +
sessions out of the box. Reuses that surface; adds the claudemesh-
specific bits only.
- GET /api/my/export — returns a JSON bundle of the user's profile,
meshes they own, meshes they belong to, invites they've issued, and
audit events from their OWNED meshes (privacy: don't leak events
from meshes merely joined). Limited to 5k audit rows.
- ExportData component on /dashboard/settings — button downloads the
bundle as claudemesh-export-<userId>-<YYYY-MM-DD>.json client-side.
- Sidebar (user group) "settings" label swapped to "account" to match
the Step 16 naming. Same /dashboard/settings route, same existing
i18n key ("account" was already in common.json).
No schema changes: user.name (BetterAuth) IS the mesh display name.
meshMember.displayName is the per-join override that lands from the
CLI at registration time.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -36,7 +36,7 @@ const menu = [
|
||||
label: "manage",
|
||||
items: [
|
||||
{
|
||||
title: "settings",
|
||||
title: "account",
|
||||
href: pathsConfig.dashboard.user.settings.index,
|
||||
icon: Icons.Settings,
|
||||
},
|
||||
|
||||
@@ -7,6 +7,7 @@ import { DeleteAccount } from "~/modules/user/settings/general/delete-account";
|
||||
import { EditAvatar } from "~/modules/user/settings/general/edit-avatar";
|
||||
import { EditEmail } from "~/modules/user/settings/general/edit-email";
|
||||
import { EditName } from "~/modules/user/settings/general/edit-name";
|
||||
import { ExportData } from "~/modules/user/settings/general/export-data";
|
||||
import { LanguageSwitcher } from "~/modules/user/settings/general/language-switcher";
|
||||
|
||||
export const generateMetadata = getMetadata({
|
||||
@@ -27,6 +28,7 @@ export default async function SettingsPage() {
|
||||
<LanguageSwitcher />
|
||||
<EditName user={user} />
|
||||
<EditEmail user={user} />
|
||||
<ExportData />
|
||||
<DeleteAccount />
|
||||
</div>
|
||||
);
|
||||
|
||||
53
apps/web/src/modules/user/settings/general/export-data.tsx
Normal file
53
apps/web/src/modules/user/settings/general/export-data.tsx
Normal file
@@ -0,0 +1,53 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
|
||||
import { Button } from "@turbostarter/ui-web/button";
|
||||
|
||||
export const ExportData = () => {
|
||||
const [loading, setLoading] = useState(false);
|
||||
const [error, setError] = useState<string | null>(null);
|
||||
|
||||
const onExport = async () => {
|
||||
setLoading(true);
|
||||
setError(null);
|
||||
try {
|
||||
const res = await fetch("/api/my/export", { credentials: "include" });
|
||||
if (!res.ok) {
|
||||
throw new Error(`Export failed (${res.status})`);
|
||||
}
|
||||
const data = (await res.json()) as { user: { id: string } };
|
||||
const blob = new Blob([JSON.stringify(data, null, 2)], {
|
||||
type: "application/json",
|
||||
});
|
||||
const url = URL.createObjectURL(blob);
|
||||
const date = new Date().toISOString().slice(0, 10);
|
||||
const a = document.createElement("a");
|
||||
a.href = url;
|
||||
a.download = `claudemesh-export-${data.user.id}-${date}.json`;
|
||||
document.body.appendChild(a);
|
||||
a.click();
|
||||
a.remove();
|
||||
URL.revokeObjectURL(url);
|
||||
} catch (e) {
|
||||
setError(e instanceof Error ? e.message : "Export failed");
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="rounded-lg border p-5">
|
||||
<h3 className="mb-1 font-medium">Export your data</h3>
|
||||
<p className="text-muted-foreground mb-4 text-sm">
|
||||
Download a JSON file with your profile, meshes you own, meshes you
|
||||
joined, invites you've issued, and audit events from your owned
|
||||
meshes. Read-only.
|
||||
</p>
|
||||
<Button onClick={onExport} disabled={loading} variant="outline" size="sm">
|
||||
{loading ? "Preparing…" : "Download export"}
|
||||
</Button>
|
||||
{error && <p className="text-destructive mt-2 text-sm">{error}</p>}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
@@ -10,7 +10,7 @@ import {
|
||||
or,
|
||||
sql,
|
||||
} from "@turbostarter/db";
|
||||
import { invite, mesh, meshMember } from "@turbostarter/db/schema";
|
||||
import { auditLog, invite, mesh, meshMember } from "@turbostarter/db/schema";
|
||||
import { db } from "@turbostarter/db/server";
|
||||
|
||||
import type { GetMyMeshesInput } from "../../schema";
|
||||
@@ -163,6 +163,87 @@ export const getMyMeshById = async ({
|
||||
};
|
||||
};
|
||||
|
||||
export const getMyExport = async ({ userId }: { userId: string }) => {
|
||||
const meshesOwned = await db
|
||||
.select({
|
||||
id: mesh.id,
|
||||
name: mesh.name,
|
||||
slug: mesh.slug,
|
||||
visibility: mesh.visibility,
|
||||
transport: mesh.transport,
|
||||
tier: mesh.tier,
|
||||
createdAt: mesh.createdAt,
|
||||
archivedAt: mesh.archivedAt,
|
||||
})
|
||||
.from(mesh)
|
||||
.where(eq(mesh.ownerUserId, userId));
|
||||
|
||||
const memberships = await db
|
||||
.select({
|
||||
meshId: meshMember.meshId,
|
||||
meshName: mesh.name,
|
||||
meshSlug: mesh.slug,
|
||||
memberId: meshMember.id,
|
||||
displayName: meshMember.displayName,
|
||||
role: meshMember.role,
|
||||
joinedAt: meshMember.joinedAt,
|
||||
revokedAt: meshMember.revokedAt,
|
||||
})
|
||||
.from(meshMember)
|
||||
.leftJoin(mesh, eq(meshMember.meshId, mesh.id))
|
||||
.where(eq(meshMember.userId, userId));
|
||||
|
||||
const invitesSent = await db
|
||||
.select({
|
||||
id: invite.id,
|
||||
meshId: invite.meshId,
|
||||
meshSlug: mesh.slug,
|
||||
role: invite.role,
|
||||
maxUses: invite.maxUses,
|
||||
usedCount: invite.usedCount,
|
||||
expiresAt: invite.expiresAt,
|
||||
createdAt: invite.createdAt,
|
||||
revokedAt: invite.revokedAt,
|
||||
})
|
||||
.from(invite)
|
||||
.leftJoin(mesh, eq(invite.meshId, mesh.id))
|
||||
.where(eq(invite.createdBy, userId));
|
||||
|
||||
// Audit events for the user's owned meshes only (privacy: don't leak
|
||||
// events from meshes the user merely joined)
|
||||
const meshIds = meshesOwned.map((m) => m.id);
|
||||
const auditEvents =
|
||||
meshIds.length > 0
|
||||
? await db
|
||||
.select({
|
||||
id: auditLog.id,
|
||||
meshId: auditLog.meshId,
|
||||
eventType: auditLog.eventType,
|
||||
actorPeerId: auditLog.actorPeerId,
|
||||
targetPeerId: auditLog.targetPeerId,
|
||||
metadata: sql<Record<string, unknown>>`${auditLog.metadata}`,
|
||||
createdAt: auditLog.createdAt,
|
||||
})
|
||||
.from(auditLog)
|
||||
.where(
|
||||
sql`${auditLog.meshId} = ANY(ARRAY[${sql.join(
|
||||
meshIds.map((id) => sql`${id}`),
|
||||
sql`, `,
|
||||
)}]::text[])`,
|
||||
)
|
||||
.orderBy(desc(auditLog.createdAt))
|
||||
.limit(5000)
|
||||
: [];
|
||||
|
||||
return {
|
||||
exportedAt: new Date().toISOString(),
|
||||
meshesOwned,
|
||||
memberships,
|
||||
invitesSent,
|
||||
auditEvents,
|
||||
};
|
||||
};
|
||||
|
||||
export const getMyInvitesSent = async ({ userId }: { userId: string }) =>
|
||||
db
|
||||
.select({
|
||||
|
||||
@@ -16,6 +16,7 @@ import {
|
||||
leaveMyMesh,
|
||||
} from "./mutations";
|
||||
import {
|
||||
getMyExport,
|
||||
getMyInvitesSent,
|
||||
getMyMeshById,
|
||||
getMyMeshes,
|
||||
@@ -111,4 +112,17 @@ export const myRouter = new Hono<Env>()
|
||||
.get("/invites", async (c) => {
|
||||
const user = c.var.user;
|
||||
return c.json({ sent: await getMyInvitesSent({ userId: user.id }) });
|
||||
})
|
||||
.get("/export", async (c) => {
|
||||
const user = c.var.user;
|
||||
const data = await getMyExport({ userId: user.id });
|
||||
return c.json({
|
||||
user: {
|
||||
id: user.id,
|
||||
email: user.email,
|
||||
name: user.name,
|
||||
createdAt: user.createdAt,
|
||||
},
|
||||
...data,
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user