mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-06 06:53:43 +08:00
77 lines
2.1 KiB
TypeScript
77 lines
2.1 KiB
TypeScript
import {
|
|
forwardRef,
|
|
useEffect,
|
|
useImperativeHandle,
|
|
useRef,
|
|
useState,
|
|
} from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { useRecoilValue } from "recoil";
|
|
import { Chip } from "@mui/material";
|
|
import { atomThemeMode } from "@/services/states";
|
|
import { getRuntimeYaml } from "@/services/cmds";
|
|
import { BaseDialog, DialogRef } from "@/components/base";
|
|
import { editor } from "monaco-editor/esm/vs/editor/editor.api";
|
|
|
|
import "monaco-editor/esm/vs/basic-languages/javascript/javascript.contribution.js";
|
|
import "monaco-editor/esm/vs/basic-languages/yaml/yaml.contribution.js";
|
|
import "monaco-editor/esm/vs/editor/contrib/folding/browser/folding.js";
|
|
|
|
export const ConfigViewer = forwardRef<DialogRef>((props, ref) => {
|
|
const { t } = useTranslation();
|
|
const [open, setOpen] = useState(false);
|
|
|
|
const editorRef = useRef<any>();
|
|
const instanceRef = useRef<editor.IStandaloneCodeEditor | null>(null);
|
|
const themeMode = useRecoilValue(atomThemeMode);
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
if (instanceRef.current) {
|
|
instanceRef.current.dispose();
|
|
instanceRef.current = null;
|
|
}
|
|
};
|
|
}, []);
|
|
|
|
useImperativeHandle(ref, () => ({
|
|
open: () => {
|
|
setOpen(true);
|
|
|
|
getRuntimeYaml().then((data) => {
|
|
const dom = editorRef.current;
|
|
|
|
if (!dom) return;
|
|
if (instanceRef.current) instanceRef.current.dispose();
|
|
|
|
instanceRef.current = editor.create(editorRef.current, {
|
|
value: data ?? "# Error\n",
|
|
language: "yaml",
|
|
theme: themeMode === "light" ? "vs" : "vs-dark",
|
|
minimap: { enabled: false },
|
|
readOnly: true,
|
|
});
|
|
});
|
|
},
|
|
close: () => setOpen(false),
|
|
}));
|
|
|
|
return (
|
|
<BaseDialog
|
|
open={open}
|
|
title={
|
|
<>
|
|
{t("Runtime Config")} <Chip label={t("ReadOnly")} size="small" />
|
|
</>
|
|
}
|
|
contentSx={{ width: 520, pb: 1, userSelect: "text" }}
|
|
cancelBtn={t("Back")}
|
|
disableOk
|
|
onClose={() => setOpen(false)}
|
|
onCancel={() => setOpen(false)}
|
|
>
|
|
<div style={{ width: "100%", height: "420px" }} ref={editorRef} />
|
|
</BaseDialog>
|
|
);
|
|
});
|