Files
pad/web
xarmian 100da86188 feat(nav): surface the repo link in the sidebar footer
A running instance had no visible connection to the project it is, so
people went to a search engine. The reporter called it "purely a QOL
addition"; what makes it worth a commit is that the link already EXISTED
and was simply unreachable — buried in the user-menu dropdown under
Resources. This is a discoverability fix, not a new capability.

Icon-only, in `.footer-row` beside the collapse / theme / bell controls,
because that row is already where this instance's chrome lives. The mark
carries no accessible name of its own, so the anchor has an `aria-label`
naming both the destination and the new tab, and the SVG is
`aria-hidden` so it is not announced twice.

`$lib/brand/links.ts` exists because the URL was already written twice
in `UserMenuResources` and this would have been the third copy. A URL
duplicated across every surface that shows it is a rename that goes
half-applied. The module holds addresses only — list ORDER stays with
the surface that renders a list, since the two lists are deliberately
different lengths and the ordering contract lives in docs/brand.md.

The tests assert the binding, and the last one asserts the property the
others cannot: comparing a rendered href to the imported constant passes
identically for a component that hardcoded the same string, because both
sides end up as the same characters. That is a question about SOURCE, so
a narrow guard reads the two consumers and asserts the literal is absent
while `GITHUB_REPO_URL` is present — so the absence means "imported"
rather than "the link was deleted". Named files rather than a glob, so
it cannot fail for an unrelated file nor quietly stop covering these two.

Closes #1168
2026-09-01 03:44:02 +00:00
..
2026-03-26 01:52:36 +00:00
2026-03-26 01:52:36 +00:00
2026-03-26 01:52:36 +00:00
2026-03-26 01:52:36 +00:00

Pad Web UI

SvelteKit 2 + Svelte 5 frontend for Pad, compiled to static files and embedded into the Go binary.

Development

npm install
npm run dev          # Dev server at localhost:5173 (proxies API to localhost:7777)
npm run build        # Production build to build/
npm run check        # Type checking with svelte-check

When developing, run the Go backend separately with make dev from the project root.

Building for Production

Do not build in isolation. Always use make build from the project root — this builds the web frontend, then compiles the Go binary with the build output embedded via //go:embed.

Stack

  • Svelte 5 with runes ($state, $derived, $effect)
  • SvelteKit 2 with adapter-static (SPA mode)
  • Tiptap block editor with markdown round-trip
  • svelte-dnd-action for drag-and-drop in board/list views
  • SSE for real-time updates
  • TypeScript throughout

Structure

src/
  routes/                    SvelteKit pages
    +layout.svelte           App shell (sidebar + main)
    +page.svelte             Landing/redirect
    [workspace]/
      +page.svelte           Dashboard (collections, phases, activity)
      +layout.svelte         SSE connection per workspace
      [collection]/
        +page.svelte         Collection view (board/list)
      [collection]/[item]/
        +page.svelte         Item detail + editor
      conventions/            Purpose-built conventions page
      playbooks/              Purpose-built playbooks page
      settings/               Workspace settings
  lib/
    api/client.ts            HTTP API client
    components/
      layout/                Sidebar, navigation
      editor/                Tiptap editor, raw markdown editor
      fields/                FieldEditor, relation picker
      items/                 ItemCard, ItemDetail
      collections/           BoardView, ListView
      common/                StatusBadge, badges, modals
      search/                CommandPalette
    stores/                  Svelte 5 reactive stores
      workspace.svelte.ts    Workspace state
      collections.svelte.ts  Collection + item state
      ui.svelte.ts           Sidebar, mobile state
    types/index.ts           TypeScript types and constants
  app.css                    Global styles and design tokens