import React, { PureComponent, Fragment, useState, useEffect } from 'react'; import { Button, notification, Modal } from 'antd'; import config from '@/utils/config'; import { PageContainer } from '@ant-design/pro-layout'; import { Controlled as CodeMirror } from 'react-codemirror2'; import { request } from '@/utils/http'; const Crontab = () => { const [width, setWdith] = useState('100%'); const [marginLeft, setMarginLeft] = useState(0); const [marginTop, setMarginTop] = useState(-72); const [value, setValue] = useState(''); const [loading, setLoading] = useState(true); const getConfig = () => { setLoading(true); request .get(`${config.apiPrefix}config/diy`) .then((data) => { setValue(data.content); }) .finally(() => setLoading(false)); }; const updateConfig = () => { request .post(`${config.apiPrefix}save`, { data: { content: value, name: 'diy.sh' }, }) .then((data) => { notification.success({ message: data.msg, }); }); }; useEffect(() => { if (document.body.clientWidth < 768) { setWdith('auto'); setMarginLeft(0); setMarginTop(0); } else { setWdith('100%'); setMarginLeft(0); setMarginTop(-72); } getConfig(); }, []); return ( 保存 , ]} header={{ style: { padding: '4px 16px 4px 15px', position: 'sticky', top: 0, left: 0, zIndex: 20, marginTop, width, marginLeft, }, }} style={{ height: '100vh', }} > { setValue(value); }} onChange={(editor, data, value) => {}} /> ); }; export default Crontab;