mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-22 12:19:24 +00:00
91 lines
3.2 KiB
TypeScript
91 lines
3.2 KiB
TypeScript
import React, { useState, useCallback, useMemo, useEffect } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useFlatToolRegistry } from "../data/useTranslatedToolRegistry";
|
|
import { getAllEndpoints, type ToolRegistryEntry } from "../data/toolsTaxonomy";
|
|
import { useMultipleEndpointsEnabled } from "./useEndpointConfig";
|
|
|
|
interface ToolManagementResult {
|
|
selectedToolKey: string | null;
|
|
selectedTool: ToolRegistryEntry | null;
|
|
toolSelectedFileIds: string[];
|
|
toolRegistry: Record<string, ToolRegistryEntry>;
|
|
selectTool: (toolKey: string) => void;
|
|
clearToolSelection: () => void;
|
|
setToolSelectedFileIds: (fileIds: string[]) => void;
|
|
}
|
|
|
|
export const useToolManagement = (): ToolManagementResult => {
|
|
const { t } = useTranslation();
|
|
|
|
const [selectedToolKey, setSelectedToolKey] = useState<string | null>(null);
|
|
const [toolSelectedFileIds, setToolSelectedFileIds] = useState<string[]>([]);
|
|
|
|
// Build endpoints list from registry entries with fallback to legacy mapping
|
|
const baseRegistry = useFlatToolRegistry();
|
|
const registryDerivedEndpoints = useMemo(() => {
|
|
const endpointsByTool: Record<string, string[]> = {};
|
|
Object.entries(baseRegistry).forEach(([key, entry]) => {
|
|
if (entry.endpoints && entry.endpoints.length > 0) {
|
|
endpointsByTool[key] = entry.endpoints;
|
|
}
|
|
});
|
|
return endpointsByTool;
|
|
}, [baseRegistry]);
|
|
|
|
const allEndpoints = useMemo(() => getAllEndpoints(baseRegistry), [baseRegistry]);
|
|
const { endpointStatus, loading: endpointsLoading } = useMultipleEndpointsEnabled(allEndpoints);
|
|
|
|
const isToolAvailable = useCallback((toolKey: string): boolean => {
|
|
if (endpointsLoading) return true;
|
|
const endpoints = baseRegistry[toolKey]?.endpoints || [];
|
|
return endpoints.length === 0 || endpoints.some((endpoint: string) => endpointStatus[endpoint] === true);
|
|
}, [endpointsLoading, endpointStatus, baseRegistry]);
|
|
|
|
const toolRegistry: Record<string, ToolRegistryEntry> = useMemo(() => {
|
|
const availableToolRegistry: Record<string, ToolRegistryEntry> = {};
|
|
Object.keys(baseRegistry).forEach(toolKey => {
|
|
if (isToolAvailable(toolKey)) {
|
|
const baseTool = baseRegistry[toolKey as keyof typeof baseRegistry];
|
|
availableToolRegistry[toolKey] = {
|
|
...baseTool,
|
|
name: t(baseTool.name),
|
|
description: t(baseTool.description)
|
|
};
|
|
}
|
|
});
|
|
return availableToolRegistry;
|
|
}, [isToolAvailable, t, baseRegistry]);
|
|
|
|
useEffect(() => {
|
|
if (!endpointsLoading && selectedToolKey && !toolRegistry[selectedToolKey]) {
|
|
const firstAvailableTool = Object.keys(toolRegistry)[0];
|
|
if (firstAvailableTool) {
|
|
setSelectedToolKey(firstAvailableTool);
|
|
} else {
|
|
setSelectedToolKey(null);
|
|
}
|
|
}
|
|
}, [endpointsLoading, selectedToolKey, toolRegistry]);
|
|
|
|
const selectTool = useCallback((toolKey: string) => {
|
|
setSelectedToolKey(toolKey);
|
|
}, []);
|
|
|
|
const clearToolSelection = useCallback(() => {
|
|
setSelectedToolKey(null);
|
|
}, []);
|
|
|
|
const selectedTool = selectedToolKey ? toolRegistry[selectedToolKey] : null;
|
|
|
|
return {
|
|
selectedToolKey,
|
|
selectedTool,
|
|
toolSelectedFileIds,
|
|
toolRegistry,
|
|
selectTool,
|
|
clearToolSelection,
|
|
setToolSelectedFileIds,
|
|
|
|
};
|
|
};
|