Resolved conflicts by combining features from both branches: - Kept AI summarization features (ai package, SummarizeButton/Modal, summaries table) - Added document ID mapping and SHA-256 based IDs from main - Added resolveDocumentId and router navigation for URL redirects - Combined PDFViewer document state tracking with highlight timeout helpers Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1166 lines
59 KiB
TypeScript
1166 lines
59 KiB
TypeScript
'use client';
|
|
|
|
import { Fragment, useState, useEffect, useCallback, useMemo } from 'react';
|
|
import {
|
|
Dialog,
|
|
DialogPanel,
|
|
DialogTitle,
|
|
Transition,
|
|
TransitionChild,
|
|
Listbox,
|
|
ListboxButton,
|
|
ListboxOptions,
|
|
ListboxOption,
|
|
Button,
|
|
Input,
|
|
TabGroup,
|
|
TabList,
|
|
Tab,
|
|
TabPanels,
|
|
TabPanel,
|
|
} from '@headlessui/react';
|
|
import { useTheme } from '@/contexts/ThemeContext';
|
|
import { useConfig } from '@/contexts/ConfigContext';
|
|
import { ChevronUpDownIcon, CheckIcon, SettingsIcon } from '@/components/icons/Icons';
|
|
import { syncSelectedDocumentsToServer, loadSelectedDocumentsFromServer, importSelectedDocuments, getFirstVisit, setFirstVisit, getAllPdfDocuments, getAllEpubDocuments, getAllHtmlDocuments } from '@/lib/dexie';
|
|
import { useDocuments } from '@/contexts/DocumentContext';
|
|
import { ConfirmDialog } from '@/components/ConfirmDialog';
|
|
import { ProgressPopup } from '@/components/ProgressPopup';
|
|
import { useTimeEstimation } from '@/hooks/useTimeEstimation';
|
|
import { THEMES } from '@/contexts/ThemeContext';
|
|
import { deleteServerDocuments } from '@/lib/client';
|
|
import { DocumentSelectionModal } from '@/components/DocumentSelectionModal';
|
|
import { BaseDocument } from '@/types/documents';
|
|
|
|
const isDev = process.env.NEXT_PUBLIC_NODE_ENV !== 'production' || process.env.NODE_ENV == null;
|
|
|
|
const themes = THEMES.map(id => ({
|
|
id,
|
|
name: id.charAt(0).toUpperCase() + id.slice(1)
|
|
}));
|
|
|
|
export function SettingsModal() {
|
|
const [isOpen, setIsOpen] = useState(false);
|
|
|
|
const { theme, setTheme } = useTheme();
|
|
const { apiKey, baseUrl, ttsProvider, ttsModel, ttsInstructions, updateConfig, updateConfigKey, summaryProvider, summaryModel, summaryApiKey, summaryBaseUrl, summaryContextLimit } = useConfig();
|
|
const { clearPDFs, clearEPUBs, clearHTML } = useDocuments();
|
|
const [localApiKey, setLocalApiKey] = useState(apiKey);
|
|
const [localBaseUrl, setLocalBaseUrl] = useState(baseUrl);
|
|
const [localTTSProvider, setLocalTTSProvider] = useState(ttsProvider);
|
|
const [modelValue, setModelValue] = useState(ttsModel);
|
|
const [customModelInput, setCustomModelInput] = useState('');
|
|
const [localTTSInstructions, setLocalTTSInstructions] = useState(ttsInstructions);
|
|
// Summary settings state
|
|
const [localSummaryProvider, setLocalSummaryProvider] = useState(summaryProvider);
|
|
const [localSummaryModel, setLocalSummaryModel] = useState(summaryModel);
|
|
const [localSummaryApiKey, setLocalSummaryApiKey] = useState(summaryApiKey);
|
|
const [localSummaryBaseUrl, setLocalSummaryBaseUrl] = useState(summaryBaseUrl);
|
|
const [localSummaryContextLimit, setLocalSummaryContextLimit] = useState(summaryContextLimit);
|
|
|
|
// Context limit options
|
|
const contextLimitOptions = useMemo(() => [
|
|
{ id: 4096, name: '4K tokens' },
|
|
{ id: 8192, name: '8K tokens' },
|
|
{ id: 16384, name: '16K tokens' },
|
|
{ id: 32768, name: '32K tokens' },
|
|
{ id: 65536, name: '64K tokens' },
|
|
{ id: 131072, name: '128K tokens' },
|
|
{ id: 200000, name: '200K tokens' },
|
|
], []);
|
|
const [isSyncing, setIsSyncing] = useState(false);
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
const [isImportingLibrary, setIsImportingLibrary] = useState(false);
|
|
const [isSelectionModalOpen, setIsSelectionModalOpen] = useState(false);
|
|
const [selectionModalProps, setSelectionModalProps] = useState<{
|
|
title: string;
|
|
confirmLabel: string;
|
|
mode: 'library' | 'load' | 'save';
|
|
defaultSelected: boolean;
|
|
initialFiles?: BaseDocument[];
|
|
fetcher?: () => Promise<BaseDocument[]>;
|
|
}>({
|
|
title: '',
|
|
confirmLabel: '',
|
|
mode: 'library',
|
|
defaultSelected: false
|
|
});
|
|
|
|
const [showProgress, setShowProgress] = useState(false);
|
|
const [statusMessage, setStatusMessage] = useState('');
|
|
const [operationType, setOperationType] = useState<'sync' | 'load' | 'library'>('sync');
|
|
const [abortController, setAbortController] = useState<AbortController | null>(null);
|
|
const selectedTheme = themes.find(t => t.id === theme) || themes[0];
|
|
const [showClearLocalConfirm, setShowClearLocalConfirm] = useState(false);
|
|
const [showClearServerConfirm, setShowClearServerConfirm] = useState(false);
|
|
const { progress, setProgress, estimatedTimeRemaining } = useTimeEstimation();
|
|
|
|
const ttsProviders = useMemo(() => [
|
|
{ id: 'custom-openai', name: 'Custom OpenAI-Like' },
|
|
{ id: 'deepinfra', name: 'Deepinfra' },
|
|
{ id: 'groq', name: 'Groq' },
|
|
{ id: 'openai', name: 'OpenAI' }
|
|
], []);
|
|
|
|
const ttsModels = useMemo(() => {
|
|
switch (localTTSProvider) {
|
|
case 'openai':
|
|
return [
|
|
{ id: 'tts-1', name: 'TTS-1' },
|
|
{ id: 'tts-1-hd', name: 'TTS-1 HD' },
|
|
{ id: 'gpt-4o-mini-tts', name: 'GPT-4o Mini TTS' }
|
|
];
|
|
case 'custom-openai':
|
|
return [
|
|
{ id: 'kokoro', name: 'Kokoro' },
|
|
{ id: 'orpheus', name: 'Orpheus' },
|
|
{ id: 'custom', name: 'Other' }
|
|
];
|
|
case 'deepinfra':
|
|
// In production without an API key, limit to free tier model
|
|
if (!isDev && !localApiKey) {
|
|
return [
|
|
{ id: 'hexgrad/Kokoro-82M', name: 'hexgrad/Kokoro-82M' }
|
|
];
|
|
}
|
|
// In dev or with an API key, allow all models
|
|
return [
|
|
{ id: 'hexgrad/Kokoro-82M', name: 'hexgrad/Kokoro-82M' },
|
|
{ id: 'canopylabs/orpheus-3b-0.1-ft', name: 'canopylabs/orpheus-3b-0.1-ft' },
|
|
{ id: 'sesame/csm-1b', name: 'sesame/csm-1b' },
|
|
{ id: 'ResembleAI/chatterbox', name: 'ResembleAI/chatterbox' },
|
|
{ id: 'Zyphra/Zonos-v0.1-hybrid', name: 'Zyphra/Zonos-v0.1-hybrid' },
|
|
{ id: 'Zyphra/Zonos-v0.1-transformer', name: 'Zyphra/Zonos-v0.1-transformer' },
|
|
{ id: 'custom', name: 'Other' }
|
|
];
|
|
case 'groq':
|
|
return [
|
|
{ id: 'canopylabs/orpheus-v1-english', name: 'Orpheus English' },
|
|
{ id: 'canopylabs/orpheus-arabic-saudi', name: 'Orpheus Arabic (Saudi)' },
|
|
];
|
|
default:
|
|
return [
|
|
{ id: 'tts-1', name: 'TTS-1' }
|
|
];
|
|
}
|
|
}, [localTTSProvider, localApiKey]);
|
|
|
|
const supportsCustom = useMemo(() => localTTSProvider !== 'openai', [localTTSProvider]);
|
|
|
|
// Summary provider and model options
|
|
const summaryProviders = useMemo(() => [
|
|
{ id: 'openai', name: 'OpenAI' },
|
|
{ id: 'anthropic', name: 'Anthropic' },
|
|
{ id: 'groq', name: 'Groq' },
|
|
{ id: 'openrouter', name: 'OpenRouter' },
|
|
{ id: 'custom-openai', name: 'Custom OpenAI-Like' },
|
|
], []);
|
|
|
|
const summaryModels = useMemo(() => {
|
|
switch (localSummaryProvider) {
|
|
case 'openai':
|
|
return [
|
|
{ id: 'gpt-4o-mini', name: 'GPT-4o Mini' },
|
|
{ id: 'gpt-4o', name: 'GPT-4o' },
|
|
{ id: 'gpt-4-turbo', name: 'GPT-4 Turbo' },
|
|
];
|
|
case 'anthropic':
|
|
return [
|
|
{ id: 'claude-3-5-haiku-latest', name: 'Claude 3.5 Haiku' },
|
|
{ id: 'claude-3-5-sonnet-latest', name: 'Claude 3.5 Sonnet' },
|
|
{ id: 'claude-sonnet-4-20250514', name: 'Claude Sonnet 4' },
|
|
];
|
|
case 'groq':
|
|
return [
|
|
{ id: 'llama-3.3-70b-versatile', name: 'Llama 3.3 70B' },
|
|
{ id: 'meta-llama/llama-4-maverick-17b-128e-instruct', name: 'Llama 4 Maverick 17B' },
|
|
{ id: 'meta-llama/llama-4-scout-17b-16e-instruct', name: 'Llama 4 Scout 17B' },
|
|
{ id: 'qwen/qwen3-32b', name: 'Qwen3 32B' },
|
|
{ id: 'openai/gpt-oss-120b', name: 'GPT-OSS 120B' },
|
|
{ id: 'moonshotai/kimi-k2-instruct', name: 'Kimi K2' },
|
|
{ id: 'llama-3.1-8b-instant', name: 'Llama 3.1 8B Instant' },
|
|
{ id: 'groq/compound', name: 'Compound' },
|
|
];
|
|
case 'openrouter':
|
|
return [
|
|
{ id: 'google/gemini-2.0-flash-001', name: 'Gemini 2.0 Flash' },
|
|
{ id: 'meta-llama/llama-3.3-70b-instruct', name: 'Llama 3.3 70B' },
|
|
{ id: 'anthropic/claude-3.5-haiku', name: 'Claude 3.5 Haiku' },
|
|
{ id: 'openai/gpt-4o-mini', name: 'GPT-4o Mini' },
|
|
{ id: 'mistralai/mistral-small-24b-instruct-2501', name: 'Mistral Small 24B' },
|
|
];
|
|
case 'custom-openai':
|
|
return [
|
|
{ id: 'custom', name: 'Custom Model' },
|
|
];
|
|
default:
|
|
return [
|
|
{ id: 'gpt-4o-mini', name: 'GPT-4o Mini' },
|
|
];
|
|
}
|
|
}, [localSummaryProvider]);
|
|
|
|
const selectedModelId = useMemo(
|
|
() => {
|
|
const isPreset = ttsModels.some(m => m.id === modelValue);
|
|
if (isPreset) return modelValue;
|
|
return supportsCustom ? 'custom' : (ttsModels[0]?.id ?? '');
|
|
},
|
|
[ttsModels, modelValue, supportsCustom]
|
|
);
|
|
|
|
const canSubmit = useMemo(
|
|
() => selectedModelId !== 'custom' || (supportsCustom && customModelInput.trim().length > 0),
|
|
[selectedModelId, supportsCustom, customModelInput]
|
|
);
|
|
|
|
// set firstVisit on initial load
|
|
const checkFirstVist = useCallback(async () => {
|
|
if (!isDev) return;
|
|
const firstVisit = await getFirstVisit();
|
|
if (!firstVisit) {
|
|
await setFirstVisit(true);
|
|
setIsOpen(true);
|
|
}
|
|
}, [setIsOpen]);
|
|
|
|
useEffect(() => {
|
|
checkFirstVist();
|
|
setLocalApiKey(apiKey);
|
|
setLocalBaseUrl(baseUrl);
|
|
setLocalTTSProvider(ttsProvider);
|
|
setModelValue(ttsModel);
|
|
setLocalTTSInstructions(ttsInstructions);
|
|
setLocalSummaryProvider(summaryProvider);
|
|
setLocalSummaryModel(summaryModel);
|
|
setLocalSummaryApiKey(summaryApiKey);
|
|
setLocalSummaryBaseUrl(summaryBaseUrl);
|
|
setLocalSummaryContextLimit(summaryContextLimit);
|
|
}, [apiKey, baseUrl, ttsProvider, ttsModel, ttsInstructions, checkFirstVist, summaryProvider, summaryModel, summaryApiKey, summaryBaseUrl, summaryContextLimit]);
|
|
|
|
// Detect if current model is custom (not in presets) and mirror it in the input field
|
|
useEffect(() => {
|
|
if (!ttsModels.some(m => m.id === modelValue) && modelValue !== '') {
|
|
setCustomModelInput(modelValue);
|
|
} else {
|
|
setCustomModelInput('');
|
|
}
|
|
}, [modelValue, ttsModels]);
|
|
|
|
const handleSync = async () => {
|
|
// Collect local documents
|
|
const pdfs = await getAllPdfDocuments();
|
|
const epubs = await getAllEpubDocuments();
|
|
const htmls = await getAllHtmlDocuments();
|
|
|
|
const allDocs: BaseDocument[] = [
|
|
...pdfs.map(d => ({ ...d, type: 'pdf' as const })),
|
|
...epubs.map(d => ({ ...d, type: 'epub' as const })),
|
|
...htmls.map(d => ({ ...d, type: 'html' as const }))
|
|
];
|
|
|
|
setSelectionModalProps({
|
|
title: 'Save to Server',
|
|
confirmLabel: 'Save',
|
|
mode: 'save',
|
|
defaultSelected: true,
|
|
initialFiles: allDocs
|
|
});
|
|
setIsSelectionModalOpen(true);
|
|
};
|
|
|
|
const handleLoad = async () => {
|
|
setSelectionModalProps({
|
|
title: 'Load from Server',
|
|
confirmLabel: 'Load',
|
|
mode: 'load',
|
|
defaultSelected: true,
|
|
fetcher: async () => {
|
|
const res = await fetch('/api/documents?list=true');
|
|
if (!res.ok) throw new Error('Failed to list server documents');
|
|
const data = await res.json();
|
|
// Handle case where API might return error object
|
|
if (data.error) throw new Error(data.error);
|
|
return data.documents || [];
|
|
}
|
|
});
|
|
setIsSelectionModalOpen(true);
|
|
};
|
|
|
|
const handleImportLibrary = async () => {
|
|
setSelectionModalProps({
|
|
title: 'Import from Library',
|
|
confirmLabel: 'Import',
|
|
mode: 'library',
|
|
defaultSelected: false,
|
|
fetcher: async () => {
|
|
const res = await fetch('/api/documents/library?limit=10000');
|
|
if (!res.ok) throw new Error('Failed to list library documents');
|
|
const data = await res.json();
|
|
return data.documents || [];
|
|
}
|
|
});
|
|
setIsSelectionModalOpen(true);
|
|
};
|
|
|
|
const handleModalConfirm = async (selectedFiles: BaseDocument[]) => {
|
|
const controller = new AbortController();
|
|
setAbortController(controller);
|
|
|
|
const mode = selectionModalProps.mode;
|
|
|
|
// Close modal? Maybe keep open until started?
|
|
// Let's close it here, process starts.
|
|
// Actually we keep it open if we want to show loading state INSIDE modal?
|
|
// But existing UI uses a separate ProgressPopup.
|
|
// So close modal, show popup.
|
|
setIsSelectionModalOpen(false);
|
|
|
|
try {
|
|
setShowProgress(true);
|
|
setProgress(0);
|
|
|
|
if (mode === 'save') {
|
|
setIsSyncing(true);
|
|
setOperationType('sync');
|
|
setStatusMessage('Preparing documents...');
|
|
await syncSelectedDocumentsToServer(selectedFiles, (progress, status) => {
|
|
if (controller.signal.aborted) return;
|
|
setProgress(progress);
|
|
if (status) setStatusMessage(status);
|
|
}, controller.signal);
|
|
} else if (mode === 'load') {
|
|
setIsLoading(true);
|
|
setOperationType('load');
|
|
setStatusMessage('Downloading documents...');
|
|
// Need ids
|
|
const ids = selectedFiles.map(f => f.id);
|
|
await loadSelectedDocumentsFromServer(ids, (progress, status) => {
|
|
if (controller.signal.aborted) return;
|
|
setProgress(progress);
|
|
if (status) setStatusMessage(status);
|
|
}, controller.signal);
|
|
if (!controller.signal.aborted) setStatusMessage('Documents loaded');
|
|
} else if (mode === 'library') {
|
|
setIsImportingLibrary(true);
|
|
setOperationType('library');
|
|
setStatusMessage('Importing selected documents...');
|
|
await importSelectedDocuments(selectedFiles, (progress, status) => {
|
|
if (controller.signal.aborted) return;
|
|
setProgress(progress);
|
|
if (status) setStatusMessage(status);
|
|
}, controller.signal);
|
|
}
|
|
|
|
} catch (error) {
|
|
if (controller.signal.aborted) {
|
|
console.log(`${mode} operation cancelled`);
|
|
setStatusMessage('Operation cancelled');
|
|
} else {
|
|
console.error(`${mode} failed:`, error);
|
|
setStatusMessage(`${mode} failed. Please try again.`);
|
|
}
|
|
} finally {
|
|
setIsSyncing(false);
|
|
setIsLoading(false);
|
|
setIsImportingLibrary(false);
|
|
setShowProgress(false);
|
|
setProgress(0);
|
|
setStatusMessage('');
|
|
setAbortController(null);
|
|
}
|
|
};
|
|
|
|
const handleClearLocal = async () => {
|
|
await clearPDFs();
|
|
await clearEPUBs();
|
|
await clearHTML();
|
|
setShowClearLocalConfirm(false);
|
|
};
|
|
|
|
const handleClearServer = async () => {
|
|
try {
|
|
await deleteServerDocuments();
|
|
} catch (error) {
|
|
console.error('Delete failed:', error);
|
|
}
|
|
setShowClearServerConfirm(false);
|
|
};
|
|
|
|
const handleInputChange = (type: 'apiKey' | 'baseUrl', value: string) => {
|
|
if (type === 'apiKey') {
|
|
setLocalApiKey(value === '' ? '' : value);
|
|
} else if (type === 'baseUrl') {
|
|
setLocalBaseUrl(value === '' ? '' : value);
|
|
}
|
|
};
|
|
|
|
const resetToCurrent = useCallback(() => {
|
|
setIsOpen(false);
|
|
setLocalApiKey(apiKey);
|
|
setLocalBaseUrl(baseUrl);
|
|
setLocalTTSProvider(ttsProvider);
|
|
setModelValue(ttsModel);
|
|
setLocalTTSInstructions(ttsInstructions);
|
|
if (!ttsModels.some(m => m.id === ttsModel) && ttsModel !== '') {
|
|
setCustomModelInput(ttsModel);
|
|
} else {
|
|
setCustomModelInput('');
|
|
}
|
|
setLocalSummaryProvider(summaryProvider);
|
|
setLocalSummaryModel(summaryModel);
|
|
setLocalSummaryApiKey(summaryApiKey);
|
|
setLocalSummaryBaseUrl(summaryBaseUrl);
|
|
setLocalSummaryContextLimit(summaryContextLimit);
|
|
}, [apiKey, baseUrl, ttsProvider, ttsModel, ttsInstructions, ttsModels, summaryProvider, summaryModel, summaryApiKey, summaryBaseUrl, summaryContextLimit]);
|
|
|
|
const tabs = [
|
|
{ name: 'API', icon: '🔑' },
|
|
{ name: 'AI Summary', icon: '✨' },
|
|
{ name: 'Appearance', icon: '🎨' },
|
|
{ name: 'Documents', icon: '📄' }
|
|
];
|
|
|
|
return (
|
|
<>
|
|
<Button
|
|
onClick={() => setIsOpen(true)}
|
|
className="rounded-full p-2 text-foreground hover:bg-offbase transform transition-transform duration-200 ease-in-out hover:scale-[1.09] hover:text-accent absolute top-2 right-2 sm:top-4 sm:right-4"
|
|
aria-label="Settings"
|
|
tabIndex={0}
|
|
>
|
|
<SettingsIcon className="w-4 h-4 sm:w-5 sm:h-5 transform transition-transform duration-200 ease-in-out hover:rotate-45" />
|
|
</Button>
|
|
|
|
<Transition appear show={isOpen} as={Fragment}>
|
|
<Dialog as="div" className="relative z-50" onClose={resetToCurrent}>
|
|
<TransitionChild
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0"
|
|
enterTo="opacity-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<div className="fixed inset-0 overlay-dim backdrop-blur-sm" />
|
|
</TransitionChild>
|
|
|
|
<div className="fixed inset-0 overflow-y-auto">
|
|
<div className="flex min-h-full items-center justify-center p-4 text-center">
|
|
<TransitionChild
|
|
as={Fragment}
|
|
enter="ease-out duration-300"
|
|
enterFrom="opacity-0 scale-95"
|
|
enterTo="opacity-100 scale-100"
|
|
leave="ease-in duration-200"
|
|
leaveFrom="opacity-100 scale-100"
|
|
leaveTo="opacity-0 scale-95"
|
|
>
|
|
<DialogPanel className="w-full max-w-md lg:max-w-lg transform rounded-2xl bg-base p-6 text-left align-middle shadow-xl transition-all">
|
|
<DialogTitle
|
|
as="h3"
|
|
className="text-lg font-semibold leading-6 text-foreground mb-4"
|
|
>
|
|
Settings
|
|
</DialogTitle>
|
|
|
|
<TabGroup>
|
|
<TabList className="grid grid-cols-2 lg:grid-cols-4 gap-1 rounded-xl bg-background p-1 mb-4">
|
|
{tabs.map((tab) => (
|
|
<Tab
|
|
key={tab.name}
|
|
className={({ selected }) =>
|
|
`w-full rounded-lg py-2 px-2 text-sm font-medium transition-colors
|
|
${selected
|
|
? 'bg-accent shadow'
|
|
: 'hover:bg-offbase/50'
|
|
}`
|
|
}
|
|
>
|
|
{({ selected }) => (
|
|
<span
|
|
className="flex items-center justify-center gap-1.5"
|
|
style={{ color: selected ? 'var(--background)' : 'var(--foreground)' }}
|
|
>
|
|
<span>{tab.icon}</span>
|
|
<span>{tab.name}</span>
|
|
</span>
|
|
)}
|
|
</Tab>
|
|
))}
|
|
</TabList>
|
|
<TabPanels className="mt-2">
|
|
<TabPanel className="space-y-2.5">
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">TTS Provider</label>
|
|
<Listbox
|
|
value={ttsProviders.find(p => p.id === localTTSProvider) || ttsProviders[0]}
|
|
onChange={(provider) => {
|
|
setLocalTTSProvider(provider.id);
|
|
// Set default model and base_url for each provider
|
|
if (provider.id === 'openai') {
|
|
setModelValue('tts-1');
|
|
setLocalBaseUrl('https://api.openai.com/v1');
|
|
} else if (provider.id === 'custom-openai') {
|
|
setModelValue('kokoro');
|
|
// Clear baseUrl for custom provider
|
|
setLocalBaseUrl('');
|
|
} else if (provider.id === 'deepinfra') {
|
|
setModelValue('hexgrad/Kokoro-82M');
|
|
setLocalBaseUrl('https://api.deepinfra.com/v1/openai');
|
|
}
|
|
setCustomModelInput('');
|
|
}}
|
|
>
|
|
<ListboxButton className="relative w-full cursor-pointer rounded-lg bg-background py-1.5 pl-3 pr-10 text-left text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent transform transition-transform duration-200 ease-in-out hover:scale-[1.009] hover:text-accent hover:bg-offbase">
|
|
<span className="block truncate">
|
|
{ttsProviders.find(p => p.id === localTTSProvider)?.name || 'Select Provider'}
|
|
</span>
|
|
<span className="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
|
|
<ChevronUpDownIcon className="h-5 w-5 text-muted" />
|
|
</span>
|
|
</ListboxButton>
|
|
<Transition
|
|
as={Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<ListboxOptions className="absolute mt-1 w-full overflow-auto rounded-md bg-background py-1 shadow-lg ring-1 ring-black/5 focus:outline-none z-50">
|
|
{ttsProviders.map((provider) => (
|
|
<ListboxOption
|
|
key={provider.id}
|
|
className={({ active }) =>
|
|
`relative cursor-pointer select-none py-1.5 pl-10 pr-4 ${
|
|
active ? 'bg-offbase text-accent' : 'text-foreground'
|
|
}`
|
|
}
|
|
value={provider}
|
|
>
|
|
{({ selected }) => (
|
|
<>
|
|
<span className={`block truncate ${selected ? 'font-medium' : 'font-normal'}`}>
|
|
{provider.name}
|
|
</span>
|
|
{selected ? (
|
|
<span className="absolute inset-y-0 left-0 flex items-center pl-3 text-accent">
|
|
<CheckIcon className="h-5 w-5" />
|
|
</span>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</ListboxOption>
|
|
))}
|
|
</ListboxOptions>
|
|
</Transition>
|
|
</Listbox>
|
|
</div>
|
|
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">
|
|
API Key
|
|
{localApiKey && <span className="ml-2 text-xs text-accent">(Overriding env)</span>}
|
|
</label>
|
|
<div className="flex gap-2">
|
|
<Input
|
|
type="password"
|
|
value={localApiKey}
|
|
onChange={(e) => handleInputChange('apiKey', e.target.value)}
|
|
placeholder={!isDev && localTTSProvider === 'deepinfra' ? "Deepinfra free or use your API key" : "Using environment variable"}
|
|
className="w-full rounded-lg bg-background py-1.5 px-3 text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent"
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">TTS Model</label>
|
|
<div className="flex flex-col gap-2">
|
|
<Listbox
|
|
value={ttsModels.find(m => m.id === selectedModelId) || ttsModels[0]}
|
|
onChange={(model) => {
|
|
if (model.id === 'custom') {
|
|
// Switch to custom: keep the current custom input (or empty)
|
|
setModelValue(customModelInput);
|
|
} else {
|
|
setModelValue(model.id);
|
|
setCustomModelInput('');
|
|
}
|
|
}}
|
|
>
|
|
<ListboxButton className="relative w-full cursor-pointer rounded-lg bg-background py-1.5 pl-3 pr-10 text-left text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent transform transition-transform duration-200 ease-in-out hover:scale-[1.009] hover:text-accent hover:bg-offbase">
|
|
<span className="block truncate">
|
|
{ttsModels.find(m => m.id === selectedModelId)?.name || 'Select Model'}
|
|
</span>
|
|
<span className="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
|
|
<ChevronUpDownIcon className="h-5 w-5 text-muted" />
|
|
</span>
|
|
</ListboxButton>
|
|
<Transition
|
|
as={Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<ListboxOptions className="absolute mt-1 w-full overflow-auto rounded-md bg-background py-1 shadow-lg ring-1 ring-black/5 focus:outline-none z-50">
|
|
{ttsModels.map((model) => (
|
|
<ListboxOption
|
|
key={model.id}
|
|
className={({ active }) =>
|
|
`relative cursor-pointer select-none py-1.5 pl-10 pr-4 ${
|
|
active ? 'bg-offbase text-accent' : 'text-foreground'
|
|
}`
|
|
}
|
|
value={model}
|
|
>
|
|
{({ selected }) => (
|
|
<>
|
|
<span className={`block truncate ${selected ? 'font-medium' : 'font-normal'}`}>
|
|
{model.name}
|
|
</span>
|
|
{selected ? (
|
|
<span className="absolute inset-y-0 left-0 flex items-center pl-3 text-accent">
|
|
<CheckIcon className="h-5 w-5" />
|
|
</span>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</ListboxOption>
|
|
))}
|
|
</ListboxOptions>
|
|
</Transition>
|
|
</Listbox>
|
|
|
|
{supportsCustom && selectedModelId === 'custom' && (
|
|
<Input
|
|
type="text"
|
|
value={customModelInput}
|
|
onChange={(e) => {
|
|
setCustomModelInput(e.target.value);
|
|
setModelValue(e.target.value);
|
|
}}
|
|
placeholder="Enter custom model name"
|
|
className="w-full rounded-lg bg-background py-1.5 px-3 text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent"
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{modelValue === 'gpt-4o-mini-tts' && (
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">TTS Instructions</label>
|
|
<textarea
|
|
value={localTTSInstructions}
|
|
onChange={(e) => setLocalTTSInstructions(e.target.value)}
|
|
placeholder="Enter instructions for the TTS model"
|
|
className="w-full h-24 rounded-lg bg-background py-1.5 px-3 text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent"
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{(localTTSProvider === 'custom-openai' || !localBaseUrl || localBaseUrl === '') && (
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">
|
|
API Base URL
|
|
{localBaseUrl && <span className="ml-2 text-xs text-accent">(Overriding env)</span>}
|
|
</label>
|
|
<div className="flex gap-2">
|
|
<Input
|
|
type="text"
|
|
value={localBaseUrl}
|
|
onChange={(e) => handleInputChange('baseUrl', e.target.value)}
|
|
placeholder="Using environment variable"
|
|
className="w-full rounded-lg bg-background py-1.5 px-3 text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent"
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
<div className="pt-4 flex justify-end gap-2">
|
|
<Button
|
|
type="button"
|
|
className="inline-flex justify-center rounded-lg bg-background px-3 py-1.5 text-sm
|
|
font-medium text-foreground hover:bg-offbase focus:outline-none
|
|
focus-visible:ring-2 focus-visible:ring-accent focus-visible:ring-offset-2
|
|
transform transition-transform duration-200 ease-in-out hover:scale-[1.04] hover:text-accent"
|
|
onClick={async () => {
|
|
setLocalApiKey('');
|
|
setLocalBaseUrl('');
|
|
setLocalTTSProvider('custom-openai');
|
|
setModelValue('kokoro');
|
|
setCustomModelInput('');
|
|
setLocalTTSInstructions('');
|
|
}}
|
|
>
|
|
Reset
|
|
</Button>
|
|
<Button
|
|
type="button"
|
|
className="inline-flex justify-center rounded-lg bg-accent px-3 py-1.5 text-sm
|
|
font-medium text-background hover:bg-secondary-accent focus:outline-none
|
|
focus-visible:ring-2 focus-visible:ring-accent focus-visible:ring-offset-2
|
|
transform transition-transform duration-200 ease-in-out hover:scale-[1.04] hover:text-background"
|
|
disabled={!canSubmit}
|
|
onClick={async () => {
|
|
await updateConfig({
|
|
apiKey: localApiKey || '',
|
|
baseUrl: localBaseUrl || '',
|
|
});
|
|
await updateConfigKey('ttsProvider', localTTSProvider);
|
|
const finalModel = selectedModelId === 'custom' ? customModelInput.trim() : modelValue;
|
|
await updateConfigKey('ttsModel', finalModel);
|
|
await updateConfigKey('ttsInstructions', localTTSInstructions);
|
|
setIsOpen(false);
|
|
}}
|
|
>
|
|
Save
|
|
</Button>
|
|
</div>
|
|
</TabPanel>
|
|
|
|
{/* AI Summary Tab */}
|
|
<TabPanel className="space-y-2.5">
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">AI Provider</label>
|
|
<Listbox
|
|
value={summaryProviders.find(p => p.id === localSummaryProvider) || summaryProviders[0]}
|
|
onChange={(provider) => {
|
|
setLocalSummaryProvider(provider.id);
|
|
// Set default model for each provider
|
|
switch (provider.id) {
|
|
case 'openai':
|
|
setLocalSummaryModel('gpt-4o-mini');
|
|
break;
|
|
case 'anthropic':
|
|
setLocalSummaryModel('claude-3-5-haiku-latest');
|
|
break;
|
|
case 'groq':
|
|
setLocalSummaryModel('llama-3.3-70b-versatile');
|
|
break;
|
|
case 'openrouter':
|
|
setLocalSummaryModel('google/gemini-2.0-flash-001');
|
|
break;
|
|
case 'custom-openai':
|
|
setLocalSummaryModel('');
|
|
break;
|
|
}
|
|
}}
|
|
>
|
|
<ListboxButton className="relative w-full cursor-pointer rounded-lg bg-background py-1.5 pl-3 pr-10 text-left text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent transform transition-transform duration-200 ease-in-out hover:scale-[1.009] hover:text-accent hover:bg-offbase">
|
|
<span className="block truncate">
|
|
{summaryProviders.find(p => p.id === localSummaryProvider)?.name || 'Select Provider'}
|
|
</span>
|
|
<span className="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
|
|
<ChevronUpDownIcon className="h-5 w-5 text-muted" />
|
|
</span>
|
|
</ListboxButton>
|
|
<Transition
|
|
as={Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<ListboxOptions className="absolute mt-1 w-full overflow-auto rounded-md bg-background py-1 shadow-lg ring-1 ring-black/5 focus:outline-none z-50">
|
|
{summaryProviders.map((provider) => (
|
|
<ListboxOption
|
|
key={provider.id}
|
|
className={({ active }) =>
|
|
`relative cursor-pointer select-none py-1.5 pl-10 pr-4 ${
|
|
active ? 'bg-offbase text-accent' : 'text-foreground'
|
|
}`
|
|
}
|
|
value={provider}
|
|
>
|
|
{({ selected }) => (
|
|
<>
|
|
<span className={`block truncate ${selected ? 'font-medium' : 'font-normal'}`}>
|
|
{provider.name}
|
|
</span>
|
|
{selected ? (
|
|
<span className="absolute inset-y-0 left-0 flex items-center pl-3 text-accent">
|
|
<CheckIcon className="h-5 w-5" />
|
|
</span>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</ListboxOption>
|
|
))}
|
|
</ListboxOptions>
|
|
</Transition>
|
|
</Listbox>
|
|
</div>
|
|
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">
|
|
API Key
|
|
{localSummaryApiKey ? (
|
|
<span className="ml-2 text-xs text-accent">(Set)</span>
|
|
) : (
|
|
<span className="ml-2 text-xs text-muted">
|
|
(Uses {localSummaryProvider === 'groq' ? 'GROQ_API_KEY' :
|
|
localSummaryProvider === 'anthropic' ? 'ANTHROPIC_API_KEY' :
|
|
localSummaryProvider === 'openrouter' ? 'OPENROUTER_API_KEY' :
|
|
localSummaryProvider === 'custom-openai' ? 'optional' : 'OPENAI_API_KEY'} env)
|
|
</span>
|
|
)}
|
|
</label>
|
|
<Input
|
|
type="password"
|
|
value={localSummaryApiKey}
|
|
onChange={(e) => setLocalSummaryApiKey(e.target.value)}
|
|
placeholder={localSummaryProvider === 'custom-openai' ? "Optional for local models" : "Leave empty to use env variable"}
|
|
className="w-full rounded-lg bg-background py-1.5 px-3 text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent"
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">Model</label>
|
|
{localSummaryProvider === 'custom-openai' ? (
|
|
<Input
|
|
type="text"
|
|
value={localSummaryModel}
|
|
onChange={(e) => setLocalSummaryModel(e.target.value)}
|
|
placeholder="Enter model name (e.g., llama3)"
|
|
className="w-full rounded-lg bg-background py-1.5 px-3 text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent"
|
|
/>
|
|
) : (
|
|
<Listbox
|
|
value={summaryModels.find(m => m.id === localSummaryModel) || summaryModels[0]}
|
|
onChange={(model) => setLocalSummaryModel(model.id)}
|
|
>
|
|
<ListboxButton className="relative w-full cursor-pointer rounded-lg bg-background py-1.5 pl-3 pr-10 text-left text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent transform transition-transform duration-200 ease-in-out hover:scale-[1.009] hover:text-accent hover:bg-offbase">
|
|
<span className="block truncate">
|
|
{summaryModels.find(m => m.id === localSummaryModel)?.name || 'Select Model'}
|
|
</span>
|
|
<span className="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
|
|
<ChevronUpDownIcon className="h-5 w-5 text-muted" />
|
|
</span>
|
|
</ListboxButton>
|
|
<Transition
|
|
as={Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<ListboxOptions className="absolute mt-1 w-full overflow-auto rounded-md bg-background py-1 shadow-lg ring-1 ring-black/5 focus:outline-none z-50">
|
|
{summaryModels.map((model) => (
|
|
<ListboxOption
|
|
key={model.id}
|
|
className={({ active }) =>
|
|
`relative cursor-pointer select-none py-1.5 pl-10 pr-4 ${
|
|
active ? 'bg-offbase text-accent' : 'text-foreground'
|
|
}`
|
|
}
|
|
value={model}
|
|
>
|
|
{({ selected }) => (
|
|
<>
|
|
<span className={`block truncate ${selected ? 'font-medium' : 'font-normal'}`}>
|
|
{model.name}
|
|
</span>
|
|
{selected ? (
|
|
<span className="absolute inset-y-0 left-0 flex items-center pl-3 text-accent">
|
|
<CheckIcon className="h-5 w-5" />
|
|
</span>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</ListboxOption>
|
|
))}
|
|
</ListboxOptions>
|
|
</Transition>
|
|
</Listbox>
|
|
)}
|
|
</div>
|
|
|
|
{localSummaryProvider === 'custom-openai' && (
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">
|
|
Base URL
|
|
{localSummaryBaseUrl && <span className="ml-2 text-xs text-accent">(Set)</span>}
|
|
</label>
|
|
<Input
|
|
type="text"
|
|
value={localSummaryBaseUrl}
|
|
onChange={(e) => setLocalSummaryBaseUrl(e.target.value)}
|
|
placeholder="http://localhost:11434/v1"
|
|
className="w-full rounded-lg bg-background py-1.5 px-3 text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent"
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">
|
|
Context Limit
|
|
<span className="ml-2 text-xs text-muted">(for chunked summarization)</span>
|
|
</label>
|
|
<Listbox
|
|
value={contextLimitOptions.find(o => o.id === localSummaryContextLimit) || contextLimitOptions[3]}
|
|
onChange={(option) => setLocalSummaryContextLimit(option.id)}
|
|
>
|
|
<ListboxButton className="relative w-full cursor-pointer rounded-lg bg-background py-1.5 pl-3 pr-10 text-left text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent transform transition-transform duration-200 ease-in-out hover:scale-[1.009] hover:text-accent hover:bg-offbase">
|
|
<span className="block truncate">
|
|
{contextLimitOptions.find(o => o.id === localSummaryContextLimit)?.name || '32K tokens'}
|
|
</span>
|
|
<span className="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
|
|
<ChevronUpDownIcon className="h-5 w-5 text-muted" />
|
|
</span>
|
|
</ListboxButton>
|
|
<Transition
|
|
as={Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<ListboxOptions className="absolute mt-1 w-full overflow-auto rounded-md bg-background py-1 shadow-lg ring-1 ring-black/5 focus:outline-none z-50">
|
|
{contextLimitOptions.map((option) => (
|
|
<ListboxOption
|
|
key={option.id}
|
|
className={({ active }) =>
|
|
`relative cursor-pointer select-none py-1.5 pl-10 pr-4 ${
|
|
active ? 'bg-offbase text-accent' : 'text-foreground'
|
|
}`
|
|
}
|
|
value={option}
|
|
>
|
|
{({ selected }) => (
|
|
<>
|
|
<span className={`block truncate ${selected ? 'font-medium' : 'font-normal'}`}>
|
|
{option.name}
|
|
</span>
|
|
{selected ? (
|
|
<span className="absolute inset-y-0 left-0 flex items-center pl-3 text-accent">
|
|
<CheckIcon className="h-5 w-5" />
|
|
</span>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</ListboxOption>
|
|
))}
|
|
</ListboxOptions>
|
|
</Transition>
|
|
</Listbox>
|
|
<p className="text-xs text-muted">
|
|
Documents larger than this limit will be split into chunks and summarized hierarchically.
|
|
</p>
|
|
</div>
|
|
|
|
<div className="pt-4 flex justify-end gap-2">
|
|
<Button
|
|
type="button"
|
|
className="inline-flex justify-center rounded-lg bg-background px-3 py-1.5 text-sm
|
|
font-medium text-foreground hover:bg-offbase focus:outline-none
|
|
focus-visible:ring-2 focus-visible:ring-accent focus-visible:ring-offset-2
|
|
transform transition-transform duration-200 ease-in-out hover:scale-[1.04] hover:text-accent"
|
|
onClick={() => {
|
|
setLocalSummaryProvider('groq');
|
|
setLocalSummaryModel('llama-3.3-70b-versatile');
|
|
setLocalSummaryApiKey('');
|
|
setLocalSummaryBaseUrl('');
|
|
setLocalSummaryContextLimit(32768);
|
|
}}
|
|
>
|
|
Reset
|
|
</Button>
|
|
<Button
|
|
type="button"
|
|
className="inline-flex justify-center rounded-lg bg-accent px-3 py-1.5 text-sm
|
|
font-medium text-background hover:bg-secondary-accent focus:outline-none
|
|
focus-visible:ring-2 focus-visible:ring-accent focus-visible:ring-offset-2
|
|
transform transition-transform duration-200 ease-in-out hover:scale-[1.04] hover:text-background"
|
|
onClick={async () => {
|
|
await updateConfigKey('summaryProvider', localSummaryProvider);
|
|
await updateConfigKey('summaryModel', localSummaryModel);
|
|
await updateConfigKey('summaryApiKey', localSummaryApiKey);
|
|
await updateConfigKey('summaryBaseUrl', localSummaryBaseUrl);
|
|
await updateConfigKey('summaryContextLimit', localSummaryContextLimit);
|
|
setIsOpen(false);
|
|
}}
|
|
>
|
|
Save
|
|
</Button>
|
|
</div>
|
|
</TabPanel>
|
|
|
|
<TabPanel className="space-y-4 pb-3">
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">Theme</label>
|
|
<Listbox value={selectedTheme} onChange={(newTheme) => setTheme(newTheme.id)}>
|
|
<ListboxButton className="relative w-full cursor-pointer rounded-lg bg-background py-1.5 pl-3 pr-10 text-left text-foreground shadow-sm focus:outline-none focus:ring-2 focus:ring-accent transform transition-transform duration-200 ease-in-out hover:scale-[1.009] hover:text-accent hover:bg-offbase">
|
|
<span className="block truncate">{selectedTheme.name}</span>
|
|
<span className="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-2">
|
|
<ChevronUpDownIcon className="h-5 w-5 text-muted" />
|
|
</span>
|
|
</ListboxButton>
|
|
<Transition
|
|
as={Fragment}
|
|
leave="transition ease-in duration-100"
|
|
leaveFrom="opacity-100"
|
|
leaveTo="opacity-0"
|
|
>
|
|
<ListboxOptions className="absolute mt-1 w-full overflow-auto rounded-md bg-background py-1 shadow-lg ring-1 ring-black/5 focus:outline-none">
|
|
{themes.map((theme) => (
|
|
<ListboxOption
|
|
key={theme.id}
|
|
className={({ active }) =>
|
|
`relative cursor-pointer select-none py-1.5 pl-10 pr-4 ${active ? 'bg-offbase text-accent' : 'text-foreground'
|
|
}`
|
|
}
|
|
value={theme}
|
|
>
|
|
{({ selected }) => (
|
|
<>
|
|
<span className={`block truncate ${selected ? 'font-medium' : 'font-normal'}`}>
|
|
{theme.name}
|
|
</span>
|
|
{selected ? (
|
|
<span className="absolute inset-y-0 left-0 flex items-center pl-3 text-accent">
|
|
<CheckIcon className="h-5 w-5" />
|
|
</span>
|
|
) : null}
|
|
</>
|
|
)}
|
|
</ListboxOption>
|
|
))}
|
|
</ListboxOptions>
|
|
</Transition>
|
|
</Listbox>
|
|
</div>
|
|
</TabPanel>
|
|
|
|
<TabPanel className="space-y-4">
|
|
<div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">Server Library Import</label>
|
|
<div className="flex gap-2">
|
|
<Button
|
|
onClick={handleImportLibrary}
|
|
disabled={isSyncing || isLoading || isImportingLibrary}
|
|
className="justify-center rounded-lg bg-background px-3 py-1.5 text-sm
|
|
font-medium text-foreground hover:bg-offbase focus:outline-none
|
|
focus-visible:ring-2 focus-visible:ring-accent focus-visible:ring-offset-2
|
|
transform transition-transform duration-200 ease-in-out hover:scale-[1.04] hover:text-accent
|
|
disabled:opacity-50"
|
|
>
|
|
{isImportingLibrary ? `Importing... ${Math.round(progress)}%` : 'Import from library'}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
|
|
{isDev && <div className="space-y-1">
|
|
<label className="block text-sm font-medium text-foreground">Server Document Sync</label>
|
|
<div className="flex gap-2">
|
|
<Button
|
|
onClick={handleLoad}
|
|
disabled={isSyncing || isLoading || isImportingLibrary}
|
|
className="justify-center rounded-lg bg-background px-3 py-1.5 text-sm
|
|
font-medium text-foreground hover:bg-offbase focus:outline-none
|
|
focus-visible:ring-2 focus-visible:ring-accent focus-visible:ring-offset-2
|
|
transform transition-transform duration-200 ease-in-out hover:scale-[1.04] hover:text-accent
|
|
disabled:opacity-50"
|
|
>
|
|
{isLoading ? `Loading... ${Math.round(progress)}%` : 'Load'}
|
|
</Button>
|
|
<Button
|
|
onClick={handleSync}
|
|
disabled={isSyncing || isLoading || isImportingLibrary}
|
|
className="justify-center rounded-lg bg-background px-3 py-1.5 text-sm
|
|
font-medium text-foreground hover:bg-offbase focus:outline-none
|
|
focus-visible:ring-2 focus-visible:ring-accent focus-visible:ring-offset-2
|
|
transform transition-transform duration-200 ease-in-out hover:scale-[1.04] hover:text-accent
|
|
disabled:opacity-50"
|
|
>
|
|
{isSyncing ? `Saving... ${Math.round(progress)}%` : 'Save to server'}
|
|
</Button>
|
|
</div>
|
|
</div>}
|
|
|
|
<div className="space-y-1 pb-3">
|
|
<label className="block text-sm font-medium text-foreground">Delete All</label>
|
|
<div className="flex gap-2">
|
|
<Button
|
|
onClick={() => setShowClearLocalConfirm(true)}
|
|
disabled={isSyncing || isLoading || isImportingLibrary}
|
|
className="justify-center rounded-lg bg-red-500 px-3 py-1.5 text-sm
|
|
font-medium text-background hover:bg-red-500/90 focus:outline-none
|
|
focus-visible:ring-2 focus-visible:bg-red-500 focus-visible:ring-offset-2
|
|
transform transition-transform duration-200 ease-in-out hover:scale-[1.04]"
|
|
>
|
|
Delete local
|
|
</Button>
|
|
{isDev && <Button
|
|
onClick={() => setShowClearServerConfirm(true)}
|
|
disabled={isSyncing || isLoading || isImportingLibrary}
|
|
className="justify-center rounded-lg bg-red-500 px-3 py-1.5 text-sm
|
|
font-medium text-background hover:bg-red-500/90 focus:outline-none
|
|
focus-visible:ring-2 focus-visible:bg-red-500 focus-visible:ring-offset-2
|
|
transform transition-transform duration-200 ease-in-out hover:scale-[1.04]"
|
|
>
|
|
Delete server
|
|
</Button>}
|
|
</div>
|
|
</div>
|
|
</TabPanel>
|
|
</TabPanels>
|
|
</TabGroup>
|
|
</DialogPanel>
|
|
</TransitionChild>
|
|
</div>
|
|
</div>
|
|
</Dialog>
|
|
</Transition>
|
|
|
|
<ConfirmDialog
|
|
isOpen={showClearLocalConfirm}
|
|
onClose={() => setShowClearLocalConfirm(false)}
|
|
onConfirm={handleClearLocal}
|
|
title="Delete Local Documents"
|
|
message="Are you sure you want to delete all local documents? This action cannot be undone."
|
|
confirmText="Delete"
|
|
isDangerous={true}
|
|
/>
|
|
|
|
<ConfirmDialog
|
|
isOpen={showClearServerConfirm}
|
|
onClose={() => setShowClearServerConfirm(false)}
|
|
onConfirm={handleClearServer}
|
|
title="Delete Server Documents"
|
|
message="Are you sure you want to delete all documents from the server? This action cannot be undone."
|
|
confirmText="Delete"
|
|
isDangerous={true}
|
|
/>
|
|
|
|
<ProgressPopup
|
|
isOpen={showProgress}
|
|
progress={progress}
|
|
estimatedTimeRemaining={estimatedTimeRemaining || undefined}
|
|
onCancel={() => {
|
|
if (abortController) {
|
|
abortController.abort();
|
|
}
|
|
setShowProgress(false);
|
|
setProgress(0);
|
|
setIsSyncing(false);
|
|
setIsLoading(false);
|
|
setIsImportingLibrary(false);
|
|
setStatusMessage('');
|
|
setOperationType('sync');
|
|
setAbortController(null);
|
|
}}
|
|
statusMessage={statusMessage}
|
|
operationType={operationType}
|
|
cancelText="Cancel"
|
|
/>
|
|
<DocumentSelectionModal
|
|
isOpen={isSelectionModalOpen}
|
|
onClose={() => !isImportingLibrary && !isSyncing && !isLoading && setIsSelectionModalOpen(false)}
|
|
onConfirm={handleModalConfirm}
|
|
title={selectionModalProps.title}
|
|
confirmLabel={selectionModalProps.confirmLabel}
|
|
isProcessing={false} // Processing happens in ProgressPopup after closing
|
|
defaultSelected={selectionModalProps.defaultSelected}
|
|
initialFiles={selectionModalProps.initialFiles}
|
|
fetcher={selectionModalProps.fetcher}
|
|
/>
|
|
</>
|
|
);
|
|
}
|