mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-18 01:19:24 +00:00

# 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: ConnorYoh <40631091+ConnorYoh@users.noreply.github.com>
74 lines
2.5 KiB
TypeScript
74 lines
2.5 KiB
TypeScript
import React from 'react';
|
|
import { ActionIcon } from '@mantine/core';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { Tooltip } from './Tooltip';
|
|
import AppsIcon from '@mui/icons-material/AppsRounded';
|
|
import { useToolWorkflow } from '../../contexts/ToolWorkflowContext';
|
|
import { useSidebarNavigation } from '../../hooks/useSidebarNavigation';
|
|
import { handleUnlessSpecialClick } from '../../utils/clickHandlers';
|
|
|
|
interface AllToolsNavButtonProps {
|
|
activeButton: string;
|
|
setActiveButton: (id: string) => void;
|
|
}
|
|
|
|
const AllToolsNavButton: React.FC<AllToolsNavButtonProps> = ({ activeButton, setActiveButton }) => {
|
|
const { t } = useTranslation();
|
|
const { handleReaderToggle, handleBackToTools, selectedToolKey, leftPanelView } = useToolWorkflow();
|
|
const { getHomeNavigation } = useSidebarNavigation();
|
|
|
|
const handleClick = () => {
|
|
setActiveButton('tools');
|
|
// Preserve existing behavior used in QuickAccessBar header
|
|
handleReaderToggle();
|
|
handleBackToTools();
|
|
};
|
|
|
|
// Do not highlight All Tools when a specific tool is open (indicator is shown)
|
|
const isActive = activeButton === 'tools' && !selectedToolKey && leftPanelView === 'toolPicker';
|
|
|
|
const navProps = getHomeNavigation();
|
|
|
|
const handleNavClick = (e: React.MouseEvent) => {
|
|
handleUnlessSpecialClick(e, handleClick);
|
|
};
|
|
|
|
const iconNode = (
|
|
<span className="iconContainer">
|
|
<AppsIcon sx={{ fontSize: '2rem' }} />
|
|
</span>
|
|
);
|
|
|
|
return (
|
|
<Tooltip content={t("quickAccess.allTools", "All Tools")} position="right" arrow containerStyle={{ marginTop: "-1rem" }} maxWidth={200}>
|
|
<div className="flex flex-col items-center gap-1 mt-4 mb-2">
|
|
<ActionIcon
|
|
component="a"
|
|
href={navProps.href}
|
|
onClick={handleNavClick}
|
|
size={'lg'}
|
|
variant="subtle"
|
|
aria-label={t("quickAccess.allTools", "All Tools")}
|
|
style={{
|
|
backgroundColor: isActive ? 'var(--icon-tools-bg)' : 'var(--icon-inactive-bg)',
|
|
color: isActive ? 'var(--icon-tools-color)' : 'var(--icon-inactive-color)',
|
|
border: 'none',
|
|
borderRadius: '8px',
|
|
textDecoration: 'none'
|
|
}}
|
|
className={isActive ? 'activeIconScale' : ''}
|
|
>
|
|
{iconNode}
|
|
</ActionIcon>
|
|
<span className={`all-tools-text ${isActive ? 'active' : 'inactive'}`}>
|
|
{t("quickAccess.allTools", "All Tools")}
|
|
</span>
|
|
</div>
|
|
</Tooltip>
|
|
);
|
|
};
|
|
|
|
export default AllToolsNavButton;
|
|
|
|
|