mirror of
https://github.com/multica-ai/multica.git
synced 2026-08-12 19:06:06 +02:00
tokens.css defined colours, radii and font families but not a single --text-* step, so font sizes had no baseline to align to and grew wherever they were needed: 51 distinct sizes across web + desktop, 370 written as arbitrary values, six at half a pixel (10.5 / 11.5 / 12.5 / 13.5 / 14.5 / 15.5px). text-xs and text-sm carried nearly all UI text while the range between them — 11, 13, 15px — could only be reached with arbitrary values. Hierarchy does not come from having more sizes; past a handful, each extra size makes the hierarchy blurrier. Add ten role-named steps, each with its own line-height so leading cannot fragment the way size did, and move every product-UI call site onto them. Steps are named for what the text is for, not for a t-shirt size, because that is what keeps the scale from drifting again. Six steps deliberately keep the exact size/line-height pairs of the Tailwind defaults they replace, so the ~1,900-call-site rename moves nothing on screen. The visible changes are confined to former arbitrary values snapping to a step: 8/9/10px -> micro (11px) on badges and overlines; 17 -> 18; 22 -> 24; 30 (text-3xl) -> 36 on headings and stat numbers; 12.8px -> label (13px) on small buttons and toggles. Half-pixel sizes are gone. This supersedes #6108, which was reverted by #6116 because the sidebar group labels rendered at the inherited 16px. The cause was not the scale but cn(): `text-<x>` is ambiguous in Tailwind, and tailwind-merge resolves it against a table listing only the default sizes, so it filed every role step under text-colour and dropped whichever of `text-caption` / `text-sidebar-foreground/70` came first. Registering the steps as a font-size class group restores the real conflict groups — size beats size, colour beats colour, the two coexist — and a test pins the list against the scale, since the failure is silent in source. Hand-written CSS is covered too. The transcript kept a 12.5px body long after every Tailwind call site was on the scale, so the "no half-pixel sizes" claim was true of the classes and false of the product; the editor's prose, code and mermaid ramps had the same blind spot, and seven of their eight values already equalled a step exactly. All now reference var(--text-*). The guard test reads raw `font-size:` declarations as well as class names, exempting only the 16px iOS input-zoom workaround in base.css and the landing pages' marketing ramp. apps/mobile (own NativeWind config) and apps/docs (fumadocs' own type system) keep Tailwind's default scale and are untouched. Landing display type (rem/clamp, 2.2-6.4rem) stays on its separate ramp, as do four decorative emoji / serif-hero sizes. Verified on a running local stack: pinned sidebar rows and group labels measure 12px/16px, nav items 14px/20px — identical to pre-migration. An audit of every rendered font size across the product surfaces finds nothing off the scale; the only exceptions are avatar initials and emoji, which actor-avatar.tsx sizes proportionally to the avatar diameter by design. Co-authored-by: Lambda <lambda@multica.ai> Co-authored-by: multica-agent <github@multica.ai>
255 lines
9.6 KiB
TypeScript
255 lines
9.6 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useMemo, useState } from "react";
|
|
import { useQuery } from "@tanstack/react-query";
|
|
import { ChevronDown, Cpu, Loader2, Plus, Check, Info } from "lucide-react";
|
|
import { runtimeModelsOptions } from "@multica/core/runtimes";
|
|
import type { RuntimeModel } from "@multica/core/types";
|
|
import {
|
|
Popover,
|
|
PopoverTrigger,
|
|
PopoverContent,
|
|
} from "@multica/ui/components/ui/popover";
|
|
import { Input } from "@multica/ui/components/ui/input";
|
|
import { Label } from "@multica/ui/components/ui/label";
|
|
import { useT } from "../../i18n";
|
|
|
|
// ModelDropdown renders a searchable, creatable model picker for an agent.
|
|
// It fetches the supported-model catalog from the selected runtime — the
|
|
// daemon enumerates models on demand via heartbeat piggyback. Providers
|
|
// whose runtime ignores per-agent model selection return supported=false,
|
|
// and the dropdown renders disabled with an explanation instead of silently
|
|
// accepting a value the backend would ignore. No built-in provider does so
|
|
// today — Antigravity gained `--model` in agy 1.0.6 — but the path stays for
|
|
// any future model-less runtime.
|
|
export function ModelDropdown({
|
|
runtimeId,
|
|
runtimeOnline,
|
|
value,
|
|
onChange,
|
|
disabled,
|
|
}: {
|
|
runtimeId: string | null;
|
|
runtimeOnline: boolean;
|
|
value: string;
|
|
onChange: (value: string) => void;
|
|
disabled?: boolean;
|
|
}) {
|
|
const { t } = useT("agents");
|
|
const [open, setOpen] = useState(false);
|
|
const [search, setSearch] = useState("");
|
|
|
|
const modelsQuery = useQuery(
|
|
runtimeModelsOptions(runtimeOnline ? runtimeId : null),
|
|
);
|
|
|
|
const supported = modelsQuery.data?.supported ?? true;
|
|
// Stable reference for the model list — `?? []` would mint a fresh
|
|
// array each render and force every downstream useMemo to invalidate.
|
|
const models = useMemo(
|
|
() => modelsQuery.data?.models ?? [],
|
|
[modelsQuery.data],
|
|
);
|
|
const grouped = useMemo(() => groupByProvider(models), [models]);
|
|
|
|
// When the selected runtime reports it doesn't support per-agent
|
|
// model selection, clear any previously-saved value so we don't
|
|
// persist a ghost configuration that never takes effect.
|
|
useEffect(() => {
|
|
if (!supported && value !== "") {
|
|
onChange("");
|
|
}
|
|
}, [supported, value, onChange]);
|
|
|
|
const filtered = useMemo(() => {
|
|
if (!search.trim()) return grouped;
|
|
const needle = search.toLowerCase();
|
|
const out: Record<string, RuntimeModel[]> = {};
|
|
for (const [provider, list] of Object.entries(grouped)) {
|
|
const matches = list.filter(
|
|
(m) =>
|
|
m.id.toLowerCase().includes(needle) ||
|
|
m.label.toLowerCase().includes(needle),
|
|
);
|
|
if (matches.length > 0) out[provider] = matches;
|
|
}
|
|
return out;
|
|
}, [grouped, search]);
|
|
|
|
const trimmedSearch = search.trim();
|
|
const exactMatch = models.some(
|
|
(m) => m.id === trimmedSearch || m.label === trimmedSearch,
|
|
);
|
|
const canCreate = trimmedSearch.length > 0 && !exactMatch;
|
|
|
|
const select = (id: string) => {
|
|
onChange(id);
|
|
setOpen(false);
|
|
setSearch("");
|
|
};
|
|
|
|
const triggerLabel =
|
|
value ||
|
|
(disabled
|
|
? t(($) => $.model_dropdown.select_runtime_first)
|
|
: runtimeOnline
|
|
? t(($) => $.model_dropdown.default_provider)
|
|
: t(($) => $.model_dropdown.runtime_offline_manual));
|
|
|
|
if (!supported && !modelsQuery.isLoading) {
|
|
return (
|
|
<div className="flex flex-col min-w-0">
|
|
<div className="flex h-6 items-center">
|
|
<Label className="text-caption text-muted-foreground">{t(($) => $.model_dropdown.label)}</Label>
|
|
</div>
|
|
<div className="mt-1.5 flex items-start gap-2 rounded-lg border border-dashed border-border bg-muted/30 px-3 py-2.5 text-body text-muted-foreground">
|
|
<Info className="mt-0.5 h-4 w-4 shrink-0" />
|
|
<div className="min-w-0">
|
|
<div>{t(($) => $.model_dropdown.managed_by_runtime_title)}</div>
|
|
<div className="mt-0.5 text-caption">
|
|
{t(($) => $.model_dropdown.managed_by_runtime_hint)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex flex-col min-w-0">
|
|
<div className="flex h-6 items-center justify-between">
|
|
<Label className="text-caption text-muted-foreground">{t(($) => $.model_dropdown.label)}</Label>
|
|
{modelsQuery.isError && (
|
|
<span className="text-caption text-muted-foreground">{t(($) => $.model_dropdown.discovery_failed)}</span>
|
|
)}
|
|
</div>
|
|
<Popover open={open} onOpenChange={setOpen}>
|
|
<PopoverTrigger
|
|
disabled={disabled}
|
|
className="flex w-full min-w-0 items-center gap-3 rounded-lg border border-border bg-background px-3 py-2.5 mt-1.5 text-left text-body transition-colors hover:bg-muted disabled:pointer-events-none disabled:opacity-50"
|
|
>
|
|
<Cpu className="h-4 w-4 shrink-0 text-muted-foreground" />
|
|
<div className="min-w-0 flex-1">
|
|
{/* Wrapped in flex to mirror RuntimePicker's trigger DOM. The
|
|
two pickers sit side-by-side; inline-in-flex vs block-line-
|
|
box height calc would otherwise leave them ~1px misaligned. */}
|
|
<div className="flex items-center gap-2">
|
|
<span className="truncate font-medium">{triggerLabel}</span>
|
|
</div>
|
|
{value && (
|
|
<div className="truncate text-caption text-muted-foreground">
|
|
{modelLabel(models, value)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<ChevronDown
|
|
className={`h-4 w-4 shrink-0 text-muted-foreground transition-transform ${open ? "rotate-180" : ""}`}
|
|
/>
|
|
</PopoverTrigger>
|
|
<PopoverContent
|
|
align="start"
|
|
className="w-[var(--anchor-width)] p-0 overflow-hidden"
|
|
>
|
|
<div className="border-b border-border p-2">
|
|
<Input
|
|
autoFocus
|
|
placeholder={t(($) => $.pickers.model_search_placeholder)}
|
|
value={search}
|
|
onChange={(e) => setSearch(e.target.value)}
|
|
className="h-8"
|
|
/>
|
|
</div>
|
|
<div className="max-h-72 overflow-y-auto p-1">
|
|
{modelsQuery.isLoading && (
|
|
<div className="flex items-center gap-2 px-3 py-6 text-body text-muted-foreground">
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
{t(($) => $.pickers.model_discovering)}
|
|
</div>
|
|
)}
|
|
|
|
{!modelsQuery.isLoading &&
|
|
Object.entries(filtered).map(([provider, list]) => (
|
|
<div key={provider} className="mb-1">
|
|
{provider && (
|
|
<div className="px-2 pt-1.5 pb-0.5 text-caption font-medium uppercase tracking-wide text-muted-foreground">
|
|
{provider}
|
|
</div>
|
|
)}
|
|
{list.map((m) => (
|
|
<button
|
|
type="button"
|
|
key={m.id}
|
|
onClick={() => select(m.id)}
|
|
className={`flex w-full items-center gap-2 rounded-md px-3 py-2 text-left text-body transition-colors ${
|
|
m.id === value ? "bg-accent" : "hover:bg-accent/50"
|
|
}`}
|
|
>
|
|
<div className="min-w-0 flex-1">
|
|
<div className="truncate font-medium">{m.label}</div>
|
|
{m.label !== m.id && (
|
|
<div className="truncate text-caption text-muted-foreground">
|
|
{m.id}
|
|
</div>
|
|
)}
|
|
</div>
|
|
{m.id === value && (
|
|
<Check className="h-4 w-4 shrink-0 text-primary" />
|
|
)}
|
|
</button>
|
|
))}
|
|
</div>
|
|
))}
|
|
|
|
{!modelsQuery.isLoading &&
|
|
Object.keys(filtered).length === 0 &&
|
|
!canCreate && (
|
|
<div className="px-3 py-6 text-center text-body text-muted-foreground">
|
|
{t(($) => $.pickers.model_empty_with_dot)}
|
|
</div>
|
|
)}
|
|
|
|
{canCreate && (
|
|
<button
|
|
type="button"
|
|
onClick={() => select(trimmedSearch)}
|
|
className="flex w-full items-center gap-2 rounded-md px-3 py-2 text-left text-body text-primary transition-colors hover:bg-accent/50"
|
|
>
|
|
<Plus className="h-4 w-4 shrink-0" />
|
|
<span className="truncate">
|
|
{t(($) => $.pickers.model_custom_use, { value: trimmedSearch })}
|
|
</span>
|
|
</button>
|
|
)}
|
|
|
|
{value && (
|
|
<button
|
|
type="button"
|
|
onClick={() => select("")}
|
|
className="mt-1 flex w-full items-center gap-2 border-t border-border px-3 py-2 text-left text-caption text-muted-foreground transition-colors hover:bg-accent/50"
|
|
>
|
|
{t(($) => $.model_dropdown.clear_full)}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</PopoverContent>
|
|
</Popover>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function groupByProvider(models: RuntimeModel[]): Record<string, RuntimeModel[]> {
|
|
const out: Record<string, RuntimeModel[]> = {};
|
|
for (const m of models) {
|
|
const key = m.provider ?? "";
|
|
if (!out[key]) out[key] = [];
|
|
out[key].push(m);
|
|
}
|
|
return out;
|
|
}
|
|
|
|
function modelLabel(models: RuntimeModel[], id: string): string {
|
|
const found = models.find((m) => m.id === id);
|
|
if (!found) return "custom";
|
|
return found.provider ? found.provider : "model";
|
|
}
|