| import { useCallback, useEffect, useRef } from 'react'; |
| import { useAuth } from '@/context/AuthContext'; |
| import { useSync } from '@/hooks/useSync'; |
| import { BookConfig, FIXED_LAYOUT_FORMATS } from '@/types/book'; |
| import { useBookDataStore } from '@/store/bookDataStore'; |
| import { useReaderStore } from '@/store/readerStore'; |
| import { useSettingsStore } from '@/store/settingsStore'; |
| import { useTranslation } from '@/hooks/useTranslation'; |
| import { serializeConfig } from '@/utils/serializer'; |
| import { CFI } from '@/libs/document'; |
| import { debounce } from '@/utils/debounce'; |
| import { eventDispatcher } from '@/utils/event'; |
| import { DEFAULT_BOOK_SEARCH_CONFIG, SYNC_PROGRESS_INTERVAL_SEC } from '@/services/constants'; |
| import { getCFIFromXPointer, getXPointerFromCFI, normalizeProgressXPointer } from '@/utils/xcfi'; |
|
|
| export const useProgressSync = (bookKey: string) => { |
| const _ = useTranslation(); |
| const { getConfig, setConfig, getBookData } = useBookDataStore(); |
| const { getView, getProgress, setHoveredBookKey } = useReaderStore(); |
| const { settings } = useSettingsStore(); |
| const { syncedConfigs, syncConfigs } = useSync(bookKey); |
| const { user } = useAuth(); |
| const progress = getProgress(bookKey); |
|
|
| const configPulled = useRef(false); |
| const hasPulledConfigOnce = useRef(false); |
|
|
| const pushConfig = async (bookKey: string, config: BookConfig | null) => { |
| const book = getBookData(bookKey)?.book; |
| if (!config || !book || !user) return; |
| const bookHash = bookKey.split('-')[0]!; |
| const metaHash = book.metaHash; |
| const newConfig = { ...config, bookHash, metaHash }; |
| const compressedConfig = JSON.parse( |
| serializeConfig(newConfig, settings.globalViewSettings, DEFAULT_BOOK_SEARCH_CONFIG), |
| ); |
| delete compressedConfig.booknotes; |
| await syncConfigs([compressedConfig], bookHash, metaHash, 'push'); |
| }; |
|
|
| const pullConfig = async (bookKey: string) => { |
| const book = getBookData(bookKey)?.book; |
| if (!user || !book) return; |
| const bookHash = bookKey.split('-')[0]!; |
| const metaHash = book.metaHash; |
| await syncConfigs([], bookHash, metaHash, 'pull'); |
| }; |
|
|
| const syncConfig = async () => { |
| if (!configPulled.current) { |
| pullConfig(bookKey); |
| } else { |
| const config = getConfig(bookKey); |
| const view = getView(bookKey); |
| const book = getBookData(bookKey)?.book; |
| if (config && view && book && config.progress && config.progress[0] > 0) { |
| try { |
| const content = view.renderer.getContents()[0]; |
| if (content && !FIXED_LAYOUT_FORMATS.has(book.format)) { |
| const { doc, index } = content; |
| const xpointerResult = await getXPointerFromCFI(config.location!, doc, index || 0); |
| config.xpointer = normalizeProgressXPointer(xpointerResult.xpointer); |
| } |
| } catch (error) { |
| console.warn('Failed to convert CFI to XPointer', error); |
| } |
| pushConfig(bookKey, config); |
| } |
| } |
| }; |
|
|
| const handleSyncBookProgress = async (event: CustomEvent) => { |
| const { bookKey: syncBookKey } = event.detail; |
| if (syncBookKey === bookKey) { |
| configPulled.current = false; |
| await pullConfig(bookKey); |
| } |
| }; |
|
|
| |
| useEffect(() => { |
| eventDispatcher.on('sync-book-progress', handleSyncBookProgress); |
| return () => { |
| eventDispatcher.off('sync-book-progress', handleSyncBookProgress); |
| }; |
| |
| }, [bookKey]); |
|
|
| |
| const handleAutoSync = useCallback( |
| debounce(() => { |
| syncConfig(); |
| }, SYNC_PROGRESS_INTERVAL_SEC * 1000), |
| [], |
| ); |
|
|
| |
| useEffect(() => { |
| if (!progress?.location || !user) return; |
| handleAutoSync(); |
| |
| }, [progress?.location]); |
|
|
| |
| useEffect(() => { |
| if (!progress || hasPulledConfigOnce.current) return; |
| hasPulledConfigOnce.current = true; |
| pullConfig(bookKey); |
| |
| }, [progress]); |
|
|
| const applyRemoteProgress = async (syncedConfigs: BookConfig[]) => { |
| const config = getConfig(bookKey); |
| const book = getBookData(bookKey)?.book; |
| if (!syncedConfigs || syncedConfigs.length === 0 || !config || !book) return; |
|
|
| const bookHash = bookKey.split('-')[0]!; |
| const metaHash = book.metaHash; |
| const syncedConfig = syncedConfigs.filter( |
| (c) => c.bookHash === bookHash || c.metaHash === metaHash, |
| )[0]; |
| if (syncedConfig) { |
| const configCFI = config?.location; |
| let remoteCFILocation = syncedConfig.location; |
| const xPointer = syncedConfig.xpointer; |
| const bookData = getBookData(bookKey); |
| const view = getView(bookKey); |
| if (xPointer && view && bookData && bookData.bookDoc) { |
| const content = view.renderer.getContents()[0]; |
| const koProgress = normalizeProgressXPointer(xPointer); |
| const candidateCFI = await getCFIFromXPointer( |
| koProgress, |
| content?.doc, |
| content?.index, |
| bookData.bookDoc, |
| ); |
| if (!remoteCFILocation || CFI.compare(remoteCFILocation, candidateCFI) < 0) { |
| remoteCFILocation = candidateCFI; |
| } |
| } |
| const filteredSyncedConfig = Object.fromEntries( |
| Object.entries(syncedConfig).filter(([_, value]) => value !== null && value !== undefined), |
| ); |
| if (syncedConfig.updatedAt >= config.updatedAt) { |
| setConfig(bookKey, { ...config, ...filteredSyncedConfig }); |
| } else { |
| setConfig(bookKey, { ...filteredSyncedConfig, ...config }); |
| } |
| if (remoteCFILocation && configCFI) { |
| if (CFI.compare(configCFI, remoteCFILocation) < 0) { |
| if (view) { |
| view.goTo(remoteCFILocation); |
| setHoveredBookKey(null); |
| eventDispatcher.dispatch('hint', { |
| bookKey, |
| message: _('Reading Progress Synced'), |
| }); |
| } |
| } |
| } |
| } |
| }; |
|
|
| |
| useEffect(() => { |
| if (!configPulled.current && syncedConfigs) { |
| configPulled.current = true; |
| applyRemoteProgress(syncedConfigs).catch((error) => { |
| console.error('Failed to apply remote progress', error); |
| }); |
| } |
| |
| }, [syncedConfigs]); |
| }; |
|
|