Files
readest/apps/readest-app/src/app/reader/components/sidebar/BookMenu.tsx
T
Huang Xin 2f5e583653 feat(annotations): configurable export link type + dedicated Import Annotations modal (#4350)
* feat(export): make annotation export link type configurable

Add an Annotation Link selector (App / Web) to the Export Annotations
dialog. Defaults to the app deeplink in the native app and the universal
web link on the web, so web exports no longer emit readest:// links that
only the desktop/mobile app can open. The default markdown template now
uses the configurable annotation.link variable.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* feat(annotations): move Moon+ Reader import into a dedicated Import Annotations modal

Replace the single 'Import from Moon+ Reader' menu item with an 'Import
Annotations' entry (below 'Export Annotations') that opens a dedicated
modal listing import sources. Currently lists Moon+ Reader; the boxed-list
layout makes adding future providers a one-row change.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-29 07:48:00 +02:00

222 lines
8.7 KiB
TypeScript

import clsx from 'clsx';
import React from 'react';
import { MdCheck } from 'react-icons/md';
import { useEnv } from '@/context/EnvContext';
import { useBookDataStore } from '@/store/bookDataStore';
import { useReaderStore } from '@/store/readerStore';
import { useLibraryStore } from '@/store/libraryStore';
import { useSidebarStore } from '@/store/sidebarStore';
import { useTranslation } from '@/hooks/useTranslation';
import { useSettingsStore } from '@/store/settingsStore';
import { useParallelViewStore } from '@/store/parallelViewStore';
import { isWebAppPlatform } from '@/services/environment';
import { eventDispatcher } from '@/utils/event';
import { FIXED_LAYOUT_FORMATS } from '@/types/book';
import { DOWNLOAD_READEST_URL } from '@/services/constants';
import { saveViewSettings } from '@/helpers/settings';
import { setProofreadRulesVisibility } from '@/app/reader/components/ProofreadRules';
import { setAboutDialogVisible } from '@/components/AboutWindow';
import useBooksManager from '../../hooks/useBooksManager';
import MenuItem from '@/components/MenuItem';
import Menu from '@/components/Menu';
interface BookMenuProps {
menuClassName?: string;
setIsDropdownOpen?: (isOpen: boolean) => void;
}
const BookMenu: React.FC<BookMenuProps> = ({ menuClassName, setIsDropdownOpen }) => {
const _ = useTranslation();
const { envConfig } = useEnv();
const { settings } = useSettingsStore();
const { bookKeys, recreateViewer, getViewSettings } = useReaderStore();
const { getVisibleLibrary } = useLibraryStore();
const { openParallelView } = useBooksManager();
const { sideBarBookKey } = useSidebarStore();
const { getConfig } = useBookDataStore();
const { parallelViews, setParallel, unsetParallel } = useParallelViewStore();
const viewSettings = getViewSettings(sideBarBookKey!);
const [isSortedTOC, setIsSortedTOC] = React.useState(viewSettings?.sortedTOC || false);
// Used purely to grey out "Clear Annotations" when there's nothing to
// clear. The actual delete + confirm dialog lives in Annotator (which
// outlives this dropdown menu, so the dialog isn't unmounted along
// with the menu when the user clicks the entry).
const annotationsToClear = React.useMemo(() => {
if (!sideBarBookKey) return 0;
const cfg = getConfig(sideBarBookKey);
if (!cfg?.booknotes) return 0;
return cfg.booknotes.filter((n) => n.type === 'annotation' && !n.deletedAt).length;
}, [sideBarBookKey, getConfig]);
const handleParallelView = (id: string) => {
openParallelView(id);
setIsDropdownOpen?.(false);
};
const handleReloadPage = () => {
window.location.reload();
setIsDropdownOpen?.(false);
};
const showAboutReadest = () => {
setAboutDialogVisible(true);
setIsDropdownOpen?.(false);
};
const downloadReadest = () => {
window.open(DOWNLOAD_READEST_URL, '_blank');
setIsDropdownOpen?.(false);
};
const handleExportAnnotations = () => {
eventDispatcher.dispatch('export-annotations', { bookKey: sideBarBookKey });
setIsDropdownOpen?.(false);
};
const handleImportAnnotations = () => {
eventDispatcher.dispatch('import-annotations', { bookKey: sideBarBookKey });
setIsDropdownOpen?.(false);
};
const handleToggleSortTOC = () => {
setIsSortedTOC((prev) => !prev);
setIsDropdownOpen?.(false);
if (sideBarBookKey) {
saveViewSettings(envConfig, sideBarBookKey, 'sortedTOC', !isSortedTOC, true, false).then(
() => {
recreateViewer(envConfig, sideBarBookKey);
},
);
}
};
const handleSetParallel = () => {
setParallel(bookKeys);
setIsDropdownOpen?.(false);
};
const handleUnsetParallel = () => {
unsetParallel(bookKeys);
setIsDropdownOpen?.(false);
};
const showProofreadRulesWindow = () => {
setProofreadRulesVisibility(true);
setIsDropdownOpen?.(false);
};
const handlePullKOSync = () => {
eventDispatcher.dispatch('pull-kosync', { bookKey: sideBarBookKey });
setIsDropdownOpen?.(false);
};
const handlePushKOSync = () => {
eventDispatcher.dispatch('push-kosync', { bookKey: sideBarBookKey });
setIsDropdownOpen?.(false);
};
const handlePushReadwise = () => {
eventDispatcher.dispatch('readwise-push-all', { bookKey: sideBarBookKey });
setIsDropdownOpen?.(false);
};
const handlePushHardcoverNotes = () => {
eventDispatcher.dispatch('hardcover-push-notes', { bookKey: sideBarBookKey });
setIsDropdownOpen?.(false);
};
const handlePushHardcoverProgress = () => {
eventDispatcher.dispatch('hardcover-push-progress', { bookKey: sideBarBookKey });
setIsDropdownOpen?.(false);
};
// Routed through Annotator (per-book, long-lived) so that the
// confirmation dialog isn't unmounted with the dropdown menu.
const handleClearAnnotations = () => {
eventDispatcher.dispatch('clear-annotations', { bookKey: sideBarBookKey });
setIsDropdownOpen?.(false);
};
return (
<Menu
className={clsx('book-menu dropdown-content z-20 shadow-2xl', menuClassName)}
onCancel={() => setIsDropdownOpen?.(false)}
>
<MenuItem
label={_('Parallel Read')}
buttonClass={bookKeys.length > 1 ? 'lg:tooltip lg:tooltip-bottom' : ''}
tooltip={parallelViews.length > 0 ? _('Disable') : _('Enable')}
Icon={parallelViews.length > 0 && bookKeys.length > 1 ? MdCheck : undefined}
>
<ul className='max-h-60 overflow-y-auto'>
{getVisibleLibrary()
.filter((book) => !FIXED_LAYOUT_FORMATS.has(book.format))
.filter((book) => !!book.downloadedAt)
.slice(0, 20)
.map((book) => (
<MenuItem
key={book.hash}
Icon={
<img
src={book.coverImageUrl!}
alt={book.title}
width={56}
height={80}
className='aspect-auto max-h-8 max-w-4 rounded-sm shadow-md'
onError={(e) => {
(e.target as HTMLImageElement).style.display = 'none';
}}
/>
}
label={book.title}
labelClass='max-w-36'
onClick={() => handleParallelView(book.hash)}
/>
))}
</ul>
</MenuItem>
{bookKeys.length > 1 &&
(parallelViews.length > 0 ? (
<MenuItem label={_('Exit Parallel Read')} onClick={handleUnsetParallel} />
) : (
<MenuItem label={_('Enter Parallel Read')} onClick={handleSetParallel} />
))}
{(settings.kosync.enabled || settings.readwise.enabled || settings.hardcover.enabled) && (
<hr aria-hidden='true' className='border-base-200 my-1' />
)}
{settings.kosync.enabled && (
<MenuItem label={_('KOReader Sync')} detailsOpen={false} buttonClass='py-2'>
<ul className='flex flex-col ps-1'>
<MenuItem label={_('Push Progress')} noIcon onClick={handlePushKOSync} />
<MenuItem label={_('Pull Progress')} noIcon onClick={handlePullKOSync} />
</ul>
</MenuItem>
)}
{settings.readwise.enabled && (
<MenuItem label={_('Readwise Sync')} detailsOpen={false} buttonClass='py-2'>
<ul className='flex flex-col ps-1'>
<MenuItem label={_('Push Highlights')} noIcon onClick={handlePushReadwise} />
</ul>
</MenuItem>
)}
{settings.hardcover.enabled && (
<MenuItem label={_('Hardcover Sync')} detailsOpen={false} buttonClass='py-2'>
<ul className='flex flex-col ps-1'>
<MenuItem label={_('Push Progress')} noIcon onClick={handlePushHardcoverProgress} />
<MenuItem label={_('Push Notes')} noIcon onClick={handlePushHardcoverNotes} />
</ul>
</MenuItem>
)}
<hr aria-hidden='true' className='border-base-200 my-1' />
<MenuItem label={_('Proofread')} onClick={showProofreadRulesWindow} />
<hr aria-hidden='true' className='border-base-200 my-1' />
<MenuItem label={_('Export Annotations')} onClick={handleExportAnnotations} />
<MenuItem label={_('Import Annotations')} onClick={handleImportAnnotations} />
<MenuItem
label={_('Clear Annotations')}
disabled={annotationsToClear === 0}
onClick={handleClearAnnotations}
/>
<MenuItem
label={_('Sort TOC by Page')}
Icon={isSortedTOC ? MdCheck : undefined}
onClick={handleToggleSortTOC}
/>
<MenuItem label={_('Reload Page')} shortcut='Shift+R' onClick={handleReloadPage} />
<hr aria-hidden='true' className='border-base-200 my-1' />
{isWebAppPlatform() && <MenuItem label={_('Download Readest')} onClick={downloadReadest} />}
<MenuItem label={_('About Readest')} onClick={showAboutReadest} />
</Menu>
);
};
export default BookMenu;