fix: refresh proxies interval, close #235

This commit is contained in:
GyDi 2022-10-26 01:08:34 +08:00
parent f991e49203
commit 947c38c124

View File

@ -13,7 +13,9 @@ import ProxyGroup from "@/components/proxy/proxy-group";
const ProxyPage = () => { const ProxyPage = () => {
const { t } = useTranslation(); const { t } = useTranslation();
const { mutate } = useSWRConfig(); const { mutate } = useSWRConfig();
const { data: proxiesData } = useSWR("getProxies", getProxies); const { data: proxiesData } = useSWR("getProxies", getProxies, {
refreshInterval: 45000, // 45s
});
const { data: clashConfig } = useSWR("getClashConfig", getClashConfig); const { data: clashConfig } = useSWR("getClashConfig", getClashConfig);
const modeList = ["rule", "global", "direct", "script"]; const modeList = ["rule", "global", "direct", "script"];
@ -37,6 +39,7 @@ const ProxyPage = () => {
mutate("getClashConfig"); mutate("getClashConfig");
}); });
// 仅mode为全局和直连的时候展示global分组
const displayGroups = useMemo(() => { const displayGroups = useMemo(() => {
if (!global) return groups; if (!global) return groups;
if (curMode === "global" || curMode === "direct") if (curMode === "global" || curMode === "direct")