File size: 18,193 Bytes
4e1096a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 | import clsx from 'clsx';
import React, { useEffect, useState } from 'react';
import {
RiFolderOpenLine,
RiCheckboxCircleFill,
RiErrorWarningFill,
RiLoader2Line,
} from 'react-icons/ri';
import { documentDir, join } from '@tauri-apps/api/path';
import { relaunch } from '@tauri-apps/plugin-process';
import { useEnv } from '@/context/EnvContext';
import { useTranslation } from '@/hooks/useTranslation';
import { useSettingsStore } from '@/store/settingsStore';
import { revealItemInDir } from '@tauri-apps/plugin-opener';
import { DATA_SUBDIR } from '@/services/constants';
import { FileItem } from '@/types/system';
import { getDirPath } from '@/utils/path';
import { formatBytes } from '@/utils/book';
import { getOSPlatform } from '@/utils/misc';
import { getExternalSDCardPath } from '@/utils/bridge';
import { FILE_REVEAL_LABELS, FILE_REVEAL_PLATFORMS } from '@/utils/os';
import { requestStoragePermission } from '@/utils/permission';
import Dialog from '@/components/Dialog';
import Dropdown from '@/components/Dropdown';
import MenuItem from '@/components/MenuItem';
export const setMigrateDataDirDialogVisible = (visible: boolean) => {
const dialog = document.getElementById('migrate_data_dir_window');
if (dialog) {
const event = new CustomEvent('setDialogVisibility', {
detail: { visible },
});
dialog.dispatchEvent(event);
}
};
type MigrationStatus = 'idle' | 'selecting' | 'migrating' | 'completed' | 'error';
interface MigrationProgress {
current: number;
total: number;
currentFile?: string;
}
export const MigrateDataWindow = () => {
const _ = useTranslation();
const { appService, envConfig } = useEnv();
const { settings, setSettings, saveSettings } = useSettingsStore();
const [isOpen, setIsOpen] = useState(false);
const [currentDataDir, setCurrentDataDir] = useState('');
const [newDataDir, setNewDataDir] = useState('');
const [migrationStatus, setMigrationStatus] = useState<MigrationStatus>('idle');
const [migrationProgress, setMigrationProgress] = useState<MigrationProgress>({
current: 0,
total: 0,
});
const [errorMessage, setErrorMessage] = useState('');
const [filesToMigrate, setFilesToMigrate] = useState<FileItem[]>([]);
const [currentDirFileCount, setCurrentDirFileCount] = useState('');
const [currentDirFileSize, setCurrentDirFileSize] = useState(0);
const [androidNewDirs, setAndroidNewDirs] = useState<{ path: string; label: string }[]>([]);
useEffect(() => {
const handleCustomEvent = (event: CustomEvent) => {
setIsOpen(event.detail.visible);
if (event.detail.visible) {
loadCurrentDataDir();
loadAndroidDirs();
}
};
const el = document.getElementById('migrate_data_dir_window');
if (el) {
el.addEventListener('setDialogVisibility', handleCustomEvent as EventListener);
}
return () => {
if (el) {
el.removeEventListener('setDialogVisibility', handleCustomEvent as EventListener);
}
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
const loadCurrentDataDir = async () => {
try {
if (!appService) return;
const dataDir = await appService.resolveFilePath('', 'Data');
setCurrentDataDir(dataDir);
const files = await appService.readDirectory(dataDir, 'None');
setFilesToMigrate(files);
setCurrentDirFileCount(files.length.toLocaleString());
setCurrentDirFileSize(files.reduce((acc, file) => acc + file.size, 0));
} catch (error) {
console.error('Error loading current data directory:', error);
}
};
const loadAndroidDirs = async () => {
try {
if (appService?.isAndroidApp) {
const sdCardPathResponse = await getExternalSDCardPath();
let sdcardDirs = [
{ path: '/storage/emulated/0', label: '/sdcard/0' },
{ path: '/storage/emulated/0/Books', label: '/sdcard/0/Books' },
{ path: '/storage/emulated/0/Documents', label: '/sdcard/0/Documents' },
{ path: '/storage/emulated/0/Download', label: '/sdcard/0/Download' },
];
if (sdCardPathResponse.path) {
const externalSdCardPath = sdCardPathResponse.path;
sdcardDirs = [
...sdcardDirs,
{ path: externalSdCardPath, label: '/sdcard/1' },
{ path: `${externalSdCardPath}/Books`, label: '/sdcard/1/Books' },
{ path: `${externalSdCardPath}/Documents`, label: '/sdcard/1/Documents' },
{ path: `${externalSdCardPath}/Download`, label: '/sdcard/1/Download' },
];
}
const localDocumentDir = await documentDir();
setAndroidNewDirs([
// For Google Play version we won't request permission to access root of /sdcard
...(appService?.distChannel === 'playstore' ? [] : sdcardDirs),
{ path: localDocumentDir, label: '/sdcard/APPDATA/Documents' },
]);
}
} catch (error) {
console.error('Error loading app local data directory:', error);
}
};
const handleSelectNewDir = async () => {
setMigrationStatus('selecting');
setErrorMessage('');
try {
const selectedDir = await appService?.selectDirectory?.('write');
if (selectedDir) {
const newDataDir = await join(selectedDir, DATA_SUBDIR);
await appService?.createDir(newDataDir, 'None', true);
setNewDataDir(newDataDir);
setMigrationStatus('idle');
} else {
setMigrationStatus('idle');
}
} catch (error) {
console.error('Error selecting directory:', error);
setErrorMessage(_('Failed to select directory'));
setMigrationStatus('error');
}
};
const handleSelectedNewDir = async (dir: string) => {
setErrorMessage('');
if (!dir.includes('Android/data')) {
if (!(await requestStoragePermission())) return;
}
try {
const newDataDir = await join(dir, DATA_SUBDIR);
await appService?.createDir(newDataDir, 'None', true);
setNewDataDir(newDataDir);
setMigrationStatus('idle');
} catch (error) {
console.error('Error selecting directory:', error);
setErrorMessage(_('Failed to select directory'));
setMigrationStatus('error');
}
};
const handleStartMigration = async () => {
if (!appService || !currentDataDir || !newDataDir || !filesToMigrate.length) return;
setMigrationStatus('migrating');
setErrorMessage('');
setMigrationProgress({ current: 0, total: 0 });
try {
if (newDataDir === currentDataDir) {
throw new Error(_('The new data directory must be different from the current one.'));
}
// Copy all files to new location
for (let i = 0; i < filesToMigrate.length; i++) {
const file = filesToMigrate[i]!;
setMigrationProgress({
current: i + 1,
total: filesToMigrate.length,
currentFile: file.path,
});
const srcPath = await join(currentDataDir, file.path);
const destPath = await join(newDataDir, file.path);
await appService.copyFile(srcPath, destPath, 'None');
}
// Verify all files copied
const filesMigrated = await appService.readDirectory(newDataDir, 'None');
for (const file of filesToMigrate) {
if (!filesMigrated.find((f) => f.path === file.path && f.size === file.size)) {
throw new Error(`File ${file.path} failed to copy.`);
}
}
// Delete old data directory
await appService.deleteDir(currentDataDir, 'None', true);
// Update settings for new data directory
const customRootDir = getDirPath(newDataDir);
await appService.setCustomRootDir(customRootDir);
settings.customRootDir = customRootDir;
settings.localBooksDir = await appService.resolveFilePath('', 'Books');
setSettings({ ...settings });
await saveSettings(envConfig, settings);
// Finalize migration
setMigrationStatus('completed');
setCurrentDataDir(newDataDir);
setFilesToMigrate([]);
setCurrentDirFileCount('');
setCurrentDirFileSize(0);
loadCurrentDataDir();
} catch (error) {
console.error('Error migrating data:', error);
setErrorMessage(_('Migration failed: {{error}}', { error: error || 'Unknown error' }));
setMigrationStatus('error');
}
};
const handleClose = () => {
if (migrationStatus === 'migrating') {
return;
}
setIsOpen(false);
setNewDataDir('');
setMigrationStatus('idle');
setErrorMessage('');
setMigrationProgress({ current: 0, total: 0 });
};
const handleRestartApp = () => {
relaunch();
};
const handleRevealDir = (dataDir: string) => {
if (dataDir && appService?.isDesktopApp) {
revealItemInDir(dataDir);
}
};
const progressPercentage =
migrationProgress.total > 0
? Math.round((migrationProgress.current / migrationProgress.total) * 100)
: 0;
const canStartMigration =
newDataDir && newDataDir !== currentDataDir && migrationStatus === 'idle';
const osPlatform = getOSPlatform();
const fileRevealLabel =
FILE_REVEAL_LABELS[osPlatform as FILE_REVEAL_PLATFORMS] || FILE_REVEAL_LABELS.default;
return (
<Dialog
id='migrate_data_dir_window'
isOpen={isOpen}
title={_('Change Data Location')}
onClose={handleClose}
boxClassName='sm:!w-[520px] sm:!max-w-screen-sm sm:h-auto'
>
{isOpen && (
<div className='migrate-data-dir-content flex flex-col gap-6 px-6 py-4'>
{/* Current Data Directory */}
<div className='space-y-2'>
<h3 className='text-base-content text-sm font-semibold'>
{_('Current Data Location')}
</h3>
<button
title={_(fileRevealLabel)}
className='bg-base-200 flex w-full items-center gap-2 rounded-lg p-3'
onClick={() => handleRevealDir(currentDataDir)}
>
<RiFolderOpenLine className='text-base-content/70 h-4 w-4 flex-shrink-0' />
<span className='text-base-content/80 break-all text-start font-mono text-sm'>
{currentDataDir || _('Loading...')}
</span>
</button>
{currentDirFileCount ? (
<div className='flex space-x-4'>
<p className='text-base-content/60 text-xs'>
{_('File count: {{size}}', { size: currentDirFileCount })}
</p>
<p className='text-base-content/60 text-xs'>
{_('Total size: {{size}}', { size: formatBytes(currentDirFileSize) })}
</p>
</div>
) : (
<p className='text-base-content/60 text-xs'>{_('Calculating file info...')}</p>
)}
</div>
{/* New Data Directory Selection */}
<div className='space-y-3'>
<h3 className='text-base-content text-sm font-semibold'>{_('New Data Location')}</h3>
{newDataDir && (
<button
title={_(fileRevealLabel)}
className='bg-primary/10 border-primary/20 flex w-full items-center gap-2 rounded-lg border p-3'
onClick={() => handleRevealDir(newDataDir)}
>
<RiFolderOpenLine className='text-primary h-4 w-4 flex-shrink-0' />
<span className='text-primary break-all text-start font-mono text-sm'>
{newDataDir}
</span>
</button>
)}
{appService?.isAndroidApp ? (
<Dropdown
label={_('Choose New Folder')}
className='dropdown-bottom flex w-full justify-center'
buttonClassName='btn btn-ghost btn-outline w-full'
toggleButton={
<div>{newDataDir ? _('Choose Different Folder') : _('Choose New Folder')}</div>
}
>
<div
className={clsx(
'folder-menu dropdown-content no-triangle left-0',
'border-base-300 !bg-base-200 z-20 mt-1 max-w-[90vw] shadow-2xl',
)}
>
{androidNewDirs.map((dir) => (
<MenuItem
key={dir.path}
toggled={newDataDir.split(`/${DATA_SUBDIR}`)[0] === dir.path}
transient
label={dir.label}
onClick={() => handleSelectedNewDir(dir.path)}
/>
))}
</div>
</Dropdown>
) : (
<button
className='btn btn-outline btn-sm w-full'
onClick={handleSelectNewDir}
disabled={migrationStatus === 'migrating' || migrationStatus === 'selecting'}
>
{migrationStatus === 'selecting' && (
<RiLoader2Line className='h-4 w-4 animate-spin' />
)}
{newDataDir ? _('Choose Different Folder') : _('Choose New Folder')}
</button>
)}
</div>
{/* Migration Progress */}
{migrationStatus === 'migrating' && (
<div className='space-y-3'>
<div className='flex items-center gap-2'>
<RiLoader2Line className='text-primary h-4 w-4 animate-spin' />
<span className='text-base-content text-sm font-medium'>
{_('Migrating data...')}
</span>
<span className='text-base-content/70 text-sm'>{progressPercentage}%</span>
</div>
<div className='bg-base-200 h-2 w-full rounded-full'>
<div
className='bg-primary h-2 rounded-full transition-all duration-300'
style={{ width: `${progressPercentage}%` }}
/>
</div>
{migrationProgress.currentFile && (
<p
className='text-base-content/60 overflow-hidden font-mono text-xs'
style={{
direction: 'rtl',
textAlign: 'left',
whiteSpace: 'nowrap',
textOverflow: 'ellipsis',
}}
>
{_('Copying: {{file}}', { file: migrationProgress.currentFile })}
</p>
)}
<p className='text-base-content/60 text-xs'>
{_('{{current}} of {{total}} files', {
current: migrationProgress.current.toLocaleString(),
total: migrationProgress.total.toLocaleString(),
})}
</p>
</div>
)}
{/* Success State */}
{migrationStatus === 'completed' && (
<div className='space-y-3'>
<div className='text-success flex items-center gap-2'>
<RiCheckboxCircleFill className='h-5 w-5' />
<span className='font-medium'>{_('Migration completed successfully!')}</span>
</div>
<div className='bg-success/10 border-success/20 rounded-lg border p-3'>
<p className='text-success/80 text-sm'>
{_(
'Your data has been moved to the new location. Please restart the application to complete the process.',
)}
</p>
</div>
</div>
)}
{/* Error State */}
{migrationStatus === 'error' && errorMessage && (
<div className='space-y-2'>
<div className='text-error flex items-center gap-2'>
<RiErrorWarningFill className='h-5 w-5' />
<span className='font-medium'>{_('Migration failed')}</span>
</div>
<div className='bg-error/10 border-error/20 rounded-lg border p-3'>
<p className='text-error/80 break-all text-sm'>{errorMessage}</p>
</div>
</div>
)}
{/* Warning */}
{canStartMigration && (
<div className='bg-warning/10 border-warning/20 rounded-lg border p-3'>
<div className='flex items-start gap-2'>
<RiErrorWarningFill className='text-warning mt-0.5 h-4 w-4 flex-shrink-0' />
<div className='space-y-1'>
<p className='text-base-content text-sm font-medium'>{_('Important Notice')}</p>
<p className='text-base-content/80 text-sm'>
{_(
'This will move all your app data to the new location. Make sure the destination has enough free space.',
)}
</p>
</div>
</div>
</div>
)}
{/* Action Buttons */}
<div className='flex gap-3 pt-2'>
{migrationStatus === 'completed' ? (
<>
<button className='btn btn-outline flex-1' onClick={handleClose}>
{_('Close')}
</button>
<button className='btn btn-primary flex-1' onClick={handleRestartApp}>
{_('Restart App')}
</button>
</>
) : (
<>
<button
className='btn btn-outline flex-1'
onClick={handleClose}
disabled={migrationStatus === 'migrating'}
>
{_('Cancel')}
</button>
<button
className='btn btn-primary flex-1'
onClick={handleStartMigration}
disabled={!canStartMigration || migrationStatus !== 'idle'}
>
{migrationStatus === 'migrating' && (
<RiLoader2Line className='h-4 w-4 animate-spin' />
)}
{_('Start Migration')}
</button>
</>
)}
</div>
</div>
)}
</Dialog>
);
};
|