Skip to content
Snippets Groups Projects
Unverified Commit 78f97ce4 authored by GyDi's avatar GyDi
Browse files

feat: adjust runtime config

parent 66ccbf70
No related branches found
No related tags found
No related merge requests found
import { useEffect, useRef, useState } from "react"; import { useEffect, useRef } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { useRecoilValue } from "recoil"; import { useRecoilValue } from "recoil";
import { import {
...@@ -9,7 +9,6 @@ import { ...@@ -9,7 +9,6 @@ import {
DialogContent, DialogContent,
DialogTitle, DialogTitle,
} from "@mui/material"; } from "@mui/material";
import { InfoRounded } from "@mui/icons-material";
import { atomThemeMode } from "@/services/states"; import { atomThemeMode } from "@/services/states";
import { getRuntimeYaml } from "@/services/cmds"; import { getRuntimeYaml } from "@/services/cmds";
...@@ -18,9 +17,15 @@ import "monaco-editor/esm/vs/basic-languages/yaml/yaml.contribution.js"; ...@@ -18,9 +17,15 @@ import "monaco-editor/esm/vs/basic-languages/yaml/yaml.contribution.js";
import "monaco-editor/esm/vs/editor/contrib/folding/browser/folding.js"; import "monaco-editor/esm/vs/editor/contrib/folding/browser/folding.js";
import { editor } from "monaco-editor/esm/vs/editor/editor.api"; import { editor } from "monaco-editor/esm/vs/editor/editor.api";
const ConfigViewer = () => { interface Props {
open: boolean;
onClose: () => void;
}
const ConfigViewer = (props: Props) => {
const { open, onClose } = props;
const { t } = useTranslation(); const { t } = useTranslation();
const [open, setOpen] = useState(false);
const editorRef = useRef<any>(); const editorRef = useRef<any>();
const instanceRef = useRef<editor.IStandaloneCodeEditor | null>(null); const instanceRef = useRef<editor.IStandaloneCodeEditor | null>(null);
...@@ -53,29 +58,21 @@ const ConfigViewer = () => { ...@@ -53,29 +58,21 @@ const ConfigViewer = () => {
}, [open]); }, [open]);
return ( return (
<> <Dialog open={open} onClose={onClose}>
<Dialog open={open} onClose={() => setOpen(false)}> <DialogTitle>
<DialogTitle> {t("Runtime Config")} <Chip label={t("ReadOnly")} size="small" />
{t("Runtime Config")} <Chip label="ReadOnly" size="small" /> </DialogTitle>
</DialogTitle>
<DialogContent sx={{ width: 520, pb: 1 }}>
<div style={{ width: "100%", height: "420px" }} ref={editorRef} />
</DialogContent>
<DialogActions> <DialogContent sx={{ width: 520, pb: 1 }}>
<Button variant="outlined" onClick={() => setOpen(false)}> <div style={{ width: "100%", height: "420px" }} ref={editorRef} />
{t("Back")} </DialogContent>
</Button>
</DialogActions>
</Dialog>
<InfoRounded <DialogActions>
fontSize="small" <Button variant="outlined" onClick={onClose}>
style={{ cursor: "pointer", opacity: 0.75 }} {t("Back")}
onClick={() => setOpen(true)} </Button>
/> </DialogActions>
</> </Dialog>
); );
}; };
export default ConfigViewer; export default ConfigViewer;
...@@ -12,7 +12,6 @@ import { SettingList, SettingItem } from "./setting"; ...@@ -12,7 +12,6 @@ import { SettingList, SettingItem } from "./setting";
import getSystem from "@/utils/get-system"; import getSystem from "@/utils/get-system";
import GuardState from "./mods/guard-state"; import GuardState from "./mods/guard-state";
import ServiceMode from "./mods/service-mode"; import ServiceMode from "./mods/service-mode";
import ConfigViewer from "./mods/config-viewer";
import SysproxyTooltip from "./mods/sysproxy-tooltip"; import SysproxyTooltip from "./mods/sysproxy-tooltip";
interface Props { interface Props {
...@@ -51,7 +50,7 @@ const SettingSystem = ({ onError }: Props) => { ...@@ -51,7 +50,7 @@ const SettingSystem = ({ onError }: Props) => {
return ( return (
<SettingList title={t("System Setting")}> <SettingList title={t("System Setting")}>
<SettingItem label={t("Tun Mode")} extra={<ConfigViewer />}> <SettingItem label={t("Tun Mode")}>
<GuardState <GuardState
value={enable_tun_mode ?? false} value={enable_tun_mode ?? false}
valueProps="checked" valueProps="checked"
......
import useSWR, { useSWRConfig } from "swr"; import useSWR from "swr";
import { useState } from "react"; import { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { import {
...@@ -18,6 +18,7 @@ import { ArrowForward } from "@mui/icons-material"; ...@@ -18,6 +18,7 @@ import { ArrowForward } from "@mui/icons-material";
import { SettingList, SettingItem } from "./setting"; import { SettingList, SettingItem } from "./setting";
import { version } from "@root/package.json"; import { version } from "@root/package.json";
import ThemeModeSwitch from "./mods/theme-mode-switch"; import ThemeModeSwitch from "./mods/theme-mode-switch";
import ConfigViewer from "./mods/config-viewer";
import GuardState from "./mods/guard-state"; import GuardState from "./mods/guard-state";
import SettingTheme from "./setting-theme"; import SettingTheme from "./setting-theme";
...@@ -27,16 +28,19 @@ interface Props { ...@@ -27,16 +28,19 @@ interface Props {
const SettingVerge = ({ onError }: Props) => { const SettingVerge = ({ onError }: Props) => {
const { t } = useTranslation(); const { t } = useTranslation();
const { mutate } = useSWRConfig(); const { data: vergeConfig, mutate: mutateVerge } = useSWR(
const { data: vergeConfig } = useSWR("getVergeConfig", getVergeConfig); "getVergeConfig",
getVergeConfig
);
const { theme_mode, theme_blur, traffic_graph, language } = vergeConfig ?? {}; const { theme_mode, theme_blur, traffic_graph, language } = vergeConfig ?? {};
const [themeOpen, setThemeOpen] = useState(false); const [themeOpen, setThemeOpen] = useState(false);
const [configOpen, setConfigOpen] = useState(false);
const onSwitchFormat = (_e: any, value: boolean) => value; const onSwitchFormat = (_e: any, value: boolean) => value;
const onChangeData = (patch: Partial<CmdType.VergeConfig>) => { const onChangeData = (patch: Partial<CmdType.VergeConfig>) => {
mutate("getVergeConfig", { ...vergeConfig, ...patch }, false); mutateVerge({ ...vergeConfig, ...patch }, false);
}; };
return ( return (
...@@ -104,6 +108,17 @@ const SettingVerge = ({ onError }: Props) => { ...@@ -104,6 +108,17 @@ const SettingVerge = ({ onError }: Props) => {
</IconButton> </IconButton>
</SettingItem> </SettingItem>
<SettingItem label={t("Runtime Config")}>
<IconButton
color="inherit"
size="small"
sx={{ my: "2px" }}
onClick={() => setConfigOpen(true)}
>
<ArrowForward />
</IconButton>
</SettingItem>
<SettingItem label={t("Open App Dir")}> <SettingItem label={t("Open App Dir")}>
<IconButton <IconButton
color="inherit" color="inherit"
...@@ -131,6 +146,7 @@ const SettingVerge = ({ onError }: Props) => { ...@@ -131,6 +146,7 @@ const SettingVerge = ({ onError }: Props) => {
</SettingItem> </SettingItem>
<SettingTheme open={themeOpen} onClose={() => setThemeOpen(false)} /> <SettingTheme open={themeOpen} onClose={() => setThemeOpen(false)} />
<ConfigViewer open={configOpen} onClose={() => setConfigOpen(false)} />
</SettingList> </SettingList>
); );
}; };
......
...@@ -61,6 +61,9 @@ ...@@ -61,6 +61,9 @@
"theme.light": "Light", "theme.light": "Light",
"theme.dark": "Dark", "theme.dark": "Dark",
"theme.system": "System", "theme.system": "System",
"Clash Field": "Clash Field",
"Runtime Config": "Runtime Config",
"ReadOnly": "ReadOnly",
"Back": "Back", "Back": "Back",
"Save": "Save", "Save": "Save",
......
...@@ -62,6 +62,8 @@ ...@@ -62,6 +62,8 @@
"theme.dark": "深色", "theme.dark": "深色",
"theme.system": "系统", "theme.system": "系统",
"Clash Field": "Clash 字段", "Clash Field": "Clash 字段",
"Runtime Config": "运行配置",
"ReadOnly": "只读",
"Back": "返回", "Back": "返回",
"Save": "保存", "Save": "保存",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment