mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-27 08:14:33 +08:00
8ccfbd36d6
* refactor(toolsearch): replace binary patch with ENABLE_TOOL_SEARCH env var toggle
- Remove toolsearch_patch.rs binary patching mechanism (~590 lines)
- Delete `toolsearch_patch.rs` and `commands/toolsearch.rs`
- Remove auto-patch startup logic and command registration from lib.rs
- Remove `tool_search_bypass` field from settings.rs
- Remove frontend settings ToggleRow, useSettings hook sync logic, and API methods
- Clean up zh/en/ja i18n keys (notifications + settings)
- Add ENABLE_TOOL_SEARCH toggle to Claude provider form
- Add checkbox in CommonConfigEditor.tsx (alongside teammates toggle)
- When enabled, writes `"env": { "ENABLE_TOOL_SEARCH": "true" }`
- When disabled, removes the key; takes effect on provider switch
- Add zh/en/ja i18n key: `claudeConfig.enableToolSearch`
Claude Code 2.1.76+ natively supports this env var, eliminating the need for binary patching.
* feat(claude): add effortLevel high toggle to provider form
- Add "high-effort thinking" checkbox to Claude provider config form
- When checked, writes `"effortLevel": "high"`; when unchecked, removes the field
- Add zh/en/ja i18n translations
* refactor(claude): remove deprecated alwaysThinking toggle
- Claude Code now enables extended thinking by default; alwaysThinkingEnabled is a no-op
- Thinking control is now handled via effortLevel (added in prior commit)
- Remove state, switch case, and checkbox UI from CommonConfigEditor
- Clean up alwaysThinking i18n keys across zh/en/ja locales
* feat(opencode): add setCacheKey: true to all provider presets
- Add setCacheKey: true to options in all 33 regular presets
- Add setCacheKey: true to OPENCODE_DEFAULT_CONFIG for custom providers
- Exclude 2 OMO presets (Oh My OpenCode / Slim) which have their own config mechanism
Closes #1523
* fix(codex): resolve 1M context window toggle causing MCP editor flicker
- Add localValueRef to short-circuit duplicate CodeMirror updateListener callbacks,
breaking the React state → CodeMirror → stale onChange → React state feedback loop
- Use localValueRef.current in handleContextWindowToggle and handleCompactLimitChange
to avoid stale closure reads
- Change compact limit input from type="number" to type="text" with inputMode="numeric"
to remove unnecessary spinner buttons
* feat(codex): add 1M context window toggle utilities and i18n keys
- Add extractCodexTopLevelInt, setCodexTopLevelInt, removeCodexTopLevelField
TOML helpers in providerConfigUtils.ts
- Add i18n keys for contextWindow1M, autoCompactLimit in zh/en/ja locales
* feat(claude): collapse model mapping fields by default
- Wrap 5 model mapping inputs in a Collapsible, collapsed by default
- Auto-expand when any model value is present (including preset-filled)
- Show hint text when collapsed explaining most users need no config
- Add zh/en/ja i18n keys for toggle label and collapsed hint
- Use variant={null} to avoid ghost button hover style clash in dark mode
* feat(claude): merge advanced fields into single collapsible section
- Merge API format, auth field, and model mapping into a unified "Advanced Options" collapsible
- Extend smart-expand logic to detect non-default values across all advanced fields
- Preserve model mapping sub-header and hint with a separator line
- Update zh/en/ja i18n keys (advancedOptionsToggle, advancedOptionsHint, modelMappingLabel, modelMappingHint)
* feat(copilot): add GitHub Copilot reverse proxy support
Add GitHub Copilot as a Claude provider variant with OAuth device code
authentication and Anthropic ↔ OpenAI format transformation.
Backend:
- Add CopilotAuthManager for GitHub OAuth device code flow
- Implement Copilot token auto-refresh (60s before expiry)
- Persist GitHub token to ~/.cc-switch/copilot_auth.json
- Add ProviderType::GitHubCopilot and AuthStrategy::GitHubCopilot
- Modify forwarder to use /chat/completions for Copilot
- Add Copilot-specific headers (Editor-Version, Editor-Plugin-Version)
Frontend:
- Add CopilotAuthSection component for OAuth UI
- Add useCopilotAuth hook for OAuth state management
- Auto-copy user code to clipboard and open browser
- Use 8-second polling interval to avoid GitHub rate limits
- Skip API Key validation for Copilot providers
- Add GitHub Copilot preset with claude-sonnet-4 model
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
* fix(copilot): remove is_expired() calls from tests
Remove references to deleted is_expired() method in test code.
Only is_expiring_soon() is needed for token refresh logic.
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
* feat(copilot): add real-time model listing from Copilot API
- Add fetch_models() to CopilotAuthManager calling GET /models endpoint
- Add copilot_get_models Tauri command
- Add copilotGetModels() frontend API wrapper
- Modify ClaudeFormFields to show model dropdown for Copilot providers
- Fetches available models on component mount when isCopilotPreset
- Groups models by vendor (Anthropic, OpenAI, Google, etc.)
- Input + dropdown button combo allows both manual entry and selection
- Non-Copilot providers keep original plain Input behavior
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat(copilot): add usage query integration
- Add Copilot usage API integration (fetch_usage method)
- Add copilot_get_usage Tauri command
- Add GitHub Copilot template in usage query modal
- Unify naming: copilot → github_copilot
- Add constants management (TEMPLATE_TYPES, PROVIDER_TYPES)
- Improve error handling with detailed error messages
- Add database migration (v5 → v6) for template type update
- Add i18n translations (zh, en, ja)
- Improve type safety with TemplateType
- Apply code formatting (cargo fmt, prettier)
* 修复github 登录和注销问题 ,模型选择问题
* feat(copilot): add multi-account support for GitHub Copilot
- Add multi-account storage structure with v1 to v2 migration
- Add per-account token caching and auto-refresh
- Add new Tauri commands for account management
- Integrate account selection in Proxy forwarder
- Add account selection UI in CopilotAuthSection
- Save githubAccountId to ProviderMeta
- Add i18n translations for multi-account features (zh/en/ja)
* 修复用量查询Reset字段出现多余字符
* refactor(auth-binding): introduce generic provider auth binding primitives
- add shared authBinding types in Rust and TypeScript while keeping githubAccountId as a compatibility field\n- resolve Copilot token, models, and usage through provider-bound account lookup instead of only the implicit default account\n- fix the Unix build regression in settings.rs by restoring std::io::Write for write_all()\n- remove the accidental .github ignore entry and drop leftover Copilot form debug logs\n- keep the first migration step non-breaking by writing both authBinding and the legacy githubAccountId field from the form
* refactor(auth-service): add managed auth command surface and explicit default account state
- introduce generic managed auth commands and frontend auth API wrappers for provider-scoped login, status, account listing, removal, logout, and default-account selection\n- store an explicit Copilot default_account_id instead of relying on HashMap iteration order, and use it consistently for fallback token/model/usage resolution\n- sort managed accounts deterministically and surface default-account state to the UI\n- refactor the Copilot form hook to wrap a generic useManagedAuth implementation while preserving the existing component contract\n- add default-account controls to the Copilot auth section and extend Copilot auth status serialization/tests for the new state
* feat(auth-center): add a dedicated settings entrypoint for managed OAuth accounts
- add an Auth Center tab to Settings so managed OAuth accounts are no longer hidden inside individual provider forms\n- introduce a first AuthCenterPanel that hosts GitHub Copilot account management as the initial managed auth provider\n- keep the provider form experience intact while establishing a global account-management surface for future providers such as OpenAI\n- validate that the new settings tab works cleanly with the generic managed auth hook and existing Copilot account controls
* feat(add-provider): expose managed OAuth sources alongside universal providers
- add an OAuth tab to the Add Provider flow so managed auth sources sit beside app-specific and universal providers\n- reuse the new Auth Center panel inside the dialog, keeping account management discoverable during provider creation\n- make the dialog footer adapt to the OAuth tab so account setup does not pretend to create a provider directly\n- align the add-provider UX with the new architecture where OAuth accounts are global assets and providers bind to them later
* fix(auth-reliability): harden managed auth persistence and refresh behavior
- replace direct Copilot auth store writes with private temp-file writes and atomic rename semantics, and document the local token storage limitation\n- add per-account refresh locks plus a double-check path so concurrent requests do not stampede GitHub token refresh\n- surface legacy migration failures through auth status, expose them in the UI, and add translated copy for the new account-state labels\n- stop writing the legacy githubAccountId field from the provider form while keeping compatibility reads in place\n- add logout error recovery and Copilot model-load toasts so auth failures are no longer silently swallowed
* refactor(copilot-detection): prefer provider type before URL fallbacks
- update forwarder endpoint rewriting to treat providerType as the primary GitHub Copilot signal\n- keep githubcopilot.com string matching only as a compatibility fallback for older provider records without providerType\n- reduce one more path where Copilot behavior depended purely on URL heuristics
* fix(copilot-auth): add cancel button to error state in CopilotAuthSection
- 错误状态下仅有"重试"按钮,用户无法退出(如不可恢复的 403 未订阅错误)
- 新增"取消"按钮,复用已有的 cancelAuth 逻辑重置为 idle 状态
* 修复打包后github账号头像显示异常
* 修复github copilot 来源的模型测试报错
* feat(copilot-preset): add default model presets for GitHub Copilot
- 补充 Copilot 预设的默认模型配置,用户选完预设即可直接使用
- ANTHROPIC_MODEL: claude-opus-4.6
- ANTHROPIC_DEFAULT_HAIKU_MODEL: claude-haiku-4.5
- ANTHROPIC_DEFAULT_SONNET_MODEL: claude-sonnet-4.6
- ANTHROPIC_DEFAULT_OPUS_MODEL: claude-opus-4.6
---------
Co-authored-by: Jason <farion1231@gmail.com>
Co-authored-by: 周梦泽 <mengze.zhou@dafeng-tech.com>
Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com>
540 lines
22 KiB
TypeScript
540 lines
22 KiB
TypeScript
import { useCallback, useEffect, useMemo, useState } from "react";
|
|
import { motion } from "framer-motion";
|
|
import {
|
|
Loader2,
|
|
Save,
|
|
FolderSearch,
|
|
Database,
|
|
Cloud,
|
|
ScrollText,
|
|
HardDriveDownload,
|
|
FlaskConical,
|
|
KeyRound,
|
|
} from "lucide-react";
|
|
import { toast } from "sonner";
|
|
import {
|
|
Dialog,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog";
|
|
import {
|
|
Accordion,
|
|
AccordionContent,
|
|
AccordionItem,
|
|
AccordionTrigger,
|
|
} from "@/components/ui/accordion";
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
|
|
import { Button } from "@/components/ui/button";
|
|
import { settingsApi } from "@/lib/api";
|
|
import { LanguageSettings } from "@/components/settings/LanguageSettings";
|
|
import { ThemeSettings } from "@/components/settings/ThemeSettings";
|
|
import { WindowSettings } from "@/components/settings/WindowSettings";
|
|
import { AppVisibilitySettings } from "@/components/settings/AppVisibilitySettings";
|
|
import { SkillSyncMethodSettings } from "@/components/settings/SkillSyncMethodSettings";
|
|
import { TerminalSettings } from "@/components/settings/TerminalSettings";
|
|
import { DirectorySettings } from "@/components/settings/DirectorySettings";
|
|
import { ImportExportSection } from "@/components/settings/ImportExportSection";
|
|
import { BackupListSection } from "@/components/settings/BackupListSection";
|
|
import { WebdavSyncSection } from "@/components/settings/WebdavSyncSection";
|
|
import { AboutSection } from "@/components/settings/AboutSection";
|
|
import { ProxyTabContent } from "@/components/settings/ProxyTabContent";
|
|
import { ModelTestConfigPanel } from "@/components/usage/ModelTestConfigPanel";
|
|
import { UsageDashboard } from "@/components/usage/UsageDashboard";
|
|
import { LogConfigPanel } from "@/components/settings/LogConfigPanel";
|
|
import { AuthCenterPanel } from "@/components/settings/AuthCenterPanel";
|
|
import { useSettings } from "@/hooks/useSettings";
|
|
import { useImportExport } from "@/hooks/useImportExport";
|
|
import { useTranslation } from "react-i18next";
|
|
import type { SettingsFormState } from "@/hooks/useSettings";
|
|
|
|
interface SettingsDialogProps {
|
|
open: boolean;
|
|
onOpenChange: (open: boolean) => void;
|
|
onImportSuccess?: () => void | Promise<void>;
|
|
defaultTab?: string;
|
|
}
|
|
|
|
export function SettingsPage({
|
|
open,
|
|
onOpenChange,
|
|
onImportSuccess,
|
|
defaultTab = "general",
|
|
}: SettingsDialogProps) {
|
|
const { t } = useTranslation();
|
|
const {
|
|
settings,
|
|
isLoading,
|
|
isSaving,
|
|
isPortable,
|
|
appConfigDir,
|
|
resolvedDirs,
|
|
updateSettings,
|
|
updateDirectory,
|
|
updateAppConfigDir,
|
|
browseDirectory,
|
|
browseAppConfigDir,
|
|
resetDirectory,
|
|
resetAppConfigDir,
|
|
saveSettings,
|
|
autoSaveSettings,
|
|
requiresRestart,
|
|
acknowledgeRestart,
|
|
} = useSettings();
|
|
|
|
const {
|
|
selectedFile,
|
|
status: importStatus,
|
|
errorMessage,
|
|
backupId,
|
|
isImporting,
|
|
selectImportFile,
|
|
importConfig,
|
|
exportConfig,
|
|
clearSelection,
|
|
resetStatus,
|
|
} = useImportExport({ onImportSuccess });
|
|
|
|
const [activeTab, setActiveTab] = useState<string>("general");
|
|
const [showRestartPrompt, setShowRestartPrompt] = useState(false);
|
|
|
|
useEffect(() => {
|
|
if (open) {
|
|
setActiveTab(defaultTab);
|
|
resetStatus();
|
|
}
|
|
}, [open, resetStatus, defaultTab]);
|
|
|
|
useEffect(() => {
|
|
if (requiresRestart) {
|
|
setShowRestartPrompt(true);
|
|
}
|
|
}, [requiresRestart]);
|
|
|
|
const closeAfterSave = useCallback(() => {
|
|
// 保存成功后关闭:不再重置语言,避免需要“保存两次”才生效
|
|
acknowledgeRestart();
|
|
clearSelection();
|
|
resetStatus();
|
|
onOpenChange(false);
|
|
}, [acknowledgeRestart, clearSelection, onOpenChange, resetStatus]);
|
|
|
|
const handleSave = useCallback(async () => {
|
|
try {
|
|
const result = await saveSettings(undefined, { silent: false });
|
|
if (!result) return;
|
|
if (result.requiresRestart) {
|
|
setShowRestartPrompt(true);
|
|
return;
|
|
}
|
|
closeAfterSave();
|
|
} catch (error) {
|
|
console.error("[SettingsPage] Failed to save settings", error);
|
|
}
|
|
}, [closeAfterSave, saveSettings]);
|
|
|
|
const handleRestartLater = useCallback(() => {
|
|
setShowRestartPrompt(false);
|
|
closeAfterSave();
|
|
}, [closeAfterSave]);
|
|
|
|
const handleRestartNow = useCallback(async () => {
|
|
setShowRestartPrompt(false);
|
|
if (import.meta.env.DEV) {
|
|
toast.success(t("settings.devModeRestartHint"), { closeButton: true });
|
|
closeAfterSave();
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await settingsApi.restart();
|
|
} catch (error) {
|
|
console.error("[SettingsPage] Failed to restart app", error);
|
|
toast.error(t("settings.restartFailed"));
|
|
} finally {
|
|
closeAfterSave();
|
|
}
|
|
}, [closeAfterSave, t]);
|
|
|
|
// 通用设置即时保存(无需手动点击)
|
|
// 使用 autoSaveSettings 避免误触发系统 API(开机自启、Claude 插件等)
|
|
const handleAutoSave = useCallback(
|
|
async (updates: Partial<SettingsFormState>) => {
|
|
if (!settings) return;
|
|
updateSettings(updates);
|
|
try {
|
|
await autoSaveSettings(updates);
|
|
} catch (error) {
|
|
console.error("[SettingsPage] Failed to autosave settings", error);
|
|
toast.error(
|
|
t("settings.saveFailedGeneric", {
|
|
defaultValue: "保存失败,请重试",
|
|
}),
|
|
);
|
|
}
|
|
},
|
|
[autoSaveSettings, settings, t, updateSettings],
|
|
);
|
|
|
|
const isBusy = useMemo(() => isLoading && !settings, [isLoading, settings]);
|
|
|
|
return (
|
|
<div className="flex flex-col h-full overflow-hidden px-6">
|
|
{isBusy ? (
|
|
<div className="flex flex-1 items-center justify-center">
|
|
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" />
|
|
</div>
|
|
) : (
|
|
<Tabs
|
|
value={activeTab}
|
|
onValueChange={setActiveTab}
|
|
className="flex flex-col h-full"
|
|
>
|
|
<TabsList className="grid w-full grid-cols-6 mb-6 glass rounded-lg">
|
|
<TabsTrigger value="general">
|
|
{t("settings.tabGeneral")}
|
|
</TabsTrigger>
|
|
<TabsTrigger value="proxy">{t("settings.tabProxy")}</TabsTrigger>
|
|
<TabsTrigger value="auth">
|
|
{t("settings.tabAuth", { defaultValue: "认证" })}
|
|
</TabsTrigger>
|
|
<TabsTrigger value="advanced">
|
|
{t("settings.tabAdvanced")}
|
|
</TabsTrigger>
|
|
<TabsTrigger value="usage">{t("usage.title")}</TabsTrigger>
|
|
<TabsTrigger value="about">{t("common.about")}</TabsTrigger>
|
|
</TabsList>
|
|
|
|
<div className="flex-1 min-h-0 flex flex-col">
|
|
<div className="flex-1 overflow-y-auto overflow-x-hidden pr-2">
|
|
<TabsContent value="general" className="space-y-6 mt-0">
|
|
{settings ? (
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 10 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.3 }}
|
|
className="space-y-6"
|
|
>
|
|
<LanguageSettings
|
|
value={settings.language}
|
|
onChange={(lang) => handleAutoSave({ language: lang })}
|
|
/>
|
|
<ThemeSettings />
|
|
<AppVisibilitySettings
|
|
settings={settings}
|
|
onChange={handleAutoSave}
|
|
/>
|
|
<WindowSettings
|
|
settings={settings}
|
|
onChange={handleAutoSave}
|
|
/>
|
|
<SkillSyncMethodSettings
|
|
value={settings.skillSyncMethod ?? "auto"}
|
|
onChange={(method) =>
|
|
handleAutoSave({ skillSyncMethod: method })
|
|
}
|
|
/>
|
|
<TerminalSettings
|
|
value={settings.preferredTerminal}
|
|
onChange={(terminal) =>
|
|
handleAutoSave({ preferredTerminal: terminal })
|
|
}
|
|
/>
|
|
</motion.div>
|
|
) : null}
|
|
</TabsContent>
|
|
|
|
<TabsContent value="proxy" className="space-y-6 mt-0 pb-4">
|
|
{settings ? (
|
|
<ProxyTabContent
|
|
settings={settings}
|
|
onAutoSave={handleAutoSave}
|
|
/>
|
|
) : null}
|
|
</TabsContent>
|
|
|
|
<TabsContent value="auth" className="space-y-6 mt-0 pb-4">
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 10 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.3 }}
|
|
className="space-y-6"
|
|
>
|
|
<div className="flex items-center gap-3 px-1">
|
|
<KeyRound className="h-5 w-5 text-primary" />
|
|
<div>
|
|
<h2 className="text-base font-semibold">
|
|
{t("settings.authCenter.heading", {
|
|
defaultValue: "认证中心",
|
|
})}
|
|
</h2>
|
|
<p className="text-sm text-muted-foreground">
|
|
{t("settings.authCenter.headingDescription", {
|
|
defaultValue:
|
|
"统一管理可跨应用复用的 OAuth 账号和默认认证来源。",
|
|
})}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<AuthCenterPanel />
|
|
</motion.div>
|
|
</TabsContent>
|
|
|
|
<TabsContent value="advanced" className="space-y-6 mt-0 pb-4">
|
|
{settings ? (
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 10 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
transition={{ duration: 0.3 }}
|
|
className="space-y-4"
|
|
>
|
|
<Accordion
|
|
type="multiple"
|
|
defaultValue={[]}
|
|
className="w-full space-y-4"
|
|
>
|
|
<AccordionItem
|
|
value="directory"
|
|
className="rounded-xl glass-card overflow-hidden"
|
|
>
|
|
<AccordionTrigger className="px-6 py-4 hover:no-underline hover:bg-muted/50 data-[state=open]:bg-muted/50">
|
|
<div className="flex items-center gap-3">
|
|
<FolderSearch className="h-5 w-5 text-primary" />
|
|
<div className="text-left">
|
|
<h3 className="text-base font-semibold">
|
|
{t("settings.advanced.configDir.title")}
|
|
</h3>
|
|
<p className="text-sm text-muted-foreground font-normal">
|
|
{t("settings.advanced.configDir.description")}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</AccordionTrigger>
|
|
<AccordionContent className="px-6 pb-6 pt-4 border-t border-border/50">
|
|
<DirectorySettings
|
|
appConfigDir={appConfigDir}
|
|
resolvedDirs={resolvedDirs}
|
|
onAppConfigChange={updateAppConfigDir}
|
|
onBrowseAppConfig={browseAppConfigDir}
|
|
onResetAppConfig={resetAppConfigDir}
|
|
claudeDir={settings.claudeConfigDir}
|
|
codexDir={settings.codexConfigDir}
|
|
geminiDir={settings.geminiConfigDir}
|
|
opencodeDir={settings.opencodeConfigDir}
|
|
onDirectoryChange={updateDirectory}
|
|
onBrowseDirectory={browseDirectory}
|
|
onResetDirectory={resetDirectory}
|
|
/>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem
|
|
value="data"
|
|
className="rounded-xl glass-card overflow-hidden"
|
|
>
|
|
<AccordionTrigger className="px-6 py-4 hover:no-underline hover:bg-muted/50 data-[state=open]:bg-muted/50">
|
|
<div className="flex items-center gap-3">
|
|
<Database className="h-5 w-5 text-blue-500" />
|
|
<div className="text-left">
|
|
<h3 className="text-base font-semibold">
|
|
{t("settings.advanced.data.title")}
|
|
</h3>
|
|
<p className="text-sm text-muted-foreground font-normal">
|
|
{t("settings.advanced.data.description")}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</AccordionTrigger>
|
|
<AccordionContent className="px-6 pb-6 pt-4 border-t border-border/50">
|
|
<ImportExportSection
|
|
status={importStatus}
|
|
selectedFile={selectedFile}
|
|
errorMessage={errorMessage}
|
|
backupId={backupId}
|
|
isImporting={isImporting}
|
|
onSelectFile={selectImportFile}
|
|
onImport={importConfig}
|
|
onExport={exportConfig}
|
|
onClear={clearSelection}
|
|
/>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem
|
|
value="backup"
|
|
className="rounded-xl glass-card overflow-hidden"
|
|
>
|
|
<AccordionTrigger className="px-6 py-4 hover:no-underline hover:bg-muted/50 data-[state=open]:bg-muted/50">
|
|
<div className="flex items-center gap-3">
|
|
<HardDriveDownload className="h-5 w-5 text-amber-500" />
|
|
<div className="text-left">
|
|
<h3 className="text-base font-semibold">
|
|
{t("settings.advanced.backup.title", {
|
|
defaultValue: "Backup & Restore",
|
|
})}
|
|
</h3>
|
|
<p className="text-sm text-muted-foreground font-normal">
|
|
{t("settings.advanced.backup.description", {
|
|
defaultValue:
|
|
"Manage automatic backups, view and restore database snapshots",
|
|
})}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</AccordionTrigger>
|
|
<AccordionContent className="px-6 pb-6 pt-4 border-t border-border/50">
|
|
<BackupListSection
|
|
backupIntervalHours={settings.backupIntervalHours}
|
|
backupRetainCount={settings.backupRetainCount}
|
|
onSettingsChange={(updates) =>
|
|
handleAutoSave(updates)
|
|
}
|
|
/>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem
|
|
value="cloudSync"
|
|
className="rounded-xl glass-card overflow-hidden"
|
|
>
|
|
<AccordionTrigger className="px-6 py-4 hover:no-underline hover:bg-muted/50 data-[state=open]:bg-muted/50">
|
|
<div className="flex items-center gap-3">
|
|
<Cloud className="h-5 w-5 text-blue-500" />
|
|
<div className="text-left">
|
|
<h3 className="text-base font-semibold">
|
|
{t("settings.advanced.cloudSync.title")}
|
|
</h3>
|
|
<p className="text-sm text-muted-foreground font-normal">
|
|
{t("settings.advanced.cloudSync.description")}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</AccordionTrigger>
|
|
<AccordionContent className="px-6 pb-6 pt-4 border-t border-border/50">
|
|
<WebdavSyncSection
|
|
config={settings?.webdavSync}
|
|
settings={settings}
|
|
onAutoSave={handleAutoSave}
|
|
/>
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem
|
|
value="test"
|
|
className="rounded-xl glass-card overflow-hidden"
|
|
>
|
|
<AccordionTrigger className="px-6 py-4 hover:no-underline hover:bg-muted/50 data-[state=open]:bg-muted/50">
|
|
<div className="flex items-center gap-3">
|
|
<FlaskConical className="h-5 w-5 text-emerald-500" />
|
|
<div className="text-left">
|
|
<h3 className="text-base font-semibold">
|
|
{t("settings.advanced.modelTest.title")}
|
|
</h3>
|
|
<p className="text-sm text-muted-foreground font-normal">
|
|
{t("settings.advanced.modelTest.description")}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</AccordionTrigger>
|
|
<AccordionContent className="px-6 pb-6 pt-4 border-t border-border/50">
|
|
<ModelTestConfigPanel />
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
|
|
<AccordionItem
|
|
value="logConfig"
|
|
className="rounded-xl glass-card overflow-hidden"
|
|
>
|
|
<AccordionTrigger className="px-6 py-4 hover:no-underline hover:bg-muted/50 data-[state=open]:bg-muted/50">
|
|
<div className="flex items-center gap-3">
|
|
<ScrollText className="h-5 w-5 text-cyan-500" />
|
|
<div className="text-left">
|
|
<h3 className="text-base font-semibold">
|
|
{t("settings.advanced.logConfig.title")}
|
|
</h3>
|
|
<p className="text-sm text-muted-foreground font-normal">
|
|
{t("settings.advanced.logConfig.description")}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</AccordionTrigger>
|
|
<AccordionContent className="px-6 pb-6 pt-4 border-t border-border/50">
|
|
<LogConfigPanel />
|
|
</AccordionContent>
|
|
</AccordionItem>
|
|
</Accordion>
|
|
</motion.div>
|
|
) : null}
|
|
</TabsContent>
|
|
|
|
<TabsContent value="about" className="mt-0">
|
|
<AboutSection isPortable={isPortable} />
|
|
</TabsContent>
|
|
|
|
<TabsContent value="usage" className="mt-0">
|
|
<UsageDashboard />
|
|
</TabsContent>
|
|
</div>
|
|
|
|
{activeTab === "advanced" && settings && (
|
|
<div
|
|
className="flex-shrink-0 py-4 border-t border-border-default"
|
|
style={{ backgroundColor: "hsl(var(--background))" }}
|
|
>
|
|
<div className="px-6 flex items-center justify-end gap-3">
|
|
<Button onClick={handleSave} disabled={isSaving}>
|
|
{isSaving ? (
|
|
<span className="inline-flex items-center gap-2">
|
|
<Loader2 className="h-4 w-4 animate-spin" />
|
|
{t("settings.saving")}
|
|
</span>
|
|
) : (
|
|
<>
|
|
<Save className="mr-2 h-4 w-4" />
|
|
{t("common.save")}
|
|
</>
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</Tabs>
|
|
)}
|
|
|
|
<Dialog
|
|
open={showRestartPrompt}
|
|
onOpenChange={(open) => !open && handleRestartLater()}
|
|
>
|
|
<DialogContent zIndex="alert" className="max-w-md glass border-border">
|
|
<DialogHeader>
|
|
<DialogTitle>{t("settings.restartRequired")}</DialogTitle>
|
|
</DialogHeader>
|
|
<div className="px-6">
|
|
<p className="text-sm text-muted-foreground">
|
|
{t("settings.restartRequiredMessage")}
|
|
</p>
|
|
</div>
|
|
<DialogFooter>
|
|
<Button
|
|
variant="ghost"
|
|
onClick={handleRestartLater}
|
|
className="hover:bg-muted/50"
|
|
>
|
|
{t("settings.restartLater")}
|
|
</Button>
|
|
<Button
|
|
onClick={handleRestartNow}
|
|
className="bg-primary hover:bg-primary/90"
|
|
>
|
|
{t("settings.restartNow")}
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</div>
|
|
);
|
|
}
|