forked from akai/readest
9477789db1
This also fixes layout glitches when showing status bar on devices without display cutouts
256 lines
9.0 KiB
TypeScript
256 lines
9.0 KiB
TypeScript
import clsx from 'clsx';
|
|
import React, { useCallback, useEffect, useRef, useState } from 'react';
|
|
import { useRouter, useSearchParams } from 'next/navigation';
|
|
import { FaSearch } from 'react-icons/fa';
|
|
import { PiPlus } from 'react-icons/pi';
|
|
import { PiSelectionAllDuotone } from 'react-icons/pi';
|
|
import { PiDotsThreeCircle } from 'react-icons/pi';
|
|
import { MdOutlineMenu, MdArrowBackIosNew } from 'react-icons/md';
|
|
import { IoMdCloseCircle } from 'react-icons/io';
|
|
|
|
import { useEnv } from '@/context/EnvContext';
|
|
import { useThemeStore } from '@/store/themeStore';
|
|
import { useTranslation } from '@/hooks/useTranslation';
|
|
import { useLibraryStore } from '@/store/libraryStore';
|
|
import { useResponsiveSize } from '@/hooks/useResponsiveSize';
|
|
import { useSafeAreaInsets } from '@/hooks/useSafeAreaInsets';
|
|
import { useTrafficLightStore } from '@/store/trafficLightStore';
|
|
import { navigateToLibrary } from '@/utils/nav';
|
|
import { debounce } from '@/utils/debounce';
|
|
import useShortcuts from '@/hooks/useShortcuts';
|
|
import WindowButtons from '@/components/WindowButtons';
|
|
import Dropdown from '@/components/Dropdown';
|
|
import SettingsMenu from './SettingsMenu';
|
|
import ImportMenu from './ImportMenu';
|
|
import SortMenu from './SortMenu';
|
|
|
|
interface LibraryHeaderProps {
|
|
isSelectMode: boolean;
|
|
isSelectAll: boolean;
|
|
onImportBooks: () => void;
|
|
onToggleSelectMode: () => void;
|
|
onSelectAll: () => void;
|
|
onDeselectAll: () => void;
|
|
}
|
|
|
|
const LibraryHeader: React.FC<LibraryHeaderProps> = ({
|
|
isSelectMode,
|
|
isSelectAll,
|
|
onImportBooks,
|
|
onToggleSelectMode,
|
|
onSelectAll,
|
|
onDeselectAll,
|
|
}) => {
|
|
const _ = useTranslation();
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const { appService } = useEnv();
|
|
const { systemUIVisible, statusBarHeight } = useThemeStore();
|
|
const { currentBookshelf } = useLibraryStore();
|
|
const {
|
|
isTrafficLightVisible,
|
|
initializeTrafficLightStore,
|
|
initializeTrafficLightListeners,
|
|
setTrafficLightVisibility,
|
|
cleanupTrafficLightListeners,
|
|
} = useTrafficLightStore();
|
|
const [searchQuery, setSearchQuery] = useState(searchParams?.get('q') ?? '');
|
|
|
|
const headerRef = useRef<HTMLDivElement>(null);
|
|
const iconSize18 = useResponsiveSize(18);
|
|
const iconSize20 = useResponsiveSize(20);
|
|
const insets = useSafeAreaInsets();
|
|
|
|
useShortcuts({
|
|
onToggleSelectMode,
|
|
});
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
const debouncedUpdateQueryParam = useCallback(
|
|
debounce((value: string) => {
|
|
const params = new URLSearchParams(searchParams?.toString());
|
|
if (value) {
|
|
params.set('q', value);
|
|
} else {
|
|
params.delete('q');
|
|
}
|
|
router.push(`?${params.toString()}`);
|
|
}, 500),
|
|
[searchParams],
|
|
);
|
|
|
|
const handleSearchChange = (e: React.ChangeEvent<HTMLInputElement>) => {
|
|
const newQuery = e.target.value;
|
|
setSearchQuery(newQuery);
|
|
debouncedUpdateQueryParam(newQuery);
|
|
};
|
|
|
|
useEffect(() => {
|
|
if (!appService?.hasTrafficLight) return;
|
|
|
|
initializeTrafficLightStore(appService);
|
|
initializeTrafficLightListeners();
|
|
setTrafficLightVisibility(true);
|
|
return () => {
|
|
cleanupTrafficLightListeners();
|
|
};
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
const windowButtonVisible = appService?.hasWindowBar && !isTrafficLightVisible;
|
|
const isInGroupView = !!searchParams?.get('group');
|
|
const currentBooksCount = currentBookshelf.reduce(
|
|
(acc, item) => acc + ('books' in item ? item.books.length : 1),
|
|
0,
|
|
);
|
|
|
|
if (!insets) return null;
|
|
|
|
return (
|
|
<div
|
|
ref={headerRef}
|
|
className={clsx(
|
|
'titlebar bg-base-200 z-10 flex h-[52px] w-full items-center py-2 pr-4 sm:h-[48px] sm:pr-6',
|
|
isTrafficLightVisible ? 'pl-16' : 'pl-0 sm:pl-2',
|
|
)}
|
|
style={{
|
|
marginTop: appService?.hasSafeAreaInset
|
|
? `max(${insets.top}px, ${systemUIVisible ? statusBarHeight : 0}px)`
|
|
: '0px',
|
|
}}
|
|
>
|
|
<div className='flex w-full items-center justify-between space-x-6 sm:space-x-12'>
|
|
<div className='exclude-title-bar-mousedown relative flex w-full items-center pl-4'>
|
|
{isInGroupView && (
|
|
<button
|
|
onClick={() => {
|
|
navigateToLibrary(router);
|
|
}}
|
|
className='ml-[-6px] mr-4 flex h-7 min-h-7 w-7 items-center p-0'
|
|
>
|
|
<div className='lg:tooltip lg:tooltip-bottom' data-tip={_('Go Back')}>
|
|
<MdArrowBackIosNew size={iconSize20} />
|
|
</div>
|
|
</button>
|
|
)}
|
|
<div className='relative flex h-9 w-full items-center sm:h-7'>
|
|
<span className='absolute left-3 text-gray-500'>
|
|
<FaSearch className='h-4 w-4' />
|
|
</span>
|
|
<input
|
|
type='text'
|
|
value={searchQuery}
|
|
placeholder={
|
|
currentBooksCount > 1
|
|
? _('Search in {{count}} Book(s)...', {
|
|
count: currentBooksCount,
|
|
})
|
|
: _('Search Books...')
|
|
}
|
|
onChange={handleSearchChange}
|
|
spellCheck='false'
|
|
className={clsx(
|
|
'input rounded-badge bg-base-300/50 h-9 w-full pl-10 pr-10 sm:h-7',
|
|
'font-sans text-sm font-light',
|
|
'border-none focus:outline-none focus:ring-0',
|
|
)}
|
|
/>
|
|
</div>
|
|
<div className='absolute right-4 flex items-center space-x-2 text-gray-500 sm:space-x-4'>
|
|
{searchQuery && (
|
|
<button
|
|
type='button'
|
|
onClick={() => {
|
|
setSearchQuery('');
|
|
debouncedUpdateQueryParam('');
|
|
}}
|
|
className='pe-1 text-gray-400 hover:text-gray-600'
|
|
aria-label={_('Clear Search')}
|
|
>
|
|
<IoMdCloseCircle className='h-4 w-4' />
|
|
</button>
|
|
)}
|
|
<span className='bg-base-content/50 mx-2 h-4 w-[0.5px]'></span>
|
|
<Dropdown
|
|
className={clsx(
|
|
'exclude-title-bar-mousedown dropdown-bottom flex h-6 cursor-pointer justify-center',
|
|
appService?.isMobile ? 'dropdown-end' : 'dropdown-center',
|
|
)}
|
|
buttonClassName='p-0 h-6 min-h-6 w-6 flex items-center justify-center'
|
|
toggleButton={
|
|
<div className='lg:tooltip lg:tooltip-bottom' data-tip={_('Import Books')}>
|
|
<PiPlus className='m-0.5 h-5 w-5' />
|
|
</div>
|
|
}
|
|
>
|
|
<ImportMenu onImportBooks={onImportBooks} />
|
|
</Dropdown>
|
|
{appService?.isMobile ? null : (
|
|
<button
|
|
onClick={onToggleSelectMode}
|
|
aria-label={_('Select Multiple Books')}
|
|
className='h-6'
|
|
>
|
|
<div
|
|
className='lg:tooltip lg:tooltip-bottom cursor-pointer'
|
|
data-tip={_('Select Books')}
|
|
>
|
|
<PiSelectionAllDuotone
|
|
role='button'
|
|
className={`h-6 w-6 ${isSelectMode ? 'fill-gray-400' : 'fill-gray-500'}`}
|
|
/>
|
|
</div>
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
{isSelectMode ? (
|
|
<div
|
|
className={clsx(
|
|
'flex h-full items-center',
|
|
'w-max-[72px] w-min-[72px] sm:w-max-[80px] sm:w-min-[80px]',
|
|
)}
|
|
>
|
|
<button
|
|
onClick={isSelectAll ? onDeselectAll : onSelectAll}
|
|
className='btn btn-ghost text-base-content/85 h-8 min-h-8 w-[72px] p-0 sm:w-[80px]'
|
|
aria-label={isSelectAll ? _('Deselect') : _('Select All')}
|
|
>
|
|
<span className='font-sans text-base font-normal sm:text-sm'>
|
|
{isSelectAll ? _('Deselect') : _('Select All')}
|
|
</span>
|
|
</button>
|
|
</div>
|
|
) : (
|
|
<div className='flex h-full items-center gap-x-2 sm:gap-x-4'>
|
|
<Dropdown
|
|
className='exclude-title-bar-mousedown dropdown-bottom dropdown-end'
|
|
buttonClassName='btn btn-ghost h-8 min-h-8 w-8 p-0'
|
|
toggleButton={<PiDotsThreeCircle size={iconSize18} />}
|
|
>
|
|
<SortMenu />
|
|
</Dropdown>
|
|
<Dropdown
|
|
className='exclude-title-bar-mousedown dropdown-bottom dropdown-end'
|
|
buttonClassName='btn btn-ghost h-8 min-h-8 w-8 p-0'
|
|
toggleButton={<MdOutlineMenu size={iconSize18} />}
|
|
>
|
|
<SettingsMenu />
|
|
</Dropdown>
|
|
{appService?.hasWindowBar && (
|
|
<WindowButtons
|
|
headerRef={headerRef}
|
|
showMinimize={windowButtonVisible}
|
|
showMaximize={windowButtonVisible}
|
|
showClose={windowButtonVisible}
|
|
/>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LibraryHeader;
|