feat(store): console plugin store, index repo, and the fixes on-glass found
apple / swift (push) Successful in 1m22s
release / apple (push) Successful in 9m59s
windows-host / package (push) Successful in 9m52s
windows-msix / package (arm64, C:\Users\Public\ffmpeg-arm64, --no-default-features, aarch64-pc-windows-msvc, C:\t-a64) (push) Successful in 3m20s
apple / screenshots (push) Successful in 6m28s
windows-msix / package (x64, C:\Users\Public\ffmpeg, , x86_64-pc-windows-msvc, C:\t) (push) Successful in 3m21s
windows / build (aarch64-pc-windows-msvc) (push) Successful in 4m39s
windows / build (x86_64-pc-windows-msvc) (push) Successful in 5m45s
audit / cargo-audit (push) Successful in 2m58s
audit / bun-audit (push) Successful in 13s
ci / web (push) Successful in 52s
ci / docs-site (push) Successful in 59s
android / android (push) Has been cancelled
arch / build-publish (push) Has been cancelled
ci / bench (push) Has been cancelled
ci / rust (push) Has been cancelled
docker / build-push (--build-arg FEDORA_VERSION=44, ci, ci/fedora-rpm.Dockerfile, punktfunk-fedora44-rpm) (push) Successful in 11s
docker / build-push (ci, ci/fedora-rpm.Dockerfile, punktfunk-fedora-rpm) (push) Successful in 10s
decky / build-publish (push) Successful in 23s
docker / build-push (ci, ci/rust-ci.Dockerfile, punktfunk-rust-ci) (push) Successful in 10s
docker / build-push (ci, ci/rust-ci-noble.Dockerfile, punktfunk-rust-ci-noble) (push) Successful in 10s
docker / build-push (., web/Dockerfile, punktfunk-web) (push) Successful in 35s
docker / build-push (docs-site, docs-site/Dockerfile, punktfunk-docs) (push) Successful in 49s
flatpak / build-publish (push) Successful in 7m53s
docker / deploy-docs (push) Has been cancelled
rpm / build-publish (43, bazzite, punktfunk-fedora-rpm) (push) Has been cancelled
rpm / build-publish (44, fedora-44, punktfunk-fedora44-rpm) (push) Has been cancelled
deb / build-publish (push) Successful in 11m41s
deb / build-publish-host (push) Successful in 13m32s

Console: a Plugins section (Browse / Installed / Sources) on a static nav
entry, with install friction proportional to trust — a plain confirm for a
verified entry, a warning naming the curator for an external one, and a
danger dialog that makes you retype the spec for a raw package. Tier badges
are permanent and follow the plugin onto its own UI page.

Index: unom/punktfunk-plugin-index published and served from Gitea's raw
endpoint (real HTTPS, byte-exact, no vhost to stand up) — merge to main is
publish, which resolves the design's open hosting question.

Four things only running it could find:
- runner discovery matched @punktfunk/plugin-* only, so a third-party
  scoped plugin (which D8 requires) would install and never run
- ...and that convention also matches @punktfunk/plugin-kit, a plugin's
  own framework: it listed as installed and would have been imported as a
  unit. Both now key off the plugins dir's top-level dependencies, with an
  emptied dependency list meaning 'nothing installed' rather than falling
  back to the naming convention
- the store must not pass new flags to the runner: the scripting package
  ships separately and an older one reads an unknown flag's value as a
  package name. The host writes the bunfig scope mapping itself
- ureq reports only >= 400 as Err, so a conditional request's 304 arrives
  as Ok with an empty body — handled as an error it made every refresh
  after the first verify a signature over zero bytes and sit stale

