123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521 |
- import { ReactNode, useEffect, useMemo, useState } from "react";
- import { useLockFn } from "ahooks";
- import yaml from "js-yaml";
- import { useTranslation } from "react-i18next";
- import {
- DndContext,
- closestCenter,
- KeyboardSensor,
- PointerSensor,
- useSensor,
- useSensors,
- DragEndEvent,
- } from "@dnd-kit/core";
- import {
- SortableContext,
- sortableKeyboardCoordinates,
- } from "@dnd-kit/sortable";
- import {
- Autocomplete,
- Box,
- Button,
- Dialog,
- DialogActions,
- DialogContent,
- DialogTitle,
- List,
- ListItem,
- ListItemText,
- TextField,
- styled,
- } from "@mui/material";
- import { ProxyItem } from "@/components/profile/proxy-item";
- import { readProfileFile, saveProfileFile } from "@/services/cmds";
- import { Notice, Switch } from "@/components/base";
- import getSystem from "@/utils/get-system";
- import { BaseSearchBox } from "../base/base-search-box";
- import { Virtuoso } from "react-virtuoso";
- import MonacoEditor from "react-monaco-editor";
- import { useThemeMode } from "@/services/states";
- import { Controller, useForm } from "react-hook-form";
- interface Props {
- profileUid: string;
- property: string;
- open: boolean;
- onClose: () => void;
- onSave?: (prev?: string, curr?: string) => void;
- }
- const builtinProxyPolicies = ["DIRECT", "REJECT", "REJECT-DROP", "PASS"];
- export const ProxiesEditorViewer = (props: Props) => {
- const { profileUid, property, open, onClose, onSave } = props;
- const { t } = useTranslation();
- const themeMode = useThemeMode();
- const [prevData, setPrevData] = useState("");
- const [currData, setCurrData] = useState("");
- const [visualization, setVisualization] = useState(true);
- const [match, setMatch] = useState(() => (_: string) => true);
- const { control, watch, register, ...formIns } = useForm<IProxyConfig>({
- defaultValues: {
- type: "ss",
- name: "",
- },
- });
- const [proxyList, setProxyList] = useState<IProxyConfig[]>([]);
- const [prependSeq, setPrependSeq] = useState<IProxyConfig[]>([]);
- const [appendSeq, setAppendSeq] = useState<IProxyConfig[]>([]);
- const [deleteSeq, setDeleteSeq] = useState<string[]>([]);
- const filteredProxyList = useMemo(
- () => proxyList.filter((proxy) => match(proxy.name)),
- [proxyList, match]
- );
- const sensors = useSensors(
- useSensor(PointerSensor),
- useSensor(KeyboardSensor, {
- coordinateGetter: sortableKeyboardCoordinates,
- })
- );
- const reorder = (
- list: IProxyConfig[],
- startIndex: number,
- endIndex: number
- ) => {
- const result = Array.from(list);
- const [removed] = result.splice(startIndex, 1);
- result.splice(endIndex, 0, removed);
- return result;
- };
- const onPrependDragEnd = async (event: DragEndEvent) => {
- const { active, over } = event;
- if (over) {
- if (active.id !== over.id) {
- let activeIndex = 0;
- let overIndex = 0;
- prependSeq.forEach((item, index) => {
- if (item.name === active.id) {
- activeIndex = index;
- }
- if (item.name === over.id) {
- overIndex = index;
- }
- });
- setPrependSeq(reorder(prependSeq, activeIndex, overIndex));
- }
- }
- };
- const onAppendDragEnd = async (event: DragEndEvent) => {
- const { active, over } = event;
- if (over) {
- if (active.id !== over.id) {
- let activeIndex = 0;
- let overIndex = 0;
- appendSeq.forEach((item, index) => {
- if (item.name === active.id) {
- activeIndex = index;
- }
- if (item.name === over.id) {
- overIndex = index;
- }
- });
- setAppendSeq(reorder(appendSeq, activeIndex, overIndex));
- }
- }
- };
- const fetchProfile = async () => {
- let data = await readProfileFile(profileUid);
- let originProxiesObj = yaml.load(data) as {
- proxies: IProxyConfig[];
- } | null;
- setProxyList(originProxiesObj?.proxies || []);
- };
- const fetchContent = async () => {
- let data = await readProfileFile(property);
- let obj = yaml.load(data) as ISeqProfileConfig | null;
- setPrependSeq(obj?.prepend || []);
- setAppendSeq(obj?.append || []);
- setDeleteSeq(obj?.delete || []);
- setPrevData(data);
- setCurrData(data);
- };
- useEffect(() => {
- if (currData === "") return;
- if (visualization !== true) return;
- let obj = yaml.load(currData) as {
- prepend: [];
- append: [];
- delete: [];
- } | null;
- setPrependSeq(obj?.prepend || []);
- setAppendSeq(obj?.append || []);
- setDeleteSeq(obj?.delete || []);
- }, [visualization]);
- useEffect(() => {
- if (prependSeq && appendSeq && deleteSeq)
- setCurrData(
- yaml.dump(
- { prepend: prependSeq, append: appendSeq, delete: deleteSeq },
- {
- forceQuotes: true,
- }
- )
- );
- }, [prependSeq, appendSeq, deleteSeq]);
- useEffect(() => {
- if (!open) return;
- fetchContent();
- fetchProfile();
- }, [open]);
- const handleSave = useLockFn(async () => {
- try {
- await saveProfileFile(property, currData);
- onSave?.(prevData, currData);
- onClose();
- } catch (err: any) {
- Notice.error(err.message || err.toString());
- }
- });
- return (
- <Dialog open={open} onClose={onClose} maxWidth="xl" fullWidth>
- <DialogTitle>
- {
- <Box display="flex" justifyContent="space-between">
- {t("Edit Proxies")}
- <Box>
- <Button
- variant="contained"
- size="small"
- onClick={() => {
- setVisualization((prev) => !prev);
- }}
- >
- {visualization ? t("Advanced") : t("Visualization")}
- </Button>
- </Box>
- </Box>
- }
- </DialogTitle>
- <DialogContent
- sx={{ display: "flex", width: "auto", height: "calc(100vh - 185px)" }}
- >
- {visualization ? (
- <>
- <List
- sx={{
- width: "50%",
- padding: "0 10px",
- }}
- >
- <Box
- sx={{
- height: "calc(100% - 80px)",
- overflowY: "auto",
- }}
- >
- <Controller
- name="type"
- control={control}
- render={({ field }) => (
- <Item>
- <ListItemText primary={t("Proxy Type")} />
- <Autocomplete
- size="small"
- sx={{ minWidth: "240px" }}
- options={[
- "ss",
- "ssr",
- "direct",
- "dns",
- "snell",
- "http",
- "trojan",
- "hysteria",
- "hysteria2",
- "tuic",
- "wireguard",
- "ssh",
- "socks5",
- "vmess",
- "vless",
- ]}
- value={field.value}
- onChange={(_, value) => value && field.onChange(value)}
- renderInput={(params) => <TextField {...params} />}
- />
- </Item>
- )}
- />
- <Controller
- name="name"
- control={control}
- render={({ field }) => (
- <Item>
- <ListItemText primary={t("Proxy Name")} />
- <TextField
- autoComplete="off"
- size="small"
- sx={{ minWidth: "240px" }}
- {...field}
- required={true}
- />
- </Item>
- )}
- />
- <Controller
- name="server"
- control={control}
- render={({ field }) => (
- <Item>
- <ListItemText primary={t("Proxy Server")} />
- <TextField
- autoComplete="off"
- size="small"
- sx={{ minWidth: "240px" }}
- {...field}
- />
- </Item>
- )}
- />
- <Controller
- name="port"
- control={control}
- render={({ field }) => (
- <Item>
- <ListItemText primary={t("Proxy Port")} />
- <TextField
- autoComplete="off"
- type="number"
- size="small"
- sx={{ minWidth: "240px" }}
- onChange={(e) => {
- field.onChange(parseInt(e.target.value));
- }}
- />
- </Item>
- )}
- />
- </Box>
- <Item>
- <Button
- fullWidth
- variant="contained"
- onClick={() => {
- try {
- for (const item of prependSeq) {
- if (item.name === formIns.getValues().name) {
- throw new Error(t("Proxy Name Already Exists"));
- }
- }
- setPrependSeq([...prependSeq, formIns.getValues()]);
- } catch (err: any) {
- Notice.error(err.message || err.toString());
- }
- }}
- >
- {t("Prepend Proxy")}
- </Button>
- </Item>
- <Item>
- <Button
- fullWidth
- variant="contained"
- onClick={() => {
- try {
- for (const item of appendSeq) {
- if (item.name === formIns.getValues().name) {
- throw new Error(t("Proxy Name Already Exists"));
- }
- }
- setAppendSeq([...appendSeq, formIns.getValues()]);
- } catch (err: any) {
- Notice.error(err.message || err.toString());
- }
- }}
- >
- {t("Append Proxy")}
- </Button>
- </Item>
- </List>
- <List
- sx={{
- width: "50%",
- padding: "0 10px",
- }}
- >
- <BaseSearchBox
- matchCase={false}
- onSearch={(match) => setMatch(() => match)}
- />
- <Virtuoso
- style={{ height: "calc(100% - 24px)", marginTop: "8px" }}
- totalCount={
- filteredProxyList.length +
- (prependSeq.length > 0 ? 1 : 0) +
- (appendSeq.length > 0 ? 1 : 0)
- }
- increaseViewportBy={256}
- itemContent={(index) => {
- let shift = prependSeq.length > 0 ? 1 : 0;
- if (prependSeq.length > 0 && index === 0) {
- return (
- <DndContext
- sensors={sensors}
- collisionDetection={closestCenter}
- onDragEnd={onPrependDragEnd}
- >
- <SortableContext
- items={prependSeq.map((x) => {
- return x.name;
- })}
- >
- {prependSeq.map((item, index) => {
- return (
- <ProxyItem
- key={`${item.name}-${index}`}
- type="prepend"
- proxy={item}
- onDelete={() => {
- setPrependSeq(
- prependSeq.filter(
- (v) => v.name !== item.name
- )
- );
- }}
- />
- );
- })}
- </SortableContext>
- </DndContext>
- );
- } else if (index < filteredProxyList.length + shift) {
- let newIndex = index - shift;
- return (
- <ProxyItem
- key={`${filteredProxyList[newIndex].name}-${index}`}
- type={
- deleteSeq.includes(filteredProxyList[newIndex].name)
- ? "delete"
- : "original"
- }
- proxy={filteredProxyList[newIndex]}
- onDelete={() => {
- if (
- deleteSeq.includes(filteredProxyList[newIndex].name)
- ) {
- setDeleteSeq(
- deleteSeq.filter(
- (v) => v !== filteredProxyList[newIndex].name
- )
- );
- } else {
- setDeleteSeq((prev) => [
- ...prev,
- filteredProxyList[newIndex].name,
- ]);
- }
- }}
- />
- );
- } else {
- return (
- <DndContext
- sensors={sensors}
- collisionDetection={closestCenter}
- onDragEnd={onAppendDragEnd}
- >
- <SortableContext
- items={appendSeq.map((x) => {
- return x.name;
- })}
- >
- {appendSeq.map((item, index) => {
- return (
- <ProxyItem
- key={`${item.name}-${index}`}
- type="append"
- proxy={item}
- onDelete={() => {
- setAppendSeq(
- appendSeq.filter(
- (v) => v.name !== item.name
- )
- );
- }}
- />
- );
- })}
- </SortableContext>
- </DndContext>
- );
- }
- }}
- />
- </List>
- </>
- ) : (
- <MonacoEditor
- height="100%"
- language="yaml"
- value={currData}
- theme={themeMode === "light" ? "vs" : "vs-dark"}
- options={{
- tabSize: 2, // 根据语言类型设置缩进大小
- minimap: {
- enabled: document.documentElement.clientWidth >= 1500, // 超过一定宽度显示minimap滚动条
- },
- mouseWheelZoom: true, // 按住Ctrl滚轮调节缩放比例
- quickSuggestions: {
- strings: true, // 字符串类型的建议
- comments: true, // 注释类型的建议
- other: true, // 其他类型的建议
- },
- padding: {
- top: 33, // 顶部padding防止遮挡snippets
- },
- fontFamily: `Fira Code, JetBrains Mono, Roboto Mono, "Source Code Pro", Consolas, Menlo, Monaco, monospace, "Courier New", "Apple Color Emoji"${
- getSystem() === "windows" ? ", twemoji mozilla" : ""
- }`,
- fontLigatures: true, // 连字符
- smoothScrolling: true, // 平滑滚动
- }}
- onChange={(value) => setCurrData(value)}
- />
- )}
- </DialogContent>
- <DialogActions>
- <Button onClick={onClose} variant="outlined">
- {t("Cancel")}
- </Button>
- <Button onClick={handleSave} variant="contained">
- {t("Save")}
- </Button>
- </DialogActions>
- </Dialog>
- );
- };
- const Item = styled(ListItem)(() => ({
- padding: "5px 2px",
- }));
|