Files
SnapOtter/apps/web/src/components/tools/tool-palette.tsx
T
SnapOtterandGitHub 63a03d26f2 feat: pipeline templates, analytics opt-out, 83 conversion presets, positioning + e2e modernization
Lands five integrated branches: pipeline templates (#355), analytics opt-out (#354), 83 conversion presets bringing the catalog to 240 tools (#356), self-hosted positioning (#353), and e2e modernization (#351).

Integration fixes: aligned stale web analytics tests with the opt-out/allow-list model, closed 3 CodeQL incomplete-sanitization alerts in the i18n generator, resolved settings/index/docs/format-matrix conflicts, and corrected tool counts to 240.
2026-06-28 18:57:53 +08:00

146 lines
5.3 KiB
TypeScript

import { CATEGORIES, TOOLS } from "@snapotter/shared";
import { FileImage, Plus } from "lucide-react";
import { useEffect, useMemo, useState } from "react";
import { SearchBar } from "@/components/common/search-bar";
import { useTranslation } from "@/contexts/i18n-context";
import { useFuseSearch } from "@/hooks/use-fuse-search";
import { apiGet } from "@/lib/api";
import { ICON_MAP } from "@/lib/icon-map";
import { getCategoryName, getToolDescription, getToolName } from "@/lib/tool-i18n";
import { cn } from "@/lib/utils";
const EXCLUDED_TOOLS = new Set(["pipeline", "compare", "find-duplicates", "collage", "compose"]);
interface ToolPaletteProps {
onAddStep: (toolId: string) => void;
className?: string;
}
export function ToolPalette({ onAddStep, className }: ToolPaletteProps) {
const { t } = useTranslation();
const [search, setSearch] = useState("");
const [disabledTools, setDisabledTools] = useState<string[]>([]);
const [experimentalEnabled, setExperimentalEnabled] = useState(false);
const [pipelineToolIds, setPipelineToolIds] = useState<string[] | null>(null);
useEffect(() => {
apiGet<{ settings: Record<string, string> }>("/v1/settings")
.then((data) => {
setDisabledTools(
data.settings.disabledTools ? JSON.parse(data.settings.disabledTools) : [],
);
setExperimentalEnabled(data.settings.enableExperimentalTools === "true");
})
.catch(() => {});
apiGet<{ toolIds: string[] }>("/v1/pipeline/tools")
.then((data) => setPipelineToolIds(data.toolIds))
.catch(() => {});
}, []);
const preFiltered = useMemo(() => {
return TOOLS.filter((t) => {
if (EXCLUDED_TOOLS.has(t.id)) return false;
if (disabledTools.includes(t.id)) return false;
if (t.experimental && !experimentalEnabled) return false;
if (pipelineToolIds && !pipelineToolIds.includes(t.id)) return false;
return true;
});
}, [disabledTools, experimentalEnabled, pipelineToolIds]);
const availableTools = useFuseSearch(preFiltered, search);
const groupedTools = useMemo(() => {
const groups: Record<string, typeof availableTools> = {};
for (const tool of availableTools) {
const cat = tool.category || "other";
if (!groups[cat]) groups[cat] = [];
groups[cat].push(tool);
}
return groups;
}, [availableTools]);
const isSearching = search.length > 0;
return (
<div className={cn("flex flex-col h-full", className)}>
<div className="px-3 pt-3 pb-2 shrink-0">
<SearchBar
value={search}
onChange={setSearch}
placeholder={t.automate.searchToolsPlaceholder}
/>
</div>
<div className="flex-1 overflow-y-auto px-3 pb-3">
{availableTools.length === 0 ? (
<p className="text-sm text-muted-foreground text-center py-8">
{t.fullscreenGrid.noToolsFound}
</p>
) : isSearching ? (
<div className="space-y-1">
{availableTools.map((tool) => (
<ToolItem key={tool.id} tool={tool} onAdd={onAddStep} />
))}
</div>
) : (
<div className="space-y-4">
{CATEGORIES.map((cat) => {
const tools = groupedTools[cat.id];
if (!tools || tools.length === 0) return null;
const CatIcon =
(ICON_MAP[cat.icon] as React.ComponentType<{ className?: string }>) ?? FileImage;
return (
<div key={cat.id}>
<div className="flex items-center gap-1.5 mb-1.5 px-1">
<CatIcon className="h-3.5 w-3.5 text-muted-foreground" />
<span className="text-xs font-semibold uppercase text-muted-foreground tracking-wider">
{getCategoryName(t, cat.id, cat.name)}
</span>
</div>
<div className="space-y-0.5">
{tools.map((tool) => (
<ToolItem key={tool.id} tool={tool} onAdd={onAddStep} />
))}
</div>
</div>
);
})}
</div>
)}
</div>
</div>
);
}
interface ToolItemProps {
tool: { id: string; name: string; description: string; icon: string };
onAdd: (toolId: string) => void;
}
function ToolItem({ tool, onAdd }: ToolItemProps) {
const { t } = useTranslation();
const Icon = (ICON_MAP[tool.icon] as React.ComponentType<{ className?: string }>) ?? FileImage;
return (
<button
type="button"
onClick={() => onAdd(tool.id)}
className="flex items-center gap-2.5 w-full px-2.5 py-2 rounded-lg hover:bg-muted text-start transition-colors group"
>
<div className="p-1.5 rounded-md bg-muted group-hover:bg-primary/10 transition-colors shrink-0">
<Icon className="h-3.5 w-3.5 text-muted-foreground group-hover:text-primary transition-colors" />
</div>
<div className="flex-1 min-w-0">
<div className="text-sm font-medium text-foreground leading-tight">
{getToolName(t, tool.id, tool.name)}
</div>
<div className="text-[11px] text-muted-foreground truncate leading-tight">
{getToolDescription(t, tool.id, tool.description)}
</div>
</div>
<Plus className="h-3.5 w-3.5 text-muted-foreground opacity-0 group-hover:opacity-100 transition-opacity shrink-0" />
</button>
);
}