mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-08-27 06:39:24 +00:00

# Description of Changes - Added the all tools sidebar - Added a TextFit component that shrinks text to fit containers - Added a TopToolIcon on the nav, that animates down to give users feedback on what tool is selected - Added the baseToolRegistry, to replace the old pattern of listing tools, allowing us to clean up the ToolRegistry code - Fixed Mantine light/dark theme race condition - General styling tweaks --- ## Checklist ### General - [ ] I have read the [Contribution Guidelines](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/CONTRIBUTING.md) - [ ] I have read the [Stirling-PDF Developer Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md) (if applicable) - [ ] I have read the [How to add new languages to Stirling-PDF](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md) (if applicable) - [ ] I have performed a self-review of my own code - [ ] My changes generate no new warnings ### Documentation - [ ] I have updated relevant docs on [Stirling-PDF's doc repo](https://github.com/Stirling-Tools/Stirling-Tools.github.io/blob/main/docs/) (if functionality has heavily changed) - [ ] I have read the section [Add New Translation Tags](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/HowToAddNewLanguage.md#add-new-translation-tags) (for new translation tags only) ### UI Changes (if applicable) - [ ] Screenshots or videos demonstrating the UI changes are attached (e.g., as comments or direct attachments in the PR) ### Testing (if applicable) - [ ] I have tested my changes locally. Refer to the [Testing Guide](https://github.com/Stirling-Tools/Stirling-PDF/blob/main/devGuide/DeveloperGuide.md#6-testing) for more details.
89 lines
3.0 KiB
TypeScript
89 lines
3.0 KiB
TypeScript
import { useMemo } from 'react';
|
|
|
|
import { SUBCATEGORY_ORDER, ToolCategory, ToolRegistryEntry } from '../data/toolsTaxonomy';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
type GroupedTools = {
|
|
[category: string]: {
|
|
[subcategory: string]: Array<{ id: string; tool: ToolRegistryEntry }>;
|
|
};
|
|
};
|
|
|
|
export function useToolSections(filteredTools: [string, ToolRegistryEntry][]) {
|
|
const { t } = useTranslation();
|
|
|
|
const groupedTools = useMemo(() => {
|
|
const grouped: GroupedTools = {};
|
|
filteredTools.forEach(([id, tool]) => {
|
|
const category = tool.category;
|
|
const subcategory = tool.subcategory;
|
|
if (!grouped[category]) grouped[category] = {};
|
|
if (!grouped[category][subcategory]) grouped[category][subcategory] = [];
|
|
grouped[category][subcategory].push({ id, tool });
|
|
});
|
|
return grouped;
|
|
}, [filteredTools]);
|
|
|
|
const sections = useMemo(() => {
|
|
const getOrderIndex = (name: string) => {
|
|
const idx = SUBCATEGORY_ORDER.indexOf(name as any);
|
|
return idx === -1 ? Number.MAX_SAFE_INTEGER : idx;
|
|
};
|
|
|
|
const quick: Record<string, Array<{ id: string; tool: ToolRegistryEntry }>> = {};
|
|
const all: Record<string, Array<{ id: string; tool: ToolRegistryEntry }>> = {};
|
|
|
|
Object.entries(groupedTools).forEach(([origCat, subs]) => {
|
|
const upperCat = origCat.toUpperCase();
|
|
|
|
Object.entries(subs).forEach(([sub, tools]) => {
|
|
if (!all[sub]) all[sub] = [];
|
|
all[sub].push(...tools);
|
|
});
|
|
|
|
if (upperCat === ToolCategory.RECOMMENDED_TOOLS.toUpperCase()) {
|
|
Object.entries(subs).forEach(([sub, tools]) => {
|
|
if (!quick[sub]) quick[sub] = [];
|
|
quick[sub].push(...tools);
|
|
});
|
|
}
|
|
});
|
|
|
|
const sortSubs = (obj: Record<string, Array<{ id: string; tool: ToolRegistryEntry }>>) =>
|
|
Object.entries(obj)
|
|
.sort(([a], [b]) => {
|
|
const ai = getOrderIndex(a);
|
|
const bi = getOrderIndex(b);
|
|
if (ai !== bi) return ai - bi;
|
|
return a.localeCompare(b);
|
|
})
|
|
.map(([subcategory, tools]) => ({ subcategory, tools }));
|
|
|
|
const built = [
|
|
{ key: 'quick', title: t('toolPicker.quickAccess', 'QUICK ACCESS'), subcategories: sortSubs(quick) },
|
|
{ key: 'all', title: t('toolPicker.allTools', 'ALL TOOLS'), subcategories: sortSubs(all) }
|
|
];
|
|
|
|
return built.filter(section => section.subcategories.some(sc => sc.tools.length > 0));
|
|
}, [groupedTools]);
|
|
|
|
const searchGroups = useMemo(() => {
|
|
const subMap: Record<string, Array<{ id: string; tool: ToolRegistryEntry }>> = {};
|
|
const seen = new Set<string>();
|
|
filteredTools.forEach(([id, tool]) => {
|
|
if (seen.has(id)) return;
|
|
seen.add(id);
|
|
const sub = tool.subcategory;
|
|
if (!subMap[sub]) subMap[sub] = [];
|
|
subMap[sub].push({ id, tool });
|
|
});
|
|
return Object.entries(subMap)
|
|
.sort(([a], [b]) => a.localeCompare(b))
|
|
.map(([subcategory, tools]) => ({ subcategory, tools }));
|
|
}, [filteredTools]);
|
|
|
|
return { sections, searchGroups };
|
|
}
|
|
|
|
|