mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2024-11-16 03:32:36 +08:00
feat: proxy page use swr
This commit is contained in:
parent
9d62462a96
commit
81aef736d6
|
@ -1,19 +1,11 @@
|
||||||
import { useEffect, useState } from "react";
|
import useSWR from "swr";
|
||||||
import { Box, List, Typography } from "@mui/material";
|
import { Box, List, Typography } from "@mui/material";
|
||||||
import services from "../services";
|
import services from "../services";
|
||||||
import ProxyGroup from "../components/proxy-group";
|
import ProxyGroup from "../components/proxy-group";
|
||||||
import type { ProxyGroupItem } from "../services/proxy";
|
|
||||||
|
|
||||||
const ProxyPage = () => {
|
const ProxyPage = () => {
|
||||||
const [groups, setGroups] = useState<ProxyGroupItem[]>([]);
|
const { data } = useSWR("getProxies", services.getProxies);
|
||||||
|
const { groups = [] } = data ?? {};
|
||||||
useEffect(() => {
|
|
||||||
// Todo
|
|
||||||
// result cache
|
|
||||||
services.getProxyInfo().then((res) => {
|
|
||||||
setGroups(res.groups);
|
|
||||||
});
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box sx={{ width: 0.9, maxWidth: "850px", mx: "auto", mb: 2 }}>
|
<Box sx={{ width: 0.9, maxWidth: "850px", mx: "auto", mb: 2 }}>
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import { useRef, useState } from "react";
|
import { useRef, useState } from "react";
|
||||||
import useSWR, { useSWRConfig } from "swr";
|
import useSWR, { useSWRConfig } from "swr";
|
||||||
import { Box, Button, Grid, TextField, Typography } from "@mui/material";
|
import { Box, Button, Grid, TextField, Typography } from "@mui/material";
|
||||||
|
import services from "../services";
|
||||||
import {
|
import {
|
||||||
getProfiles,
|
getProfiles,
|
||||||
importProfile,
|
importProfile,
|
||||||
|
@ -35,6 +36,7 @@ const RulesPage = () => {
|
||||||
putProfiles(index)
|
putProfiles(index)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
mutate("getProfiles", { ...profiles, current: index }, true);
|
mutate("getProfiles", { ...profiles, current: index }, true);
|
||||||
|
mutate("getProxies", services.getProxies());
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
|
|
|
@ -17,7 +17,7 @@ export type ProxyGroupItem = Omit<ProxyItem, "all"> & {
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Get the Proxy infomation
|
/// Get the Proxy infomation
|
||||||
export async function getProxyInfo() {
|
export async function getProxies() {
|
||||||
const axiosIns = await getAxios();
|
const axiosIns = await getAxios();
|
||||||
const response = await axiosIns.get<any, any>("/proxies");
|
const response = await axiosIns.get<any, any>("/proxies");
|
||||||
const proxies = (response?.proxies ?? {}) as Record<string, ProxyItem>;
|
const proxies = (response?.proxies ?? {}) as Record<string, ProxyItem>;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user