Also: the console's first Tabs use exposed an @unom/ui theme gap that
rendered inactive tabs invisible (caught in a browser pass, not by types).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-20 20:48:02 +02:00
co-authored by Claude Fable 5
parent 45c3b96907
commit 833f3348a0
30 changed files with 4028 additions and 21 deletions
+347
View File
@@ -0,0 +1,347 @@
import { toast } from "@unom/ui/toast";
import {
AlertTriangle,
Lock,
RefreshCw,
ShieldCheck,
ShieldOff,
Trash2,
} from "lucide-react";
import { type FC, type FormEvent, useState } from "react";
import { ApiError } from "@/api/fetcher";
import {
type SourceBody,
type StoreSource,
useDeleteSource,
useRefreshCatalog,
useSetSource,
useStoreSources,
} from "@/api/store";
import { QueryState } from "@/components/query-state";
import { Badge } from "@/components/ui/badge";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { m } from "@/paraglide/messages";
/** A source the operator has filled in but not yet agreed to trust. */
type SourceDraft = SourceBody & { name: string };
/** Unix seconds → a locale date-time, or "never" for a source that has never fetched. */
const fmtFetched = (secs: number): string =>
secs > 0 ? new Date(secs * 1000).toLocaleString() : m.store_source_never();
/**
* Container: the catalog sources. Owns the source listing, the refresh-all action, and add/remove.
* Adding is a two-step: the form collects the source, and a one-time trust dialog states plainly
* what trusting a third-party catalog means before anything is written to the host.
*/
export const SourcesTab: FC = () => {
const sources = useStoreSources();
const refresh = useRefreshCatalog();
const save = useSetSource();
const remove = useDeleteSource();
// The draft waiting on the trust dialog, and a key that re-mounts (and so clears) the form.
const [draft, setDraft] = useState<SourceDraft | null>(null);
const [formKey, setFormKey] = useState(0);
const onRefresh = () =>
refresh.mutate(undefined, {
onError: () => toast.error(m.store_refresh_failed()),
});
const onConfirmAdd = async () => {
if (!draft) return;
try {
await save.mutateAsync(draft);
setDraft(null);
setFormKey((k) => k + 1);
} catch {
toast.error(m.store_add_source_failed());
}
};
const onRemove = async (source: StoreSource) => {
if (!confirm(m.store_source_remove_confirm({ name: source.name }))) return;
try {
await remove.mutateAsync(source.name);
} catch (e) {
// 403 is the host refusing to drop its built-in catalog — say exactly that.
toast.error(
e instanceof ApiError && e.status === 403
? m.store_source_builtin_locked()
: m.store_source_remove_failed(),
);
}
};
return (
<div className="flex flex-col gap-card">
<SourceList
sources={sources}
busyName={remove.isPending ? (remove.variables ?? null) : null}
isRefreshing={refresh.isPending}
onRefresh={onRefresh}
onRemove={onRemove}
/>
<AddSourceForm
key={formKey}
onSubmit={setDraft}
isSaving={save.isPending}
/>
<TrustSourceDialog
draft={draft}
isSaving={save.isPending}
onCancel={() => setDraft(null)}
onConfirm={onConfirmAdd}
/>
</div>
);
};
/** The source table: health per source, with the built-in one locked. */
export const SourceList: FC<{
sources: {
data?: StoreSource[];
isLoading: boolean;
error: unknown;
refetch?: () => void;
};
/** Name of the source whose delete is in flight, or null. */
busyName: string | null;
isRefreshing: boolean;
onRefresh: () => void;
onRemove: (source: StoreSource) => void;
}> = ({ sources, busyName, isRefreshing, onRefresh, onRemove }) => {
const rows = sources.data ?? [];
return (
<Card>
<CardHeader className="flex-row items-center justify-between space-y-0">
<CardTitle>{m.store_sources_title()}</CardTitle>
<Button
variant="outline"
size="sm"
disabled={isRefreshing}
onClick={onRefresh}
>
<RefreshCw
className={isRefreshing ? "size-4 animate-spin" : "size-4"}
/>
{m.store_refresh_all()}
</Button>
</CardHeader>
<CardContent className="space-y-4">
<p className="max-w-prose text-sm text-muted-foreground">
{m.store_sources_help()}
</p>
<QueryState
isLoading={sources.isLoading}
error={sources.error}
refetch={sources.refetch}
>
<div className="flex flex-col gap-3">
{rows.map((s) => (
<div
key={s.name}
className="flex flex-col gap-2 rounded-lg border p-3 sm:flex-row sm:items-start"
>
<div className="min-w-0 flex-1 space-y-1">
<div className="flex flex-wrap items-center gap-2">
<span className="font-medium">{s.name}</span>
{s.builtin && (
<Badge variant="secondary" className="gap-1">
<Lock className="size-3" />
{m.store_source_builtin()}
</Badge>
)}
{s.signed ? (
<Badge variant="outline" className="gap-1">
<ShieldCheck className="size-3" />
{m.store_source_signed()}
</Badge>
) : (
<Badge
variant="outline"
className="gap-1 border-amber-600/40 text-amber-600 dark:border-amber-500/40 dark:text-amber-500"
>
<ShieldOff className="size-3" />
{m.store_source_unsigned()}
</Badge>
)}
{s.stale && (
<Badge
variant="outline"
className="gap-1 border-amber-600/40 text-amber-600 dark:border-amber-500/40 dark:text-amber-500"
>
<AlertTriangle className="size-3" />
{m.store_source_stale()}
</Badge>
)}
</div>
<p className="truncate font-mono text-xs text-muted-foreground">
{s.url}
</p>
<p className="text-xs text-muted-foreground">
{m.store_source_entries({ count: s.entry_count })} ·{" "}
{m.store_source_fetched({ when: fmtFetched(s.fetched_at) })}
</p>
{s.error && (
<p className="text-xs text-destructive">{s.error}</p>
)}
</div>
{/* The built-in catalog gets no delete button at all — not a disabled one. */}
{!s.builtin && (
<Button
variant="ghost"
size="icon"
aria-label={m.store_source_remove()}
disabled={busyName === s.name}
onClick={() => onRemove(s)}
>
<Trash2 className="size-4 text-destructive" />
</Button>
)}
</div>
))}
</div>
</QueryState>
</CardContent>
</Card>
);
};
/** The add-source form. Reports a draft; the parent takes it through the trust dialog. */
export const AddSourceForm: FC<{
onSubmit: (draft: SourceDraft) => void;
isSaving: boolean;
}> = ({ onSubmit, isSaving }) => {
const [name, setName] = useState("");
const [url, setUrl] = useState("");
const [publicKey, setPublicKey] = useState("");
const handleSubmit = (e: FormEvent) => {
e.preventDefault();
const key = publicKey.trim();
if (!name.trim() || !url.trim()) return;
onSubmit({
name: name.trim(),
url: url.trim(),
public_key: key ? key : undefined,
});
};
return (
<Card className="max-w-xl">
<CardHeader>
<CardTitle>{m.store_add_source_title()}</CardTitle>
</CardHeader>
<CardContent>
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="store-source-name">
{m.store_field_source_name()}
</Label>
<Input
id="store-source-name"
required
autoComplete="off"
spellCheck={false}
value={name}
onChange={(e) => setName(e.target.value)}
/>
</div>
<div className="space-y-2">
<Label htmlFor="store-source-url">
{m.store_field_source_url()}
</Label>
<Input
id="store-source-url"
required
type="url"
inputMode="url"
value={url}
onChange={(e) => setUrl(e.target.value)}
/>
</div>
<div className="space-y-2">
<Label htmlFor="store-source-key">
{m.store_field_source_key()}
</Label>
<Input
id="store-source-key"
autoComplete="off"
spellCheck={false}
placeholder="ed25519:…"
value={publicKey}
onChange={(e) => setPublicKey(e.target.value)}
/>
<p className="text-xs text-muted-foreground">
{m.store_field_source_key_help()}
</p>
</div>
<Button
type="submit"
disabled={isSaving || !name.trim() || !url.trim()}
>
{m.store_add_source()}
</Button>
</form>
</CardContent>
</Card>
);
};
/** The one-time trust warning shown before a third-party catalog is written to the host. */
export const TrustSourceDialog: FC<{
draft: SourceDraft | null;
isSaving: boolean;
onCancel: () => void;
onConfirm: () => void;
}> = ({ draft, isSaving, onCancel, onConfirm }) => (
<Dialog open={draft !== null} onOpenChange={(open) => !open && onCancel()}>
{draft && (
<DialogContent>
<DialogHeader>
<DialogTitle className="flex items-center gap-2">
<AlertTriangle className="size-5 shrink-0 text-amber-600 dark:text-amber-500" />
{m.store_source_trust_title()}
</DialogTitle>
<DialogDescription>
{m.store_source_trust_body({ name: draft.name })}
</DialogDescription>
</DialogHeader>
<p className="rounded-md bg-muted px-3 py-2 font-mono text-xs break-all text-muted-foreground">
{draft.url}
</p>
{!draft.public_key && (
<p className="rounded-md border border-amber-600/40 bg-amber-500/10 px-3 py-2 text-sm text-amber-600 dark:border-amber-500/40 dark:text-amber-500">
{m.store_source_trust_unsigned()}
</p>
)}
<DialogFooter>
<Button variant="outline" onClick={onCancel} disabled={isSaving}>
{m.common_cancel()}
</Button>
<Button disabled={isSaving} onClick={onConfirm}>
{m.store_source_trust_confirm()}
</Button>
</DialogFooter>
</DialogContent>
)}
</Dialog>
);