/* * @Description: * @Author: tangjiang * @Github: * @Date: 2019-11-27 14:59:51 * @LastEditors : tangjiang * @LastEditTime : 2019-12-27 19:23:46 */ import React, { useState, useEffect } from 'react'; import {connect} from 'react-redux'; import MyMonacoEditor from '../../components/myMonacoEditor'; import ControlSetting from '../../components/controlSetting'; import actions from '../../../../redux/actions'; // import QuillForEditor from '../../../../common/quillForEditor'; // import TextArea from 'antd/lib/input/TextArea'; import { Input, Form, Button } from 'antd'; // import FormItem from 'antd/lib/form/FormItem'; const { TextArea } = Input; const FormItem = Form.Item; const RightPane = (props) => { const { identifier, submitInput, submitUserCode, input, hack, loading, notice, updateCode, hadCodeUpdate, editor_code, updateNotice, saveUserInputCode, restoreInitialCode, // saveOpacityType, saveUserCodeForInterval, addNotes, changeLoadingState } = props; const [editorCode, setEditorCode] = useState(editor_code || hack.code); const [noteClazz, setNoteClazz] = useState('editor_nodte_area'); const [noteCount] = useState(5000); // const [code, setCode] = useState(editor_code || hack.code); // let initFlag = true; // useEffect(() => { // if (editor_code) { // setEditorCode(editor_code); // } else { // setEditorCode(hack.code); // } // }, [hack, editor_code]); const handleSubmitForm = () => { // 提交时, 先调用提交接口,提交成功后,循环调用测评接口 // saveOpacityType('submit'); submitUserCode(identifier, submitInput, 'submit'); // // 提交时,先调用评测接口, 评测通过后才调用保存接口 // updateCode(identifier, submitInput, 'submit'); } let timer = null; // 定时器 // 代码块内容变化时 const handleCodeChange = (value) => { saveUserInputCode(value); setEditorCode(value); if (!timer) { timer = setInterval(function () { clearInterval(timer); timer = null; saveUserCodeForInterval(identifier); }, 3000); } } // 代码调试 const handleDebuggerCode = (value) => { // 调用保存代码块接口,成功后,调用调试接口 // saveOpacityType('debug'); updateCode(identifier, value, 'debug'); } // 恢复初始代码 const handleRestoreInitialCode = () => { restoreInitialCode(identifier, '恢复初始代码成功'); } // 更新代码 const handleUpdateNotice = () => { updateNotice && updateNotice(); }; const handleClickNote = () => { setNoteClazz('editor_nodte_area active'); } const handleCancelNote = () => { props.form.resetFields(); setNoteClazz('editor_nodte_area'); } const handleSubmitNote = () => { props.form.validateFields((err, values) => { if (!err) { changeLoadingState(true); addNotes(identifier, values, function () { setNoteClazz('editor_nodte_area'); props.form.resetFields(); }); } }); } const { getFieldDecorator } = props.form; return (
{/*