/* * @Description: 新建或编辑任务 * @Author: tangjiang * @Date: 2019-11-15 16:38:34 * @Last Modified by: tangjiang * @Last Modified time: 2019-11-19 23:23:41 */ import './index.scss'; import React, { useEffect } from 'react'; import { connect } from 'react-redux'; import SplitPane from 'react-split-pane';// import { Form } from 'antd'; import { Button, Modal } from 'antd'; import LeftPane from './leftpane'; import RightPane from './rightpane'; import { withRouter } from 'react-router'; import { toStore, CNotificationHOC } from 'educoder'; import UserInfo from '../components/userInfo'; // import RightPane from './rightpane/index'; import actions from '../../../redux/actions'; // import {ModalConfirm} from '../../../common/components/ModalConfirm'; const NewOrEditTask = (props) => { const { publishLoading, handlePublish, // testCases = [], // ojTestCaseValidate = [], identifier, isPublish, userInfo, submitLoading, changeSubmitLoadingStatus, changePublishLoadingStatus, startProgramQuestion, getUserInfoForNew, handleCancelPublish, // updateTestAndValidate, } = props; // 表单提交 const handleSubmitForm = () => { // 改变loading状态 changeSubmitLoadingStatus(true); // 调用输入表单验证功能 if (props.identifier) { props.handleUpdateOjForm(props); } else { props.handleFormSubmit(props); // 提交表单 } }; useEffect(() => { // 获取用户信息 getUserInfoForNew(); // console.log('获取路由参数: ====', props.match.params); const id = props.match.params.id; // 保存OJForm的id号,指明是编辑还是新增 props.saveOJFormId(id); if (id) { // id号即 identifier // TODO id 存在时, 编辑, 获取 store 中的记录数 props.getOJFormById(id); } else { // 清空store中的测试用例集合 props.clearOJFormStore(); } return () => {} }, []); // 模拟挑战 const imitationChallenge = () => { // 调用 start 接口, 成功后跳转到模拟页面 startProgramQuestion(identifier, props); } // 开始挑战 const startChallenge = () => { // 调用 start 接口, 成功后跳转到开启实战 // TODO startProgramQuestion(identifier, props); } // 取消 const handleClickCancel = () => { // 清空当前输入值并跳转至列表页 props.clearOJFormStore(); // 清空描述信息 toStore('oj_description', ''); props.history.push('/problems'); } // 发布 const handleClickPublish = () => { // ModalConfirm('提示', (

发布后即可应用到自己管理的课堂
是否确认发布?

), () => { // changePublishLoadingStatus(true); // handlePublish(props, 'publish'); // }); props.confirm({ title: '提示', content: (

发布后即可应用到自己管理的课堂
是否确认发布?

), onOk () { changePublishLoadingStatus(true); handlePublish(props, 'publish'); } }); } // 撤销发布 const handleClickCancelPublish = () => { // ModalConfirm('提示', (

是否确认撤销发布?

), () => { // changePublishLoadingStatus(true); // handleCancelPublish(props, identifier); // }); props.confirm({ title: '提示', content: ((

是否确认撤销发布?

)), onOk () { changePublishLoadingStatus(true); handleCancelPublish(props, identifier); } }); } // 取消保存/取消按钮 const renderSaveOrCancel = () => { return ( ); } // 发布/模拟挑战 const renderPubOrFight = () => { const pubButton = isPublish ? () : (); // 未发布: 模拟挑战 已发布: 开始挑战 const challengeBtn = isPublish ? ( ) : ( ); if (isPublish) { return ( {pubButton} {challengeBtn} ); } else { return ( {pubButton} {challengeBtn} ); } } // 渲染退出 const renderQuit = () => { return identifier ? ( ) : '' } return (

{props.name || ''}

{ renderQuit() }
{/* 控制台 */}
{ /* 录入时: 取消 保存 */ /* 保存未发布: 立即发布 模拟挑战 */ } { !identifier ? renderSaveOrCancel() : renderPubOrFight() }
) } const mapStateToProps = (state) => { const { ojForm, identifier, testCases, isPublish } = state.ojFormReducer; const { publishLoading, submitLoading } = state.commonReducer; const { userInfo } = state.userReducer; return { name: ojForm.name, identifier, testCases, isPublish, // 是否已发布 publishLoading, submitLoading, userInfo } }; const mapDispatchToProps = (dispatch) => ({ // 保存提交的代码值 saveOjFormCode: (value) => dispatch(actions.saveOjFormCode(value)), // 表单提交时,调用表单验证功能 handleFormSubmit: (props) => dispatch(actions.validateOjForm(props)), // 发布表单 handlePublish: (props, type) => dispatch(actions.validateOjForm(props, type)), // 撤销发布 handleCancelPublish: (props, identifier) => dispatch(actions.handleClickCancelPublish(props, identifier)), // 更新OJForm handleUpdateOjForm: (props) => dispatch(actions.validateOjForm(props)), // 根据id号获取表单信息 getOJFormById: (id) => dispatch(actions.getOJFormById(id)), // 保存 OJ form id值 saveOJFormId: (id) => dispatch(actions.saveOJFormId(id)), // 清空测试用例的集合 clearOJFormStore: () => dispatch(actions.clearOJFormStore()), // 按钮状态 changeSubmitLoadingStatus: (flag) => dispatch(actions.changeSubmitLoadingStatus(flag)), // 发布按钮状态 changePublishLoadingStatus: (flag) => dispatch(actions.changePublishLoadingStatus(flag)), // 测试用例及验证 updateTestAndValidate: (obj) => dispatch(actions.updateTestAndValidate(obj)), // 开启模拟挑战 startProgramQuestion: (id, props) => dispatch(actions.startProgramQuestion(id, props)), // 新建时获取信息 getUserInfoForNew: () => dispatch(actions.getUserInfoForNew()) }); export default withRouter(connect( mapStateToProps, mapDispatchToProps )(CNotificationHOC() (NewOrEditTask)));