12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- import useSWR from "swr";
- import { useEffect, useRef } from "react";
- import { useLockFn } from "ahooks";
- import { useTranslation } from "react-i18next";
- import {
- Button,
- Dialog,
- DialogActions,
- DialogContent,
- DialogTitle,
- } from "@mui/material";
- import {
- getVergeConfig,
- readProfileFile,
- saveProfileFile,
- } from "../../services/cmds";
- import Notice from "../base/base-notice";
- 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";
- import { editor } from "monaco-editor/esm/vs/editor/editor.api";
- interface Props {
- uid: string;
- open: boolean;
- mode: "yaml" | "javascript";
- onClose: () => void;
- onChange?: () => void;
- }
- const FileEditor = (props: Props) => {
- const { uid, open, mode, onClose, onChange } = props;
- const { t } = useTranslation();
- const editorRef = useRef<any>();
- const instanceRef = useRef<editor.IStandaloneCodeEditor | null>(null);
- const { data: vergeConfig } = useSWR("getVergeConfig", getVergeConfig);
- const { theme_mode } = vergeConfig ?? {};
- useEffect(() => {
- if (!open) return;
- readProfileFile(uid).then((data) => {
- const dom = editorRef.current;
- if (!dom) return;
- if (instanceRef.current) instanceRef.current.dispose();
- instanceRef.current = editor.create(editorRef.current, {
- value: data,
- language: mode,
- theme: theme_mode === "light" ? "vs" : "vs-dark",
- minimap: { enabled: false },
- });
- });
- return () => {
- if (instanceRef.current) {
- instanceRef.current.dispose();
- instanceRef.current = null;
- }
- };
- }, [open]);
- const onSave = useLockFn(async () => {
- const value = instanceRef.current?.getValue();
- if (value == null) return;
- try {
- await saveProfileFile(uid, value);
- onChange?.();
- } catch (err: any) {
- Notice.error(err.message || err.toString());
- }
- });
- return (
- <Dialog open={open} onClose={onClose}>
- <DialogTitle>{t("Edit File")}</DialogTitle>
- <DialogContent sx={{ width: 520, pb: 1 }}>
- <div style={{ width: "100%", height: "420px" }} ref={editorRef} />
- </DialogContent>
- <DialogActions>
- <Button onClick={onClose}>{t("Cancel")}</Button>
- <Button onClick={onSave} variant="contained">
- {t("Save")}
- </Button>
- </DialogActions>
- </Dialog>
- );
- };
- export default FileEditor;
|