mirror of
https://github.com/whyour/qinglong.git
synced 2026-08-11 19:05:20 +08:00
130 lines
3.2 KiB
TypeScript
130 lines
3.2 KiB
TypeScript
import React, {
|
|
PureComponent,
|
|
Fragment,
|
|
useState,
|
|
useEffect,
|
|
useRef,
|
|
} from 'react';
|
|
import { Button, message, Modal, TreeSelect } from 'antd';
|
|
import config from '@/utils/config';
|
|
import { PageContainer } from '@ant-design/pro-layout';
|
|
import { request } from '@/utils/http';
|
|
import Editor from '@monaco-editor/react';
|
|
import { Controlled as CodeMirror } from 'react-codemirror2';
|
|
|
|
const Config = ({ headerStyle, isPhone, theme }: any) => {
|
|
const [value, setValue] = useState('');
|
|
const [loading, setLoading] = useState(true);
|
|
const [title, setTitle] = useState('config.sh');
|
|
const [select, setSelect] = useState('config.sh');
|
|
const [data, setData] = useState<any[]>([]);
|
|
const editorRef = useRef<any>(null);
|
|
const [confirmLoading, setConfirmLoading] = useState(false);
|
|
|
|
const getConfig = (name: string) => {
|
|
request.get(`${config.apiPrefix}configs/${name}`).then((data: any) => {
|
|
setValue(data.data);
|
|
});
|
|
};
|
|
|
|
const getFiles = () => {
|
|
setLoading(true);
|
|
request
|
|
.get(`${config.apiPrefix}configs/files`)
|
|
.then((data: any) => {
|
|
setData(data.data);
|
|
})
|
|
.finally(() => setLoading(false));
|
|
};
|
|
|
|
const updateConfig = () => {
|
|
setConfirmLoading(true);
|
|
const content = editorRef.current
|
|
? editorRef.current.getValue().replace(/\r\n/g, '\n')
|
|
: value;
|
|
|
|
request
|
|
.post(`${config.apiPrefix}configs/save`, {
|
|
data: { content, name: select },
|
|
})
|
|
.then((data: any) => {
|
|
message.success(data.message);
|
|
setConfirmLoading(false);
|
|
});
|
|
};
|
|
|
|
const onSelect = (value: any, node: any) => {
|
|
setSelect(value);
|
|
setTitle(node.value);
|
|
getConfig(node.value);
|
|
};
|
|
|
|
useEffect(() => {
|
|
getFiles();
|
|
getConfig('config.sh');
|
|
}, []);
|
|
|
|
return (
|
|
<PageContainer
|
|
className="ql-container-wrapper config-wrapper"
|
|
title={title}
|
|
loading={loading}
|
|
extra={[
|
|
<TreeSelect
|
|
className="config-select"
|
|
value={select}
|
|
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
|
|
treeData={data}
|
|
key="value"
|
|
defaultValue="config.sh"
|
|
onSelect={onSelect}
|
|
/>,
|
|
<Button
|
|
key="1"
|
|
loading={confirmLoading}
|
|
type="primary"
|
|
onClick={updateConfig}
|
|
>
|
|
保存
|
|
</Button>,
|
|
]}
|
|
header={{
|
|
style: headerStyle,
|
|
}}
|
|
>
|
|
{isPhone ? (
|
|
<CodeMirror
|
|
value={value}
|
|
options={{
|
|
lineNumbers: true,
|
|
styleActiveLine: true,
|
|
matchBrackets: true,
|
|
mode: 'shell',
|
|
}}
|
|
onBeforeChange={(editor, data, value) => {
|
|
setValue(value);
|
|
}}
|
|
onChange={(editor, data, value) => {}}
|
|
/>
|
|
) : (
|
|
<Editor
|
|
defaultLanguage="shell"
|
|
value={value}
|
|
theme={theme}
|
|
options={{
|
|
fontSize: 12,
|
|
lineNumbersMinChars: 3,
|
|
folding: false,
|
|
glyphMargin: false,
|
|
}}
|
|
onMount={(editor) => {
|
|
editorRef.current = editor;
|
|
}}
|
|
/>
|
|
)}
|
|
</PageContainer>
|
|
);
|
|
};
|
|
|
|
export default Config;
|