mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-07-27 08:14:33 +08:00
cfb113ac8d
Move "minimize to tray on close" to the bottom of window settings. Change skipClaudeOnboarding default to false.
61 lines
2.2 KiB
TypeScript
61 lines
2.2 KiB
TypeScript
import { useTranslation } from "react-i18next";
|
|
import type { SettingsFormState } from "@/hooks/useSettings";
|
|
import { AppWindow, MonitorUp, Power } from "lucide-react";
|
|
import { ToggleRow } from "@/components/ui/toggle-row";
|
|
|
|
interface WindowSettingsProps {
|
|
settings: SettingsFormState;
|
|
onChange: (updates: Partial<SettingsFormState>) => void;
|
|
}
|
|
|
|
export function WindowSettings({ settings, onChange }: WindowSettingsProps) {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<section className="space-y-4">
|
|
<div className="flex items-center gap-2 pb-2 border-b border-border/40">
|
|
<AppWindow className="h-4 w-4 text-primary" />
|
|
<h3 className="text-sm font-medium">{t("settings.windowBehavior")}</h3>
|
|
</div>
|
|
|
|
<div className="space-y-3">
|
|
<ToggleRow
|
|
icon={<Power className="h-4 w-4 text-orange-500" />}
|
|
title={t("settings.launchOnStartup")}
|
|
description={t("settings.launchOnStartupDescription")}
|
|
checked={!!settings.launchOnStartup}
|
|
onCheckedChange={(value) => onChange({ launchOnStartup: value })}
|
|
/>
|
|
|
|
<ToggleRow
|
|
icon={<MonitorUp className="h-4 w-4 text-purple-500" />}
|
|
title={t("settings.enableClaudePluginIntegration")}
|
|
description={t("settings.enableClaudePluginIntegrationDescription")}
|
|
checked={!!settings.enableClaudePluginIntegration}
|
|
onCheckedChange={(value) =>
|
|
onChange({ enableClaudePluginIntegration: value })
|
|
}
|
|
/>
|
|
|
|
<ToggleRow
|
|
icon={<MonitorUp className="h-4 w-4 text-cyan-500" />}
|
|
title={t("settings.skipClaudeOnboarding")}
|
|
description={t("settings.skipClaudeOnboardingDescription")}
|
|
checked={!!settings.skipClaudeOnboarding}
|
|
onCheckedChange={(value) => onChange({ skipClaudeOnboarding: value })}
|
|
/>
|
|
|
|
<ToggleRow
|
|
icon={<AppWindow className="h-4 w-4 text-blue-500" />}
|
|
title={t("settings.minimizeToTray")}
|
|
description={t("settings.minimizeToTrayDescription")}
|
|
checked={settings.minimizeToTrayOnClose}
|
|
onCheckedChange={(value) =>
|
|
onChange({ minimizeToTrayOnClose: value })
|
|
}
|
|
/>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|