mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 04:33:45 +08:00
158 lines
4.7 KiB
TypeScript
158 lines
4.7 KiB
TypeScript
import useSWR from "swr";
|
|
import { useRef } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { IconButton, Switch } from "@mui/material";
|
|
import { ArrowForward, PrivacyTipRounded, Settings } from "@mui/icons-material";
|
|
import { checkService } from "@/services/cmds";
|
|
import { useVerge } from "@/hooks/use-verge";
|
|
import { DialogRef } from "@/components/base";
|
|
import { SettingList, SettingItem } from "./mods/setting-comp";
|
|
import { GuardState } from "./mods/guard-state";
|
|
import { ServiceViewer } from "./mods/service-viewer";
|
|
import { SysproxyViewer } from "./mods/sysproxy-viewer";
|
|
import getSystem from "@/utils/get-system";
|
|
|
|
interface Props {
|
|
onError?: (err: Error) => void;
|
|
}
|
|
|
|
const isWIN = getSystem() === "windows";
|
|
|
|
const SettingSystem = ({ onError }: Props) => {
|
|
const { t } = useTranslation();
|
|
|
|
const { verge, mutateVerge, patchVerge } = useVerge();
|
|
|
|
// service mode
|
|
const { data: serviceStatus } = useSWR(
|
|
isWIN ? "checkService" : null,
|
|
checkService,
|
|
{ revalidateIfStale: false, shouldRetryOnError: false }
|
|
);
|
|
|
|
const serviceRef = useRef<DialogRef>(null);
|
|
const sysproxyRef = useRef<DialogRef>(null);
|
|
|
|
const {
|
|
enable_tun_mode,
|
|
enable_auto_launch,
|
|
enable_service_mode,
|
|
enable_silent_start,
|
|
enable_system_proxy,
|
|
} = verge ?? {};
|
|
|
|
const onSwitchFormat = (_e: any, value: boolean) => value;
|
|
const onChangeData = (patch: Partial<IVergeConfig>) => {
|
|
mutateVerge({ ...verge, ...patch }, false);
|
|
};
|
|
|
|
return (
|
|
<SettingList title={t("System Setting")}>
|
|
<SysproxyViewer ref={sysproxyRef} />
|
|
{isWIN && (
|
|
<ServiceViewer ref={serviceRef} enable={!!enable_service_mode} />
|
|
)}
|
|
|
|
<SettingItem label={t("Tun Mode")}>
|
|
<GuardState
|
|
value={enable_tun_mode ?? false}
|
|
valueProps="checked"
|
|
onCatch={onError}
|
|
onFormat={onSwitchFormat}
|
|
onChange={(e) => onChangeData({ enable_tun_mode: e })}
|
|
onGuard={(e) => patchVerge({ enable_tun_mode: e })}
|
|
>
|
|
<Switch edge="end" />
|
|
</GuardState>
|
|
</SettingItem>
|
|
|
|
{isWIN && (
|
|
<SettingItem
|
|
label={t("Service Mode")}
|
|
extra={
|
|
(serviceStatus === "active" || serviceStatus === "installed") && (
|
|
<PrivacyTipRounded
|
|
fontSize="small"
|
|
style={{ cursor: "pointer", opacity: 0.75 }}
|
|
onClick={() => sysproxyRef.current?.open()}
|
|
/>
|
|
)
|
|
}
|
|
>
|
|
{serviceStatus === "active" || serviceStatus === "installed" ? (
|
|
<GuardState
|
|
value={enable_service_mode ?? false}
|
|
valueProps="checked"
|
|
onCatch={onError}
|
|
onFormat={onSwitchFormat}
|
|
onChange={(e) => onChangeData({ enable_service_mode: e })}
|
|
onGuard={(e) => patchVerge({ enable_service_mode: e })}
|
|
>
|
|
<Switch edge="end" />
|
|
</GuardState>
|
|
) : (
|
|
<IconButton
|
|
color="inherit"
|
|
size="small"
|
|
sx={{ my: "2px" }}
|
|
onClick={() => sysproxyRef.current?.open()}
|
|
>
|
|
<ArrowForward />
|
|
</IconButton>
|
|
)}
|
|
</SettingItem>
|
|
)}
|
|
|
|
<SettingItem
|
|
label={t("System Proxy")}
|
|
extra={
|
|
<Settings
|
|
fontSize="small"
|
|
style={{ cursor: "pointer", opacity: 0.75 }}
|
|
onClick={() => sysproxyRef.current?.open()}
|
|
/>
|
|
}
|
|
>
|
|
<GuardState
|
|
value={enable_system_proxy ?? false}
|
|
valueProps="checked"
|
|
onCatch={onError}
|
|
onFormat={onSwitchFormat}
|
|
onChange={(e) => onChangeData({ enable_system_proxy: e })}
|
|
onGuard={(e) => patchVerge({ enable_system_proxy: e })}
|
|
>
|
|
<Switch edge="end" />
|
|
</GuardState>
|
|
</SettingItem>
|
|
|
|
<SettingItem label={t("Auto Launch")}>
|
|
<GuardState
|
|
value={enable_auto_launch ?? false}
|
|
valueProps="checked"
|
|
onCatch={onError}
|
|
onFormat={onSwitchFormat}
|
|
onChange={(e) => onChangeData({ enable_auto_launch: e })}
|
|
onGuard={(e) => patchVerge({ enable_auto_launch: e })}
|
|
>
|
|
<Switch edge="end" />
|
|
</GuardState>
|
|
</SettingItem>
|
|
|
|
<SettingItem label={t("Silent Start")}>
|
|
<GuardState
|
|
value={enable_silent_start ?? false}
|
|
valueProps="checked"
|
|
onCatch={onError}
|
|
onFormat={onSwitchFormat}
|
|
onChange={(e) => onChangeData({ enable_silent_start: e })}
|
|
onGuard={(e) => patchVerge({ enable_silent_start: e })}
|
|
>
|
|
<Switch edge="end" />
|
|
</GuardState>
|
|
</SettingItem>
|
|
</SettingList>
|
|
);
|
|
};
|
|
|
|
export default SettingSystem;
|