# Description of Changes <!-- Please provide a summary of the changes, including: - What was changed - Why the change was made - Any challenges encountered Closes #(issue_number) --> --- ## 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. --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: EthanHealy01 <ethan.healy.21@gmail.com> Co-authored-by: EthanHealy01 <80844253+EthanHealy01@users.noreply.github.com>
46 lines
1.5 KiB
TypeScript
46 lines
1.5 KiB
TypeScript
import { useHotkeys } from '../../../contexts/HotkeyContext';
|
|
import { useToolWorkflow } from '../../../contexts/ToolWorkflowContext';
|
|
import { ToolRegistryEntry } from '../../../data/toolsTaxonomy';
|
|
import { ToolId } from '../../../types/toolId';
|
|
|
|
export const getItemClasses = (isDetailed: boolean): string => {
|
|
return isDetailed ? 'tool-panel__fullscreen-item--detailed' : '';
|
|
};
|
|
|
|
export const getIconBackground = (categoryColor: string, isDetailed: boolean): string => {
|
|
const baseColor = isDetailed ? 'var(--fullscreen-bg-icon-detailed)' : 'var(--fullscreen-bg-icon-compact)';
|
|
const blend1 = isDetailed ? '18%' : '15%';
|
|
const blend2 = isDetailed ? '8%' : '6%';
|
|
|
|
return `linear-gradient(135deg,
|
|
color-mix(in srgb, ${categoryColor} ${blend1}, ${baseColor}),
|
|
color-mix(in srgb, ${categoryColor} ${blend2}, ${baseColor})
|
|
)`;
|
|
};
|
|
|
|
export const getIconStyle = (): Record<string, string> => {
|
|
return {};
|
|
};
|
|
|
|
export const isToolDisabled = (id: string, tool: ToolRegistryEntry): boolean => {
|
|
return !tool.component && !tool.link && id !== 'read' && id !== 'multiTool';
|
|
};
|
|
|
|
export function useToolMeta(id: string, tool: ToolRegistryEntry) {
|
|
const { hotkeys } = useHotkeys();
|
|
const { isFavorite, toggleFavorite } = useToolWorkflow();
|
|
|
|
const isFav = isFavorite(id as ToolId);
|
|
const binding = hotkeys[id as ToolId];
|
|
const disabled = isToolDisabled(id, tool);
|
|
|
|
return {
|
|
binding,
|
|
isFav,
|
|
toggleFavorite: () => toggleFavorite(id as ToolId),
|
|
disabled,
|
|
};
|
|
}
|
|
|
|
|