ubiquitous-invention/apps/web/app/(app)/[workspaceSlug]/forms/page.tsx
Randall Stillwell 663bc77afe feat: ECHODO app shell, Coolify deploy, Authentik + Umami
Bundles in-flight ECHODO work with the Coolify deployment configuration:

App
- New routes: ai, forms, planner, settings (templates/types), teams,
  doc detail, whiteboard detail
- New components: app shell rework (icon-rail, top-header), forms
  builder/renderer/responses, types manager, objects creation dialog,
  card primitive, form + overview views
- New tRPC routers: favorites, forms, types, workspaces; updates to
  health and objects routers
- Markdown backlog sync (packages/database) + cursor-sync schema/migrations
- Schema additions: forms, types, favorites, markdown_backlog, cursor_sync
- Initial Drizzle migrations checked in

Deployment
- docker/docker-compose.coolify.yml: drops bundled Postgres/Redis
  (uses CT 102 shared services), removes host port mappings, adds
  Coolify SERVICE_FQDN_* magic vars for web + collab
- .env.example rewritten as the full ECHODO/Coolify variable manifest
- NextAuth gains an Authentik OIDC provider (gated on env presence)
- Root layout injects Umami tracking script when configured;
  metadata title flipped to ECHODO

Security
- .gitignore expanded to exclude AGENT-DEPLOY.md, .env.*, secrets/,
  credentials.*, *.key, *.crt, *.pem, ssh keys

Made-with: Cursor
2026-04-26 14:34:34 -05:00

118 lines
4 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 workspaceId =
typeof params?.workspaceSlug === "string"
? params.workspaceSlug
: undefined;
const listQuery = api.forms.list.useQuery(
{ workspaceId: workspaceId! },
{ enabled: Boolean(workspaceId) },
);
const createMutation = api.forms.create.useMutation({
onSuccess: (created) => {
if (workspaceId) {
void utils.forms.list.invalidate({ workspaceId });
router.push(`/${workspaceId}/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={!workspaceId || createMutation.isPending}
onClick={() => {
if (!workspaceId) return;
createMutation.mutate({
workspaceId,
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>
) : 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={`/${workspaceId}/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>
);
}