mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-06 08:43:44 +08:00
165 lines
4.5 KiB
TypeScript
165 lines
4.5 KiB
TypeScript
import useSWR, { useSWRConfig } from "swr";
|
|
import { useEffect, useRef, useState } from "react";
|
|
import { Box, Button, Grid, TextField } from "@mui/material";
|
|
import {
|
|
getProfiles,
|
|
selectProfile,
|
|
patchProfile,
|
|
importProfile,
|
|
newProfile,
|
|
} from "../services/cmds";
|
|
import { getProxies, updateProxy } from "../services/api";
|
|
import noop from "../utils/noop";
|
|
import Notice from "../components/base/base-notice";
|
|
import BasePage from "../components/base/base-page";
|
|
import ProfileItem from "../components/profile/profile-item";
|
|
import ProfileNew from "../components/profile/profile-new";
|
|
|
|
const ProfilePage = () => {
|
|
const [url, setUrl] = useState("");
|
|
const [disabled, setDisabled] = useState(false);
|
|
|
|
const { mutate } = useSWRConfig();
|
|
const { data: profiles = {} } = useSWR("getProfiles", getProfiles);
|
|
|
|
useEffect(() => {
|
|
if (profiles.current == null) return;
|
|
if (!profiles.items) profiles.items = [];
|
|
|
|
const current = profiles.current;
|
|
const profile = profiles.items![current];
|
|
if (!profile) return;
|
|
|
|
setTimeout(async () => {
|
|
const proxiesData = await getProxies();
|
|
mutate("getProxies", proxiesData);
|
|
|
|
// init selected array
|
|
const { selected = [] } = profile;
|
|
const selectedMap = Object.fromEntries(
|
|
selected.map((each) => [each.name!, each.now!])
|
|
);
|
|
|
|
// todo: enhance error handle
|
|
let hasChange = false;
|
|
proxiesData.groups.forEach((group) => {
|
|
const { name, now } = group;
|
|
|
|
if (!now || selectedMap[name] === now) return;
|
|
if (selectedMap[name] == null) {
|
|
selectedMap[name] = now!;
|
|
} else {
|
|
hasChange = true;
|
|
updateProxy(name, selectedMap[name]);
|
|
}
|
|
});
|
|
// update profile selected list
|
|
profile.selected = Object.entries(selectedMap).map(([name, now]) => ({
|
|
name,
|
|
now,
|
|
}));
|
|
patchProfile(current!, profile).catch(console.error);
|
|
// update proxies cache
|
|
if (hasChange) mutate("getProxies", getProxies());
|
|
}, 100);
|
|
}, [profiles]);
|
|
|
|
const onImport = async () => {
|
|
if (!url) return;
|
|
setUrl("");
|
|
setDisabled(true);
|
|
|
|
try {
|
|
await importProfile(url);
|
|
mutate("getProfiles", getProfiles());
|
|
if (!profiles.items?.length) selectProfile(0).catch(noop);
|
|
Notice.success("Successfully import profile.");
|
|
} catch {
|
|
Notice.error("Failed to import profile.");
|
|
} finally {
|
|
setDisabled(false);
|
|
}
|
|
};
|
|
|
|
const lockRef = useRef(false);
|
|
const onSelect = async (index: number, force: boolean) => {
|
|
if (lockRef.current) return;
|
|
if (!force && index === profiles.current) return;
|
|
lockRef.current = true;
|
|
try {
|
|
await selectProfile(index);
|
|
mutate("getProfiles", { ...profiles, current: index }, true);
|
|
} catch (err: any) {
|
|
err && Notice.error(err.toString());
|
|
} finally {
|
|
lockRef.current = false;
|
|
}
|
|
};
|
|
|
|
const lockNewRef = useRef(false);
|
|
const [dialogOpen, setDialogOpen] = useState(false);
|
|
const onNew = async (name: string, desc: string) => {
|
|
if (lockNewRef.current) return;
|
|
lockNewRef.current = true;
|
|
|
|
try {
|
|
await newProfile(name, desc);
|
|
setDialogOpen(false);
|
|
mutate("getProfiles");
|
|
} catch (err: any) {
|
|
err && Notice.error(err.toString());
|
|
} finally {
|
|
lockNewRef.current = false;
|
|
}
|
|
};
|
|
|
|
return (
|
|
<BasePage title="Profiles">
|
|
<Box sx={{ display: "flex", mb: 3 }}>
|
|
<TextField
|
|
id="profile_url"
|
|
name="profile_url"
|
|
label="Profile URL"
|
|
size="small"
|
|
fullWidth
|
|
value={url}
|
|
onChange={(e) => setUrl(e.target.value)}
|
|
sx={{ mr: 1 }}
|
|
/>
|
|
<Button
|
|
disabled={!url || disabled}
|
|
variant="contained"
|
|
onClick={onImport}
|
|
sx={{ mr: 1 }}
|
|
>
|
|
Import
|
|
</Button>
|
|
<Button variant="contained" onClick={() => setDialogOpen(true)}>
|
|
New
|
|
</Button>
|
|
</Box>
|
|
|
|
<Grid container spacing={3}>
|
|
{profiles?.items?.map((item, idx) => (
|
|
<Grid item xs={12} sm={6} key={item.file}>
|
|
<ProfileItem
|
|
index={idx}
|
|
selected={profiles.current === idx}
|
|
itemData={item}
|
|
onSelect={(f) => onSelect(idx, f)}
|
|
/>
|
|
</Grid>
|
|
))}
|
|
</Grid>
|
|
|
|
<ProfileNew
|
|
open={dialogOpen}
|
|
onClose={() => setDialogOpen(false)}
|
|
onSubmit={onNew}
|
|
/>
|
|
</BasePage>
|
|
);
|
|
};
|
|
|
|
export default ProfilePage;
|