mirror of
https://github.com/multica-ai/multica.git
synced 2026-08-02 01:45:52 +02:00
* feat(agents): show runtime owner and add Mine/All filter in Create Agent dialog Display the runtime owner (with avatar) in the runtime selector dropdown, matching the pattern used in the Runtime list page. Add a Mine/All toggle to filter runtimes by ownership, defaulting to "Mine" so the current user's runtimes appear first. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * feat(agents): show runtime owner and Mine/All filter in agent Settings tab Apply the same owner display and Mine/All filter pattern to the Settings tab's runtime selector, matching the Create Agent dialog. Uses ProviderLogo and ActorAvatar for consistent runtime item rendering across both selectors. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(agents): address PR review — use unfiltered runtimes for lookup, simplify IIFE - Look up selectedRuntime from full `runtimes` array instead of `filteredRuntimes` to avoid null flash when switching filters - Replace IIFE with inline optional chaining for owner name display - Fix indentation on the trigger subtitle div Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Devv <devv@Devvs-Mac-mini.local> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
331 lines
12 KiB
TypeScript
331 lines
12 KiB
TypeScript
"use client";
|
|
|
|
import { useState, useRef, useMemo } from "react";
|
|
import {
|
|
Loader2,
|
|
Save,
|
|
Globe,
|
|
Lock,
|
|
Camera,
|
|
ChevronDown,
|
|
} from "lucide-react";
|
|
import type { Agent, AgentVisibility, RuntimeDevice, MemberWithUser } from "@multica/core/types";
|
|
import {
|
|
Popover,
|
|
PopoverTrigger,
|
|
PopoverContent,
|
|
} from "@multica/ui/components/ui/popover";
|
|
import { Button } from "@multica/ui/components/ui/button";
|
|
import { Input } from "@multica/ui/components/ui/input";
|
|
import { Label } from "@multica/ui/components/ui/label";
|
|
import { toast } from "sonner";
|
|
import { api } from "@multica/core/api";
|
|
import { useFileUpload } from "@multica/core/hooks/use-file-upload";
|
|
import { ActorAvatar } from "../../../common/actor-avatar";
|
|
import { ProviderLogo } from "../../../runtimes/components/provider-logo";
|
|
|
|
type RuntimeFilter = "mine" | "all";
|
|
|
|
export function SettingsTab({
|
|
agent,
|
|
runtimes,
|
|
members,
|
|
currentUserId,
|
|
onSave,
|
|
}: {
|
|
agent: Agent;
|
|
runtimes: RuntimeDevice[];
|
|
members: MemberWithUser[];
|
|
currentUserId: string | null;
|
|
onSave: (updates: Partial<Agent>) => Promise<void>;
|
|
}) {
|
|
const [name, setName] = useState(agent.name);
|
|
const [description, setDescription] = useState(agent.description ?? "");
|
|
const [visibility, setVisibility] = useState<AgentVisibility>(agent.visibility);
|
|
const [maxTasks, setMaxTasks] = useState(agent.max_concurrent_tasks);
|
|
const [selectedRuntimeId, setSelectedRuntimeId] = useState(agent.runtime_id);
|
|
const [runtimeOpen, setRuntimeOpen] = useState(false);
|
|
const [runtimeFilter, setRuntimeFilter] = useState<RuntimeFilter>("mine");
|
|
const [saving, setSaving] = useState(false);
|
|
const { upload, uploading } = useFileUpload(api);
|
|
const fileInputRef = useRef<HTMLInputElement>(null);
|
|
|
|
const getOwnerMember = (ownerId: string | null) => {
|
|
if (!ownerId) return null;
|
|
return members.find((m) => m.user_id === ownerId) ?? null;
|
|
};
|
|
|
|
const hasOtherRuntimes = runtimes.some((r) => r.owner_id !== currentUserId);
|
|
|
|
const filteredRuntimes = useMemo(() => {
|
|
const filtered = runtimeFilter === "mine" && currentUserId
|
|
? runtimes.filter((r) => r.owner_id === currentUserId)
|
|
: runtimes;
|
|
return [...filtered].sort((a, b) => {
|
|
if (a.owner_id === currentUserId && b.owner_id !== currentUserId) return -1;
|
|
if (a.owner_id !== currentUserId && b.owner_id === currentUserId) return 1;
|
|
return 0;
|
|
});
|
|
}, [runtimes, runtimeFilter, currentUserId]);
|
|
|
|
const selectedRuntime = runtimes.find((d) => d.id === selectedRuntimeId) ?? null;
|
|
const selectedOwnerMember = selectedRuntime ? getOwnerMember(selectedRuntime.owner_id) : null;
|
|
|
|
const handleAvatarUpload = async (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const file = e.target.files?.[0];
|
|
if (!file) return;
|
|
e.target.value = "";
|
|
try {
|
|
const result = await upload(file);
|
|
if (!result) return;
|
|
await onSave({ avatar_url: result.link });
|
|
toast.success("Avatar updated");
|
|
} catch (err) {
|
|
toast.error(err instanceof Error ? err.message : "Failed to upload avatar");
|
|
}
|
|
};
|
|
|
|
const dirty =
|
|
name !== agent.name ||
|
|
description !== (agent.description ?? "") ||
|
|
visibility !== agent.visibility ||
|
|
maxTasks !== agent.max_concurrent_tasks ||
|
|
selectedRuntimeId !== agent.runtime_id;
|
|
|
|
const handleSave = async () => {
|
|
if (!name.trim()) {
|
|
toast.error("Name is required");
|
|
return;
|
|
}
|
|
|
|
setSaving(true);
|
|
try {
|
|
await onSave({
|
|
name: name.trim(),
|
|
description,
|
|
visibility,
|
|
max_concurrent_tasks: maxTasks,
|
|
runtime_id: selectedRuntimeId,
|
|
});
|
|
toast.success("Settings saved");
|
|
} catch {
|
|
toast.error("Failed to save settings");
|
|
} finally {
|
|
setSaving(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="max-w-lg space-y-6">
|
|
<div>
|
|
<Label className="text-xs text-muted-foreground">Avatar</Label>
|
|
<div className="mt-1.5 flex items-center gap-4">
|
|
<button
|
|
type="button"
|
|
className="group relative h-16 w-16 shrink-0 rounded-full bg-muted overflow-hidden focus:outline-none focus-visible:ring-2 focus-visible:ring-ring"
|
|
onClick={() => fileInputRef.current?.click()}
|
|
disabled={uploading}
|
|
>
|
|
<ActorAvatar actorType="agent" actorId={agent.id} size={64} className="rounded-none" />
|
|
<div className="absolute inset-0 flex items-center justify-center bg-black/40 opacity-0 transition-opacity group-hover:opacity-100">
|
|
{uploading ? (
|
|
<Loader2 className="h-5 w-5 animate-spin text-white" />
|
|
) : (
|
|
<Camera className="h-5 w-5 text-white" />
|
|
)}
|
|
</div>
|
|
</button>
|
|
<input
|
|
ref={fileInputRef}
|
|
type="file"
|
|
accept="image/*"
|
|
className="hidden"
|
|
onChange={handleAvatarUpload}
|
|
/>
|
|
<div className="text-xs text-muted-foreground">
|
|
Click to upload avatar
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<Label className="text-xs text-muted-foreground">Name</Label>
|
|
<Input
|
|
value={name}
|
|
onChange={(e) => setName(e.target.value)}
|
|
className="mt-1"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<Label className="text-xs text-muted-foreground">Description</Label>
|
|
<Input
|
|
value={description}
|
|
onChange={(e) => setDescription(e.target.value)}
|
|
placeholder="What does this agent do?"
|
|
className="mt-1"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<Label className="text-xs text-muted-foreground">Visibility</Label>
|
|
<div className="mt-1.5 flex gap-2">
|
|
<button
|
|
type="button"
|
|
onClick={() => setVisibility("workspace")}
|
|
className={`flex flex-1 items-center gap-2 rounded-lg border px-3 py-2.5 text-sm transition-colors ${
|
|
visibility === "workspace"
|
|
? "border-primary bg-primary/5"
|
|
: "border-border hover:bg-muted"
|
|
}`}
|
|
>
|
|
<Globe className="h-4 w-4 shrink-0 text-muted-foreground" />
|
|
<div className="text-left">
|
|
<div className="font-medium">Workspace</div>
|
|
<div className="text-xs text-muted-foreground">All members can assign</div>
|
|
</div>
|
|
</button>
|
|
<button
|
|
type="button"
|
|
onClick={() => setVisibility("private")}
|
|
className={`flex flex-1 items-center gap-2 rounded-lg border px-3 py-2.5 text-sm transition-colors ${
|
|
visibility === "private"
|
|
? "border-primary bg-primary/5"
|
|
: "border-border hover:bg-muted"
|
|
}`}
|
|
>
|
|
<Lock className="h-4 w-4 shrink-0 text-muted-foreground" />
|
|
<div className="text-left">
|
|
<div className="font-medium">Private</div>
|
|
<div className="text-xs text-muted-foreground">Only you can assign</div>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<Label className="text-xs text-muted-foreground">Max Concurrent Tasks</Label>
|
|
<Input
|
|
type="number"
|
|
min={1}
|
|
max={50}
|
|
value={maxTasks}
|
|
onChange={(e) => setMaxTasks(Number(e.target.value))}
|
|
className="mt-1 w-24"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<div className="flex items-center justify-between">
|
|
<Label className="text-xs text-muted-foreground">Runtime</Label>
|
|
{hasOtherRuntimes && (
|
|
<div className="flex items-center gap-0.5 rounded-md bg-muted p-0.5">
|
|
<button
|
|
type="button"
|
|
onClick={() => setRuntimeFilter("mine")}
|
|
className={`rounded px-2 py-0.5 text-xs font-medium transition-colors ${
|
|
runtimeFilter === "mine"
|
|
? "bg-background text-foreground shadow-sm"
|
|
: "text-muted-foreground hover:text-foreground"
|
|
}`}
|
|
>
|
|
Mine
|
|
</button>
|
|
<button
|
|
type="button"
|
|
onClick={() => setRuntimeFilter("all")}
|
|
className={`rounded px-2 py-0.5 text-xs font-medium transition-colors ${
|
|
runtimeFilter === "all"
|
|
? "bg-background text-foreground shadow-sm"
|
|
: "text-muted-foreground hover:text-foreground"
|
|
}`}
|
|
>
|
|
All
|
|
</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
<Popover open={runtimeOpen} onOpenChange={setRuntimeOpen}>
|
|
<PopoverTrigger
|
|
disabled={runtimes.length === 0}
|
|
className="flex w-full items-center gap-3 rounded-lg border border-border bg-background px-3 py-2.5 mt-1.5 text-left text-sm transition-colors hover:bg-muted disabled:pointer-events-none disabled:opacity-50"
|
|
>
|
|
{selectedRuntime ? (
|
|
<ProviderLogo provider={selectedRuntime.provider} className="h-4 w-4 shrink-0" />
|
|
) : (
|
|
<ProviderLogo provider="" className="h-4 w-4 shrink-0" />
|
|
)}
|
|
<div className="min-w-0 flex-1">
|
|
<div className="flex items-center gap-2">
|
|
<span className="truncate font-medium">
|
|
{selectedRuntime?.name ?? "No runtime available"}
|
|
</span>
|
|
{selectedRuntime?.runtime_mode === "cloud" && (
|
|
<span className="shrink-0 rounded bg-info/10 px-1.5 py-0.5 text-xs font-medium text-info">
|
|
Cloud
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div className="truncate text-xs text-muted-foreground">
|
|
{selectedRuntime ? (
|
|
selectedOwnerMember ? selectedOwnerMember.name : selectedRuntime.device_info
|
|
) : "Select a runtime"}
|
|
</div>
|
|
</div>
|
|
<ChevronDown className={`h-4 w-4 shrink-0 text-muted-foreground transition-transform ${runtimeOpen ? "rotate-180" : ""}`} />
|
|
</PopoverTrigger>
|
|
<PopoverContent align="start" className="w-[var(--anchor-width)] p-1 max-h-60 overflow-y-auto">
|
|
{filteredRuntimes.map((device) => {
|
|
const ownerMember = getOwnerMember(device.owner_id);
|
|
return (
|
|
<button
|
|
key={device.id}
|
|
onClick={() => {
|
|
setSelectedRuntimeId(device.id);
|
|
setRuntimeOpen(false);
|
|
}}
|
|
className={`flex w-full items-center gap-3 rounded-md px-3 py-2.5 text-left text-sm transition-colors ${
|
|
device.id === selectedRuntimeId ? "bg-accent" : "hover:bg-accent/50"
|
|
}`}
|
|
>
|
|
<ProviderLogo provider={device.provider} className="h-4 w-4 shrink-0" />
|
|
<div className="min-w-0 flex-1">
|
|
<div className="flex items-center gap-2">
|
|
<span className="truncate font-medium">{device.name}</span>
|
|
{device.runtime_mode === "cloud" && (
|
|
<span className="shrink-0 rounded bg-info/10 px-1.5 py-0.5 text-xs font-medium text-info">
|
|
Cloud
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div className="mt-0.5 flex items-center gap-1 text-xs text-muted-foreground">
|
|
{ownerMember ? (
|
|
<>
|
|
<ActorAvatar actorType="member" actorId={ownerMember.user_id} size={14} />
|
|
<span className="truncate">{ownerMember.name}</span>
|
|
</>
|
|
) : (
|
|
<span className="truncate">{device.device_info}</span>
|
|
)}
|
|
</div>
|
|
</div>
|
|
<span
|
|
className={`h-2 w-2 shrink-0 rounded-full ${
|
|
device.status === "online" ? "bg-success" : "bg-muted-foreground/40"
|
|
}`}
|
|
/>
|
|
</button>
|
|
);
|
|
})}
|
|
</PopoverContent>
|
|
</Popover>
|
|
</div>
|
|
|
|
<Button onClick={handleSave} disabled={!dirty || saving} size="sm">
|
|
{saving ? <Loader2 className="h-3.5 w-3.5 mr-1.5 animate-spin" /> : <Save className="h-3.5 w-3.5 mr-1.5" />}
|
|
Save Changes
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|