mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-14 10:34:06 +02:00
All implemented tools now support automation bar Sign. Sign will need custom automation UI support --------- Co-authored-by: Connor Yoh <[email protected]> Co-authored-by: Reece Browne <[email protected]>
150 lines
4.7 KiB
TypeScript
150 lines
4.7 KiB
TypeScript
import { type TFunction } from 'i18next';
|
|
import React from 'react';
|
|
import { ToolOperationConfig } from '../hooks/tools/shared/useToolOperation';
|
|
import { BaseToolProps } from '../types/tool';
|
|
import { WorkbenchType } from '../types/workbench';
|
|
import { ToolId } from '../types/toolId';
|
|
|
|
export enum SubcategoryId {
|
|
SIGNING = 'signing',
|
|
DOCUMENT_SECURITY = 'documentSecurity',
|
|
VERIFICATION = 'verification',
|
|
DOCUMENT_REVIEW = 'documentReview',
|
|
PAGE_FORMATTING = 'pageFormatting',
|
|
EXTRACTION = 'extraction',
|
|
REMOVAL = 'removal',
|
|
AUTOMATION = 'automation',
|
|
GENERAL = 'general',
|
|
ADVANCED_FORMATTING = 'advancedFormatting',
|
|
DEVELOPER_TOOLS = 'developerTools'
|
|
}
|
|
|
|
export enum ToolCategoryId {
|
|
STANDARD_TOOLS = 'standardTools',
|
|
ADVANCED_TOOLS = 'advancedTools',
|
|
RECOMMENDED_TOOLS = 'recommendedTools'
|
|
}
|
|
|
|
export type ToolRegistryEntry = {
|
|
icon: React.ReactNode;
|
|
name: string;
|
|
component: React.ComponentType<BaseToolProps> | null;
|
|
description: string;
|
|
categoryId: ToolCategoryId;
|
|
subcategoryId: SubcategoryId;
|
|
maxFiles?: number;
|
|
supportedFormats?: string[];
|
|
endpoints?: string[];
|
|
link?: string;
|
|
type?: string;
|
|
// Workbench type for navigation
|
|
workbench?: WorkbenchType;
|
|
// Operation configuration for automation
|
|
operationConfig?: ToolOperationConfig<any>;
|
|
// Settings component for automation configuration
|
|
automationSettings: React.ComponentType<any> | null;
|
|
// Whether this tool supports automation (defaults to true)
|
|
supportsAutomate?: boolean;
|
|
// Synonyms for search (optional)
|
|
synonyms?: string[];
|
|
}
|
|
|
|
export type ToolRegistry = Record<ToolId, ToolRegistryEntry>;
|
|
|
|
export const SUBCATEGORY_ORDER: SubcategoryId[] = [
|
|
SubcategoryId.SIGNING,
|
|
SubcategoryId.DOCUMENT_SECURITY,
|
|
SubcategoryId.VERIFICATION,
|
|
SubcategoryId.DOCUMENT_REVIEW,
|
|
SubcategoryId.PAGE_FORMATTING,
|
|
SubcategoryId.EXTRACTION,
|
|
SubcategoryId.REMOVAL,
|
|
SubcategoryId.AUTOMATION,
|
|
SubcategoryId.GENERAL,
|
|
SubcategoryId.ADVANCED_FORMATTING,
|
|
SubcategoryId.DEVELOPER_TOOLS,
|
|
];
|
|
|
|
export const SUBCATEGORY_COLOR_MAP: Record<SubcategoryId, string> = {
|
|
[SubcategoryId.SIGNING]: '#FF7892',
|
|
[SubcategoryId.DOCUMENT_SECURITY]: '#FF7892',
|
|
[SubcategoryId.VERIFICATION]: '#1BB1D4',
|
|
[SubcategoryId.DOCUMENT_REVIEW]: '#48BD54',
|
|
[SubcategoryId.PAGE_FORMATTING]: '#7882FF',
|
|
[SubcategoryId.EXTRACTION]: '#1BB1D4',
|
|
[SubcategoryId.REMOVAL]: '#7882FF',
|
|
[SubcategoryId.AUTOMATION]: '#69DC95',
|
|
[SubcategoryId.GENERAL]: '#69DC95',
|
|
[SubcategoryId.ADVANCED_FORMATTING]: '#F55454',
|
|
[SubcategoryId.DEVELOPER_TOOLS]: '#F55454',
|
|
};
|
|
|
|
export const getCategoryLabel = (t: TFunction, id: ToolCategoryId): string => t(`toolPicker.categories.${id}`, id);
|
|
export const getSubcategoryLabel = (t: TFunction, id: SubcategoryId): string => t(`toolPicker.subcategories.${id}`, id);
|
|
export const getSubcategoryColor = (subcategory: SubcategoryId): string => SUBCATEGORY_COLOR_MAP[subcategory] || '#7882FF';
|
|
|
|
|
|
|
|
export const getAllEndpoints = (registry: ToolRegistry): string[] => {
|
|
const lists: string[][] = [];
|
|
Object.values(registry).forEach(entry => {
|
|
if (entry.endpoints && entry.endpoints.length > 0) {
|
|
lists.push(entry.endpoints);
|
|
}
|
|
});
|
|
return Array.from(new Set(lists.flat()));
|
|
};
|
|
|
|
export const getConversionEndpoints = (extensionToEndpoint: Record<string, Record<string, string>>): string[] => {
|
|
const endpoints = new Set<string>();
|
|
Object.values(extensionToEndpoint).forEach(toEndpoints => {
|
|
Object.values(toEndpoints).forEach(endpoint => {
|
|
endpoints.add(endpoint);
|
|
});
|
|
});
|
|
return Array.from(endpoints);
|
|
};
|
|
|
|
export const getAllApplicationEndpoints = (
|
|
registry: ToolRegistry,
|
|
extensionToEndpoint?: Record<string, Record<string, string>>
|
|
): string[] => {
|
|
const toolEp = getAllEndpoints(registry);
|
|
const convEp = extensionToEndpoint ? getConversionEndpoints(extensionToEndpoint) : [];
|
|
return Array.from(new Set([...toolEp, ...convEp]));
|
|
};
|
|
|
|
/**
|
|
* Default workbench for tools that don't specify one
|
|
* Returns null to trigger the default case in Workbench component (ToolRenderer)
|
|
*/
|
|
export const getDefaultToolWorkbench = (): WorkbenchType => 'fileEditor';
|
|
|
|
/**
|
|
* Get workbench type for a tool
|
|
*/
|
|
export const getToolWorkbench = (tool: ToolRegistryEntry): WorkbenchType => {
|
|
return tool.workbench || getDefaultToolWorkbench();
|
|
};
|
|
|
|
/**
|
|
* Get URL path for a tool
|
|
*/
|
|
export const getToolUrlPath = (toolId: string): string => {
|
|
return `/${toolId.replace(/([A-Z])/g, '-$1').toLowerCase()}`;
|
|
};
|
|
|
|
/**
|
|
* Check if a tool ID exists in the registry
|
|
*/
|
|
export const isValidToolId = (toolId: string, registry: ToolRegistry): boolean => {
|
|
return toolId in registry;
|
|
};
|
|
|
|
/**
|
|
* Check if a tool supports automation (defaults to true)
|
|
*/
|
|
export const getToolSupportsAutomate = (tool: ToolRegistryEntry): boolean => {
|
|
return tool.supportsAutomate !== false;
|
|
};
|