* fix: check if service installed when toggle tun mode on tray * chore: cargo fmt * fix: auto disable tun mode * docs: update UPDATELOG.md * fix: init Tun mode status * chore: update * feat: disable tun mode tray menu when tun mode is unavailable * fix: restart core when uninstall service is canceled * chore: remove check notification when toggle tun mode * chore: fix updatelog --------- Co-authored-by: Tunglies <77394545+Tunglies@users.noreply.github.com>
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { t } from "i18next";
|
|
import { useCallback } from "react";
|
|
|
|
import { installService, restartCore } from "@/services/cmds";
|
|
import { showNotice } from "@/services/noticeService";
|
|
|
|
import { useSystemState } from "./use-system-state";
|
|
|
|
const executeWithErrorHandling = async (
|
|
operation: () => Promise<void>,
|
|
loadingMessage: string,
|
|
successMessage?: string,
|
|
) => {
|
|
try {
|
|
showNotice("info", t(loadingMessage));
|
|
await operation();
|
|
if (successMessage) {
|
|
showNotice("success", t(successMessage));
|
|
}
|
|
} catch (err) {
|
|
const msg = (err as Error)?.message || String(err);
|
|
showNotice("error", msg);
|
|
throw err;
|
|
}
|
|
};
|
|
|
|
export const useServiceInstaller = () => {
|
|
const { mutateSystemState } = useSystemState();
|
|
|
|
const installServiceAndRestartCore = useCallback(async () => {
|
|
await executeWithErrorHandling(
|
|
() => installService(),
|
|
"Installing Service...",
|
|
"Service Installed Successfully",
|
|
);
|
|
|
|
await executeWithErrorHandling(
|
|
() => restartCore(),
|
|
"Restarting Core...",
|
|
"Clash Core Restarted",
|
|
);
|
|
|
|
await mutateSystemState();
|
|
}, [mutateSystemState]);
|
|
return { installServiceAndRestartCore };
|
|
};
|