2025-08-19 13:31:09 +01:00
|
|
|
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';
|
2025-09-05 12:35:17 +01:00
|
|
|
import { useSidebarNavigation } from '../../hooks/useSidebarNavigation';
|
|
|
|
import { handleUnlessSpecialClick } from '../../utils/clickHandlers';
|
2025-08-19 13:31:09 +01:00
|
|
|
|
|
|
|
interface AllToolsNavButtonProps {
|
|
|
|
activeButton: string;
|
|
|
|
setActiveButton: (id: string) => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
const AllToolsNavButton: React.FC<AllToolsNavButtonProps> = ({ activeButton, setActiveButton }) => {
|
|
|
|
const { t } = useTranslation();
|
|
|
|
const { handleReaderToggle, handleBackToTools, selectedToolKey, leftPanelView } = useToolWorkflow();
|
2025-09-05 12:35:17 +01:00
|
|
|
const { getHomeNavigation } = useSidebarNavigation();
|
2025-08-19 13:31:09 +01:00
|
|
|
|
|
|
|
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';
|
|
|
|
|
2025-09-05 12:35:17 +01:00
|
|
|
const navProps = getHomeNavigation();
|
|
|
|
|
|
|
|
const handleNavClick = (e: React.MouseEvent) => {
|
|
|
|
handleUnlessSpecialClick(e, handleClick);
|
|
|
|
};
|
|
|
|
|
2025-08-19 13:31:09 +01:00
|
|
|
const iconNode = (
|
|
|
|
<span className="iconContainer">
|
2025-08-26 16:31:20 +01:00
|
|
|
<AppsIcon sx={{ fontSize: '2rem' }} />
|
2025-08-19 13:31:09 +01:00
|
|
|
</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
|
2025-09-05 12:35:17 +01:00
|
|
|
component="a"
|
|
|
|
href={navProps.href}
|
|
|
|
onClick={handleNavClick}
|
2025-08-19 13:31:09 +01:00
|
|
|
size={'lg'}
|
|
|
|
variant="subtle"
|
2025-09-05 12:35:17 +01:00
|
|
|
aria-label={t("quickAccess.allTools", "All Tools")}
|
2025-08-19 13:31:09 +01:00
|
|
|
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',
|
2025-09-05 12:35:17 +01:00
|
|
|
textDecoration: 'none'
|
2025-08-19 13:31:09 +01:00
|
|
|
}}
|
|
|
|
className={isActive ? 'activeIconScale' : ''}
|
|
|
|
>
|
|
|
|
{iconNode}
|
|
|
|
</ActionIcon>
|
|
|
|
<span className={`all-tools-text ${isActive ? 'active' : 'inactive'}`}>
|
|
|
|
{t("quickAccess.allTools", "All Tools")}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</Tooltip>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default AllToolsNavButton;
|
|
|
|
|
|
|
|
|