- Deleted redundant components (`AddActionButton`, `AlertBox`, `AlertStack`, `BackButton`, `CancelButton`, and `CollapsableArea`) and related files. - Removed unused models (`Book`, `BookSerie`, `BookTables`, `Character`, and `Chapter`) to reduce codebase clutter. - Updated project structure and references to reflect these removals.
116 lines
4.0 KiB
TypeScript
116 lines
4.0 KiB
TypeScript
import {Cloud, CloudDownload, CloudUpload, Loader2} from "lucide-react";
|
|
import {useTranslations} from "@/lib/i18n";
|
|
import {useState, useEffect, useContext} from "react";
|
|
import OfflineContext, {OfflineContextType} from "@/context/OfflineContext";
|
|
import {SyncType} from "@/context/BooksSyncContext";
|
|
import useSyncBooks from "@/hooks/useSyncBooks";
|
|
import IconButton from "@/components/ui/IconButton";
|
|
|
|
interface SyncBookProps {
|
|
bookId: string;
|
|
status: SyncType;
|
|
}
|
|
|
|
export default function SyncBook({bookId, status}: SyncBookProps) {
|
|
const t = useTranslations();
|
|
const {isCurrentlyOffline} = useContext<OfflineContextType>(OfflineContext);
|
|
const [isLoading, setIsLoading] = useState<boolean>(false);
|
|
const [currentStatus, setCurrentStatus] = useState<SyncType>(status);
|
|
const {upload: hookUpload, download: hookDownload, syncFromServer: hookSyncFromServer, syncToServer: hookSyncToServer} = useSyncBooks();
|
|
|
|
useEffect((): void => {
|
|
setCurrentStatus(status);
|
|
}, [status]);
|
|
|
|
const isOffline: boolean = isCurrentlyOffline();
|
|
|
|
async function upload(): Promise<void> {
|
|
if (isOffline) return;
|
|
setIsLoading(true);
|
|
const success: boolean = await hookUpload(bookId);
|
|
if (success) setCurrentStatus('synced');
|
|
setIsLoading(false);
|
|
}
|
|
|
|
async function download(): Promise<void> {
|
|
if (isOffline) return;
|
|
setIsLoading(true);
|
|
const success = await hookDownload(bookId);
|
|
if (success) setCurrentStatus('synced');
|
|
setIsLoading(false);
|
|
}
|
|
|
|
async function syncFromServer(): Promise<void> {
|
|
if (isOffline) return;
|
|
setIsLoading(true);
|
|
const success = await hookSyncFromServer(bookId);
|
|
if (success) setCurrentStatus('synced');
|
|
setIsLoading(false);
|
|
}
|
|
|
|
async function syncToServer(): Promise<void> {
|
|
if (isOffline) return;
|
|
setIsLoading(true);
|
|
const success = await hookSyncToServer(bookId);
|
|
if (success) setCurrentStatus('synced');
|
|
setIsLoading(false);
|
|
}
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
<Loader2 className="w-4 h-4 text-primary animate-spin"/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex items-center gap-2">
|
|
{currentStatus === 'synced' && (
|
|
<Cloud className="w-4 h-4 text-gray-light" title={t("bookCard.synced")}/>
|
|
)}
|
|
|
|
{currentStatus === 'local-only' && (
|
|
<IconButton
|
|
icon={CloudUpload}
|
|
variant={isOffline ? 'muted' : 'primary'}
|
|
size="sm"
|
|
onClick={upload}
|
|
disabled={isOffline}
|
|
tooltip={t("bookCard.localOnly")}
|
|
/>
|
|
)}
|
|
{currentStatus === 'server-only' && (
|
|
<IconButton
|
|
icon={CloudDownload}
|
|
variant={isOffline ? 'muted' : 'primary'}
|
|
size="sm"
|
|
onClick={download}
|
|
disabled={isOffline}
|
|
tooltip={t("bookCard.serverOnly")}
|
|
/>
|
|
)}
|
|
{currentStatus === 'to-sync-from-server' && (
|
|
<IconButton
|
|
icon={CloudDownload}
|
|
variant={isOffline ? 'muted' : 'primary'}
|
|
size="sm"
|
|
onClick={syncFromServer}
|
|
disabled={isOffline}
|
|
tooltip={t("bookCard.toSyncFromServer")}
|
|
/>
|
|
)}
|
|
{currentStatus === 'to-sync-to-server' && (
|
|
<IconButton
|
|
icon={CloudUpload}
|
|
variant={isOffline ? 'muted' : 'primary'}
|
|
size="sm"
|
|
onClick={syncToServer}
|
|
disabled={isOffline}
|
|
tooltip={t("bookCard.toSyncToServer")}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|