feat: optimize the service mode interaction logic.

This commit is contained in:
MystiPanda 2024-07-15 19:58:05 +08:00
parent 9ff5d8d4e0
commit ef337ffb69
No known key found for this signature in database

View File

@ -1,16 +1,22 @@
import useSWR from "swr"; import useSWR from "swr";
import { useRef } from "react"; import { useRef, useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { PrivacyTipRounded, SettingsRounded } from "@mui/icons-material"; import { SettingsRounded } from "@mui/icons-material";
import { checkService } from "@/services/cmds"; import {
checkService,
installService,
uninstallService,
} from "@/services/cmds";
import { useVerge } from "@/hooks/use-verge"; import { useVerge } from "@/hooks/use-verge";
import { DialogRef, Switch } from "@/components/base"; import { DialogRef, Notice, Switch } from "@/components/base";
import { SettingList, SettingItem } from "./mods/setting-comp"; import { SettingList, SettingItem } from "./mods/setting-comp";
import { GuardState } from "./mods/guard-state"; import { GuardState } from "./mods/guard-state";
import { ServiceViewer } from "./mods/service-viewer"; import { ServiceViewer } from "./mods/service-viewer";
import { SysproxyViewer } from "./mods/sysproxy-viewer"; import { SysproxyViewer } from "./mods/sysproxy-viewer";
import { TunViewer } from "./mods/tun-viewer"; import { TunViewer } from "./mods/tun-viewer";
import { TooltipIcon } from "@/components/base/base-tooltip-icon"; import { TooltipIcon } from "@/components/base/base-tooltip-icon";
import { LoadingButton } from "@mui/lab";
import { useLockFn } from "ahooks";
interface Props { interface Props {
onError?: (err: Error) => void; onError?: (err: Error) => void;
@ -20,13 +26,18 @@ const SettingSystem = ({ onError }: Props) => {
const { t } = useTranslation(); const { t } = useTranslation();
const { verge, mutateVerge, patchVerge } = useVerge(); const { verge, mutateVerge, patchVerge } = useVerge();
const [serviceLoading, setServiceLoading] = useState(false);
const [uninstallServiceLoaing, setUninstallServiceLoading] = useState(false);
// service mode // service mode
const { data: serviceStatus } = useSWR("checkService", checkService, { const { data: serviceStatus, mutate: mutateServiceStatus } = useSWR(
revalidateIfStale: false, "checkService",
shouldRetryOnError: false, checkService,
focusThrottleInterval: 36e5, // 1 hour {
}); revalidateIfStale: false,
shouldRetryOnError: false,
focusThrottleInterval: 36e5, // 1 hour
}
);
const serviceRef = useRef<DialogRef>(null); const serviceRef = useRef<DialogRef>(null);
const sysproxyRef = useRef<DialogRef>(null); const sysproxyRef = useRef<DialogRef>(null);
@ -45,6 +56,53 @@ const SettingSystem = ({ onError }: Props) => {
mutateVerge({ ...verge, ...patch }, false); mutateVerge({ ...verge, ...patch }, false);
}; };
const onInstallOrEnableService = useLockFn(async () => {
setServiceLoading(true);
try {
if (serviceStatus === "uninstall" || serviceStatus === "unknown") {
// install service
await installService();
await mutateServiceStatus();
setTimeout(() => {
mutateServiceStatus();
}, 2000);
Notice.success(t("Service Installed Successfully"));
setServiceLoading(false);
} else {
// enable or disable service
const enable = serviceStatus === "active";
await patchVerge({ enable_service_mode: !enable });
onChangeData({ enable_service_mode: !enable });
await mutateServiceStatus();
setTimeout(() => {
mutateServiceStatus();
}, 2000);
setServiceLoading(false);
}
} catch (err: any) {
await mutateServiceStatus();
Notice.error(err.message || err.toString());
setServiceLoading(false);
}
});
const onUninstallService = useLockFn(async () => {
setUninstallServiceLoading(true);
try {
await uninstallService();
await mutateServiceStatus();
setTimeout(() => {
mutateServiceStatus();
}, 2000);
Notice.success(t("Service Uninstalled Successfully"));
setUninstallServiceLoading(false);
} catch (err: any) {
await mutateServiceStatus();
Notice.error(err.message || err.toString());
setUninstallServiceLoading(false);
}
});
return ( return (
<SettingList title={t("System Setting")}> <SettingList title={t("System Setting")}>
<SysproxyViewer ref={sysproxyRef} /> <SysproxyViewer ref={sysproxyRef} />
@ -66,38 +124,52 @@ const SettingSystem = ({ onError }: Props) => {
valueProps="checked" valueProps="checked"
onCatch={onError} onCatch={onError}
onFormat={onSwitchFormat} onFormat={onSwitchFormat}
onChange={(e) => onChangeData({ enable_tun_mode: e })} onChange={(e) => {
onGuard={(e) => patchVerge({ enable_tun_mode: e })} if (serviceStatus !== "active") {
onChangeData({ enable_tun_mode: false });
} else {
onChangeData({ enable_tun_mode: e });
}
}}
onGuard={(e) => {
if (serviceStatus !== "active" && e) {
Notice.error(t("Please enable service mode first"));
return Promise.resolve();
} else {
return patchVerge({ enable_tun_mode: e });
}
}}
> >
<Switch edge="end" /> <Switch edge="end" />
</GuardState> </GuardState>
</SettingItem> </SettingItem>
<SettingItem <SettingItem label={t("Service Mode")}>
label={t("Service Mode")} <LoadingButton
extra={ size="small"
<TooltipIcon variant="contained"
title={t("Service Mode Info")} sx={{ mr: serviceStatus !== "installed" ? -1 : 0 }}
icon={PrivacyTipRounded} onClick={onInstallOrEnableService}
onClick={() => serviceRef.current?.open()} loading={serviceLoading}
/>
}
>
<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 {serviceStatus === "active"
edge="end" ? t("Disable")
disabled={ : serviceStatus === "installed"
serviceStatus !== "active" && serviceStatus !== "installed" ? t("Enable")
} : t("Install")}
/> </LoadingButton>
</GuardState> {serviceStatus === "installed" && (
<LoadingButton
size="small"
variant="outlined"
color="error"
sx={{ ml: 1, mr: -1 }}
onClick={onUninstallService}
loading={uninstallServiceLoaing}
>
{t("Uninstall")}
</LoadingButton>
)}
</SettingItem> </SettingItem>
<SettingItem <SettingItem