Block A of the EchoDo plan. Workspaces used to live as `objects(type='workspace')`,
which made it impossible to put a real RLS-friendly tenant boundary on the schema
or to give each workspace a stable URL slug. This commit:
- Adds a top-level `workspaces` table (slug unique, owner FK, plan_tier hook).
- Migrates the 8 anchor tables (objects, workspace_members, object_type_defs,
property_definitions, templates, forms, markdown_backlog_items,
cursor_sync_mappings) to FK into `workspaces.id` instead of `objects.id`,
with a hand-augmented data-copy migration that preserves IDs and slug-collision-
proofs on backfill.
- Introduces a `workspaceProcedure` tRPC middleware + `resolveWorkspace` helper
that take a UUID-or-slug `workspace` handle and expose `ctx.workspace`. All
tenant-scoped routers (objects, types, properties, templates, forms, search,
ai, relations, favorites) now flow through it.
- Updates the web app to pass `workspace` slugs from the URL (or store) instead
of the old `workspaceId`, including a workspace-sync layer that rewrites
/<UUID>/... links to /<slug>/...
- Updates the MCP tools (list_objects, create_object, search_objects) and the
workspace://{handle}/tree resource to accept either a slug or UUID so existing
agents keep working.
- Adds a Create Workspace dialog and a Workspace Settings page (rename + slug
rename with redirect, owner-only archive).
Verified locally against a fresh Postgres: migration applies cleanly, slug
uniqueness holds, tenant data is isolated by workspace_id, slug↔UUID resolution
works in both directions, and ON DELETE CASCADE cleans up child rows in the
correct workspace only.
Co-authored-by: Cursor <cursoragent@cursor.com>
120 lines
4.2 KiB
TypeScript
120 lines
4.2 KiB
TypeScript
"use client";
|
|
|
|
import { useMemo } from "react";
|
|
import Link from "next/link";
|
|
import { useParams, useRouter } from "next/navigation";
|
|
import { ClipboardList, Plus } from "lucide-react";
|
|
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Button } from "@/components/ui/button";
|
|
import { api } from "@/lib/trpc";
|
|
|
|
function formatUpdatedAt(value: Date | string): string {
|
|
const date = value instanceof Date ? value : new Date(value);
|
|
if (Number.isNaN(date.getTime())) return String(value);
|
|
return date.toLocaleString();
|
|
}
|
|
|
|
export default function FormsListPage() {
|
|
const params = useParams();
|
|
const router = useRouter();
|
|
const utils = api.useUtils();
|
|
|
|
const workspaceSlug =
|
|
typeof params?.workspaceSlug === "string"
|
|
? params.workspaceSlug
|
|
: undefined;
|
|
|
|
const listQuery = api.forms.list.useQuery(
|
|
{ workspace: workspaceSlug! },
|
|
{ enabled: Boolean(workspaceSlug) },
|
|
);
|
|
|
|
const createMutation = api.forms.create.useMutation({
|
|
onSuccess: (created) => {
|
|
if (workspaceSlug) {
|
|
void utils.forms.list.invalidate({ workspace: workspaceSlug });
|
|
router.push(`/${workspaceSlug}/forms/${created.id}/edit`);
|
|
}
|
|
},
|
|
});
|
|
|
|
const forms = useMemo(
|
|
() => listQuery.data?.forms ?? [],
|
|
[listQuery.data?.forms],
|
|
);
|
|
|
|
return (
|
|
<div className="mx-auto max-w-5xl px-6 py-10 sm:px-10">
|
|
<div className="mb-8 flex flex-wrap items-center justify-between gap-4">
|
|
<div>
|
|
<h1 className="text-3xl font-bold tracking-tight">Forms</h1>
|
|
<p className="mt-1 text-sm text-muted-foreground">
|
|
Build forms that create or update tasks in this workspace.
|
|
</p>
|
|
</div>
|
|
<Button
|
|
type="button"
|
|
disabled={!workspaceSlug || createMutation.isPending}
|
|
onClick={() => {
|
|
if (!workspaceSlug) return;
|
|
createMutation.mutate({
|
|
workspace: workspaceSlug,
|
|
title: "Untitled form",
|
|
});
|
|
}}
|
|
>
|
|
<Plus className="mr-2 size-4" />
|
|
New form
|
|
</Button>
|
|
</div>
|
|
|
|
{listQuery.isLoading ? (
|
|
<p className="text-sm text-muted-foreground">Loading forms…</p>
|
|
) : !workspaceSlug ? (
|
|
<p className="text-sm text-muted-foreground">Missing workspace.</p>
|
|
) : forms.length === 0 ? (
|
|
<div className="rounded-lg border border-dashed border-border bg-muted/30 p-12 text-center text-sm text-muted-foreground">
|
|
No forms yet. Create one to open the form builder.
|
|
</div>
|
|
) : (
|
|
<ul className="grid gap-4 sm:grid-cols-2">
|
|
{forms.map((form) => (
|
|
<li key={form.id}>
|
|
<Link
|
|
href={`/${workspaceSlug}/forms/${form.id}/edit`}
|
|
className="flex h-full flex-col rounded-xl border border-border bg-card p-5 shadow-sm transition-colors hover:border-primary/30 hover:bg-muted/20"
|
|
>
|
|
<div className="flex items-start gap-3">
|
|
<span className="mt-0.5 flex size-10 shrink-0 items-center justify-center rounded-lg bg-primary/10 text-primary">
|
|
<ClipboardList className="size-5" />
|
|
</span>
|
|
<div className="min-w-0 flex-1">
|
|
<p className="truncate font-semibold text-foreground">
|
|
{form.title}
|
|
</p>
|
|
{form.description ? (
|
|
<p className="mt-1 line-clamp-2 text-xs text-muted-foreground">
|
|
{form.description}
|
|
</p>
|
|
) : null}
|
|
<div className="mt-3 flex flex-wrap items-center gap-2">
|
|
<Badge
|
|
variant={form.isPublished ? "default" : "secondary"}
|
|
>
|
|
{form.isPublished ? "Published" : "Draft"}
|
|
</Badge>
|
|
<span className="text-xs text-muted-foreground tabular-nums">
|
|
Updated {formatUpdatedAt(form.updatedAt)}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|