Files
readest/apps/readest-app/src/app/reader/components/SidebarToggler.tsx
T
2024-12-26 23:29:54 +01:00

40 lines
1.1 KiB
TypeScript

import React from 'react';
import { TbLayoutSidebar, TbLayoutSidebarFilled } from 'react-icons/tb';
import { useSidebarStore } from '@/store/sidebarStore';
import { useTranslation } from '@/hooks/useTranslation';
import Button from '@/components/Button';
interface SidebarTogglerProps {
bookKey: string;
}
const SidebarToggler: React.FC<SidebarTogglerProps> = ({ bookKey }) => {
const _ = useTranslation();
const { sideBarBookKey, isSideBarVisible, setSideBarBookKey, toggleSideBar } = useSidebarStore();
const handleToggleSidebar = () => {
if (sideBarBookKey === bookKey) {
toggleSideBar();
} else {
setSideBarBookKey(bookKey);
if (!isSideBarVisible) toggleSideBar();
}
};
return (
<Button
icon={
sideBarBookKey === bookKey && isSideBarVisible ? (
<TbLayoutSidebarFilled size={20} className='text-base-content' />
) : (
<TbLayoutSidebar size={20} className='text-base-content' />
)
}
onClick={handleToggleSidebar}
tooltip={_('Sidebar')}
tooltipDirection='bottom'
/>
);
};
export default SidebarToggler;