mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-04 23:23:45 +08:00
248 lines
8.0 KiB
TypeScript
248 lines
8.0 KiB
TypeScript
import { useCallback, useRef } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { open } from "@tauri-apps/plugin-dialog";
|
|
import { Button, MenuItem, Select, Input } from "@mui/material";
|
|
import { copyClashEnv } from "@/services/cmds";
|
|
import { useVerge } from "@/hooks/use-verge";
|
|
import { DialogRef, Notice } from "@/components/base";
|
|
import { SettingList, SettingItem } from "./mods/setting-comp";
|
|
import { ThemeModeSwitch } from "./mods/theme-mode-switch";
|
|
import { ConfigViewer } from "./mods/config-viewer";
|
|
import { HotkeyViewer } from "./mods/hotkey-viewer";
|
|
import { MiscViewer } from "./mods/misc-viewer";
|
|
import { ThemeViewer } from "./mods/theme-viewer";
|
|
import { GuardState } from "./mods/guard-state";
|
|
import { LayoutViewer } from "./mods/layout-viewer";
|
|
import { UpdateViewer } from "./mods/update-viewer";
|
|
import { BackupViewer } from "./mods/backup-viewer";
|
|
import getSystem from "@/utils/get-system";
|
|
import { routers } from "@/pages/_routers";
|
|
import { TooltipIcon } from "@/components/base/base-tooltip-icon";
|
|
import { ContentCopyRounded } from "@mui/icons-material";
|
|
import { languages } from "@/services/i18n";
|
|
|
|
interface Props {
|
|
onError?: (err: Error) => void;
|
|
}
|
|
|
|
const OS = getSystem();
|
|
|
|
const languageOptions = Object.entries(languages).map(([code, _]) => {
|
|
const labels: { [key: string]: string } = {
|
|
en: "English",
|
|
ru: "Русский",
|
|
zh: "中文",
|
|
fa: "فارسی",
|
|
tt: "Татар",
|
|
id: "Bahasa Indonesia",
|
|
ar: "العربية",
|
|
};
|
|
return { code, label: labels[code] };
|
|
});
|
|
|
|
const SettingVergeBasic = ({ onError }: Props) => {
|
|
const { t } = useTranslation();
|
|
|
|
const { verge, patchVerge, mutateVerge } = useVerge();
|
|
const {
|
|
theme_mode,
|
|
language,
|
|
tray_event,
|
|
env_type,
|
|
startup_script,
|
|
start_page,
|
|
} = verge ?? {};
|
|
const configRef = useRef<DialogRef>(null);
|
|
const hotkeyRef = useRef<DialogRef>(null);
|
|
const miscRef = useRef<DialogRef>(null);
|
|
const themeRef = useRef<DialogRef>(null);
|
|
const layoutRef = useRef<DialogRef>(null);
|
|
const updateRef = useRef<DialogRef>(null);
|
|
const backupRef = useRef<DialogRef>(null);
|
|
|
|
const onChangeData = (patch: any) => {
|
|
mutateVerge({ ...verge, ...patch }, false);
|
|
};
|
|
|
|
const onCopyClashEnv = useCallback(async () => {
|
|
await copyClashEnv();
|
|
Notice.success(t("Copy Success"), 1000);
|
|
}, []);
|
|
|
|
return (
|
|
<SettingList title={t("Verge Basic Setting")}>
|
|
<ThemeViewer ref={themeRef} />
|
|
<ConfigViewer ref={configRef} />
|
|
<HotkeyViewer ref={hotkeyRef} />
|
|
<MiscViewer ref={miscRef} />
|
|
<LayoutViewer ref={layoutRef} />
|
|
<UpdateViewer ref={updateRef} />
|
|
<BackupViewer ref={backupRef} />
|
|
|
|
<SettingItem label={t("Language")}>
|
|
<GuardState
|
|
value={language ?? "en"}
|
|
onCatch={onError}
|
|
onFormat={(e: any) => e.target.value}
|
|
onChange={(e) => onChangeData({ language: e })}
|
|
onGuard={(e) => patchVerge({ language: e })}
|
|
>
|
|
<Select size="small" sx={{ width: 110, "> div": { py: "7.5px" } }}>
|
|
{languageOptions.map(({ code, label }) => (
|
|
<MenuItem key={code} value={code}>
|
|
{label}
|
|
</MenuItem>
|
|
))}
|
|
</Select>
|
|
</GuardState>
|
|
</SettingItem>
|
|
|
|
<SettingItem label={t("Theme Mode")}>
|
|
<GuardState
|
|
value={theme_mode}
|
|
onCatch={onError}
|
|
onChange={(e) => onChangeData({ theme_mode: e })}
|
|
onGuard={(e) => patchVerge({ theme_mode: e })}
|
|
>
|
|
<ThemeModeSwitch />
|
|
</GuardState>
|
|
</SettingItem>
|
|
|
|
{OS !== "linux" && (
|
|
<SettingItem label={t("Tray Click Event")}>
|
|
<GuardState
|
|
value={tray_event ?? "main_window"}
|
|
onCatch={onError}
|
|
onFormat={(e: any) => e.target.value}
|
|
onChange={(e) => onChangeData({ tray_event: e })}
|
|
onGuard={(e) => patchVerge({ tray_event: e })}
|
|
>
|
|
<Select size="small" sx={{ width: 140, "> div": { py: "7.5px" } }}>
|
|
<MenuItem value="main_window">{t("Show Main Window")}</MenuItem>
|
|
<MenuItem value="tray_menu">{t("Show Tray Menu")}</MenuItem>
|
|
<MenuItem value="system_proxy">{t("System Proxy")}</MenuItem>
|
|
<MenuItem value="tun_mode">{t("Tun Mode")}</MenuItem>
|
|
<MenuItem value="disable">{t("Disable")}</MenuItem>
|
|
</Select>
|
|
</GuardState>
|
|
</SettingItem>
|
|
)}
|
|
|
|
<SettingItem
|
|
label={t("Copy Env Type")}
|
|
extra={
|
|
<TooltipIcon icon={ContentCopyRounded} onClick={onCopyClashEnv} />
|
|
}
|
|
>
|
|
<GuardState
|
|
value={env_type ?? (OS === "windows" ? "powershell" : "bash")}
|
|
onCatch={onError}
|
|
onFormat={(e: any) => e.target.value}
|
|
onChange={(e) => onChangeData({ env_type: e })}
|
|
onGuard={(e) => patchVerge({ env_type: e })}
|
|
>
|
|
<Select size="small" sx={{ width: 140, "> div": { py: "7.5px" } }}>
|
|
<MenuItem value="bash">Bash</MenuItem>
|
|
<MenuItem value="fish">Fish</MenuItem>
|
|
<MenuItem value="nushell">Nushell</MenuItem>
|
|
<MenuItem value="cmd">CMD</MenuItem>
|
|
<MenuItem value="powershell">PowerShell</MenuItem>
|
|
</Select>
|
|
</GuardState>
|
|
</SettingItem>
|
|
|
|
<SettingItem label={t("Start Page")}>
|
|
<GuardState
|
|
value={start_page ?? "/"}
|
|
onCatch={onError}
|
|
onFormat={(e: any) => e.target.value}
|
|
onChange={(e) => onChangeData({ start_page: e })}
|
|
onGuard={(e) => patchVerge({ start_page: e })}
|
|
>
|
|
<Select size="small" sx={{ width: 140, "> div": { py: "7.5px" } }}>
|
|
{routers.map((page: { label: string; path: string }) => {
|
|
return (
|
|
<MenuItem key={page.path} value={page.path}>
|
|
{t(page.label)}
|
|
</MenuItem>
|
|
);
|
|
})}
|
|
</Select>
|
|
</GuardState>
|
|
</SettingItem>
|
|
|
|
<SettingItem label={t("Startup Script")}>
|
|
<GuardState
|
|
value={startup_script ?? ""}
|
|
onCatch={onError}
|
|
onFormat={(e: any) => e.target.value}
|
|
onChange={(e) => onChangeData({ startup_script: e })}
|
|
onGuard={(e) => patchVerge({ startup_script: e })}
|
|
>
|
|
<Input
|
|
value={startup_script}
|
|
disabled
|
|
sx={{ width: 230 }}
|
|
endAdornment={
|
|
<>
|
|
<Button
|
|
onClick={async () => {
|
|
const selected = await open({
|
|
directory: false,
|
|
multiple: false,
|
|
filters: [
|
|
{
|
|
name: "Shell Script",
|
|
extensions: ["sh", "bat", "ps1"],
|
|
},
|
|
],
|
|
});
|
|
if (selected) {
|
|
onChangeData({ startup_script: `${selected}` });
|
|
patchVerge({ startup_script: `${selected}` });
|
|
}
|
|
}}
|
|
>
|
|
{t("Browse")}
|
|
</Button>
|
|
{startup_script && (
|
|
<Button
|
|
onClick={async () => {
|
|
onChangeData({ startup_script: "" });
|
|
patchVerge({ startup_script: "" });
|
|
}}
|
|
>
|
|
{t("Clear")}
|
|
</Button>
|
|
)}
|
|
</>
|
|
}
|
|
></Input>
|
|
</GuardState>
|
|
</SettingItem>
|
|
|
|
<SettingItem
|
|
onClick={() => themeRef.current?.open()}
|
|
label={t("Theme Setting")}
|
|
/>
|
|
|
|
<SettingItem
|
|
onClick={() => layoutRef.current?.open()}
|
|
label={t("Layout Setting")}
|
|
/>
|
|
|
|
<SettingItem
|
|
onClick={() => miscRef.current?.open()}
|
|
label={t("Miscellaneous")}
|
|
/>
|
|
|
|
<SettingItem
|
|
onClick={() => hotkeyRef.current?.open()}
|
|
label={t("Hotkey Setting")}
|
|
/>
|
|
</SettingList>
|
|
);
|
|
};
|
|
|
|
export default SettingVergeBasic;
|