import React,{Component} from "React"; import { Form, Select, Input, Button,Checkbox,Upload,Icon,message,Modal,Spin,Tooltip} from "antd"; import {Link} from 'react-router-dom'; import TPMMDEditor from '../../../tpm/challengesnew/TPMMDEditor'; import { WordsBtn,getUrl ,bytesToSize} from 'educoder'; import axios from 'axios'; import Modals from '../../../modals/Modals'; const Search = Input.Search; const CheckboxGroup = Checkbox.Group; let GraduationTasksnewtype=true; class GraduationTasksSubmitedit extends Component{ constructor(props){ super(props) this.state={ coursename:"", coursesearch:"", title_num:20, title_value:"", fileList: [], contents: [{val:"",id:1}], type:true, workslist:undefined, search:"", memberslist:undefined, task_status:[], selectmemberslist:[], minvalue:"", setvalue:"", minmaxtype:false, selectobjct:undefined, Loadtype:false, description:undefined, attachments:undefined, spinnings:false } } componentDidMount(){ let workId=this.props.match.params.work_Id; let url = "/graduation_works/"+workId+"/edit.json"; axios.get(url).then((result)=>{ if(result.status===200){ console.log(result.data.description); this.setState({ workslist:result.data, attachments:result.data.attachments, selectmemberslist:result.data.members, selectobjct:result.data.members, description:result.data.description, }) if(result.data.task_type===1){ }else{ this.searchList("",1,10,result.data.task_id) } this.props.form.setFieldsValue({ description:result.data.description, }); } }).catch((error)=>{ console.log(error) }) } setedit=()=>{ let coursesId=this.props.match.params.coursesId; let workId=this.props.match.params.work_Id; let {workslist}=this.state let task_id=workslist&&workslist.task_id; // window.location.href="/courses/"+coursesId+"/graduation_tasks/"+task_id+"/"+workId+"/works/edit"; window.location.href="/courses/"+coursesId+"/graduation_tasks/"+workId+"/appraise"; } handleSubmit=(e) => { let {fileList,selectmemberslist,workslist}=this.state; let userids=[]; for(var list of selectmemberslist){ if(list.user_id!=undefined&&list.user_id!=null){ userids.push(list.user_id) } } let listid=[]; for(var list of fileList){ listid.push(list.response.id) } e.preventDefault(); if( GraduationTasksnewtype===true){ this.props.form.validateFields((err, values) => { if (!err) { console.log(values.description); // console.log(fileList); if(values.description===undefined||values.description===""){ return } if(workslist.task_type===2){ if(userids.length<2){ this.setState({ minvalue:2, setvalue:"小于", minmaxtype:true }) return }else if(userids.length>5){ this.setState({ minvalue:5, setvalue:"大于", minmaxtype:true }) return } } this.setState({ spinnings:true }) let workId=this.props.match.params.work_Id; let url="/graduation_works/"+workId+".json"; axios.put(url, { description:values.description, attachment_ids:listid, user_ids:userids } ).then((response) => { this.setState({ spinnings:false }) if(response.status===200) { GraduationTasksnewtype=false; if(response.data.status===0){ // this.setState({ // Modalstype:true, // Modalstopval:response.data.message, // ModalSave:this.setedit, // Loadtype:true // }) this.setedit() }else{ GraduationTasksnewtype=true; } } }).catch((error) => { console.log(error) }) } }); } // setTimeout(function () { // GraduationTasksnewtype=true // },10000) } handleSelectChange = (value) => { console.log(value); this.props.form.setFieldsValue({ note: `Hi, ${value === 'male' ? 'man' : 'lady'}!`, }); } goback=()=>{ let courseId=this.props.match.params.coursesId; let work_Id=this.props.match.params.work_Id; // window.location.href="/courses/"+courseId+"/graduation/graduation_tasks/"+category_id; window.location.href="/courses/"+courseId+"/graduation_tasks/"+work_Id+"/appraise"; } // 输入title changeTitle=(e)=>{ this.setState({ title_num:20-parseInt(e.target.value.length), title_value:e.target.value }) } // 附件相关 START handleChange = (info) => { let fileList = info.fileList; // for(var list of fileList ){ // console.log(list) // } this.setState({ fileList }); } //onAttachmentRemove = (file) => { // confirm({ // title: '确定要删除这个附件吗?', // okText: '确定', // cancelText: '取消', // // content: 'Some descriptions', // onOk: () => { // this.deleteAttachment(file) // }, // onCancel() { // console.log('Cancel'); // }, // }); // return false; // this.setState({ // Modalstype:true, // Modalstopval:'确定要删除这个附件吗?', // ModalSave: ()=>this.deleteAttachment(file), // ModalCancel:this.cancelAttachment // }) // return false; //} cancelAttachment=()=>{ this.setState({ Modalstype:false, Modalstopval:'确定要删除这个附件吗?', ModalSave:"", ModalCancel:"" }) } onAttachmentRemove = (file) => { let {attachments,fileList}=this.state; const url = `/attachments/${file}.json` axios.delete(url, { }) .then((response) => { if (response.data) { // const { status } = response.data; if (response.data.status === 0) { console.log('--- success') let newattachments=attachments; if(file.uid===undefined){ for(var i=0; i { const index = state.fileList.indexOf(file); const newFileList = state.fileList.slice(); newFileList.splice(index, 1); return { fileList: newFileList, }; }); } } }) .catch(function (error) { console.log(error); }); } inputSearchValue=(e)=>{ if(e.target.value===""){ this.setState({ search:null }) }else{ this.setState({ search:e.target.value }) } } searchValue=()=>{ let {search,workslist} = this.state; this.searchList(search,1,10,workslist.task_id) } searchList=(search,page,limit,id)=>{ this.setState({ search:search, page:page, limit:10 }) let newid=id if(newid===undefined){ newid=this.props.match.params.work_Id; } let url="/graduation_tasks/"+newid+"/graduation_works/search_member_list.json"; axios.post(url,{ search:search, page:page, limit:limit }).then((result)=>{ if(result.status===200){ this.setState({ memberslist:result.data }) } }).catch((error)=>{ console.log(error) }) } contentViewScroll=(e)=>{ //滑动到底判断 if(e.currentTarget.scrollHeight-e.currentTarget.scrollTop===e.currentTarget.clientHeight){ // console.log("到达底部"); let{ search,page,limit,workslist}=this.state; let newpage=page+2 this.searchList(search,newpage,limit,workslist.task_id) } } funtaskstatus=(checkedValues)=>{ let{memberslist,selectobjct}=this.state; let newlist =memberslist.members; let newcheckedValues=checkedValues; let selects=[]; for(var list of selectobjct){ selects.push(list) } for(var i=0; i{ let{selectmemberslist,task_status}=this.state; let newlist=task_status; let selects=selectmemberslist; for(var i=0; i{ window.history.go(-1) } render(){ const { getFieldDecorator } = this.props.form; let {search,fileList, workslist,setvalue,minvalue,minmaxtype,Loadtype,description,attachments, Modalstype,Modalstopval,ModalCancel,ModalSave,memberslist,task_status,selectmemberslist} =this.state; let courseId=this.props.match.params.coursesId; let category_id=this.props.match.params.category_id; const uploadProps = { width: 600, fileList, multiple: true, // https://github.com/ant-design/ant-design/issues/15505 // showUploadList={false},然后外部拿到 fileList 数组自行渲染列表。 showUploadList: false, action: `${getUrl()}/api/attachments.json`, onChange: this.handleChange, onRemove: this.onAttachmentRemove, beforeUpload: (file) => { console.log('beforeUpload', file.name); const isLt150M = file.size / 1024 / 1024 < 150; if (!isLt150M) { message.error('文件大小必须小于150MB!'); } return isLt150M; }, }; // console.log(workslist&&workslist) // console.log(selectmemberslist&&selectmemberslist) let graduation_id=workslist===undefined?"":workslist.graduation_id; let task_id=workslist===undefined?"":workslist.task_id; return(
{/*提示*/}

{/* {workslist&&workslist.course_name}*/} {/*>*/} 毕设任务 > 任务详情 > {/**/} {/*{workslist&&workslist.task_name}*/} {/*>*/} {/**/} {this.props.user&&this.props.user.username} 提交作品

{workslist&&workslist.task_name}

返回
{description&&description?
{getFieldDecorator('description', { rules: [{ required: true, message: '请在此输入作品内容或附件的简要描述', }, { max: 5000, message: '最大限制为5000个字符', }], })( )} (单个文件150M以内) {attachments&&attachments.map((item,key)=>{ return(
{item.title} {item.filesize} {item.delete===true? this.onAttachmentRemove(item)} aria-hidden="true"> :""}
) })} {this.state.fileList.length===0?"":this.state.fileList.map((item,key)=>{ return(

{item.name} {item.response===undefined?"":bytesToSize(item.size)}

) })}
{workslist&&workslist.task_type===1?"":
成员要求:2~5人
{memberslist===undefined?"":memberslist.members.length===0?

未找到包含{search}的学生

:memberslist&&memberslist.members.map((item,key)=>{ return(
{ return parseInt(task_status[key])===item.user_id?true:false }) } disabled={item.commit_status===true?true:false} className="fl ">
{item.user_name}
{item.group_name}
{item.student_id}
{item.commit_status===false?已提交 :""}
) })}
{selectmemberslist&&selectmemberslist.map((item,key)=>{ return(
{item.user_name}
{item.group_name}
{item.student_id}
{key>0?
this.delecttask_status(item.user_id)}>
:""}
) })}
{minmaxtype===true? 人数不能{setvalue+minvalue}个人 :""}
}
取消
:""}
) } } const GraduationTasksSubmiteditApp = Form.create({ name: 'coursesNew' })(GraduationTasksSubmitedit); export default GraduationTasksSubmiteditApp;