import React,{ Component } from "react"; import Modals from '../../../modals/Modals' import { WordsBtn } from 'educoder' import HomeworkModal from "../../coursesPublic/HomeworkModal"; import OneSelfOrderModal from "../../coursesPublic/OneSelfOrderModal"; import axios from 'axios' import moment from 'moment'; class Immediatelypublish extends Component{ constructor(props){ super(props) this.state={ modalname:undefined, modaltype:undefined, visible:false, Topval:undefined, Topvalright:undefined, Botvalleft:undefined, Botval:undefined, starttime:undefined, starttimes:undefined, endtime:undefined, Cancelname:undefined, Savesname:undefined, Cancel:undefined, Saves:undefined, course_groups:undefined, modalsType:false, modalsTopval:"", loadtype:false, chooseId:undefined, immediatelyopen:false } } //立即发布 homeworkstart=()=>{ let {checkBoxValues,pushtype}=this.props if(pushtype===true){ if(checkBoxValues.length==0){ this.props.showNotification("请先在列表中选择数据"); // this.setState({ // modalsType:true, // modalsTopval:"请先在列表中选择数据", // loadtype:true // }) }else{ let coursesId=this.props.match.params.coursesId; if(this.props.Exercisetype==="exercise"){ let url=`/exercises/${this.props.match.params.Id}/publish_groups.json`; axios.get(url).then((response) => { if (response.data) { let starttimesend=response.data.end_time === undefined || response.data.end_time === null || response.data.end_time === "" ? undefined : response.data.end_time; this.setState({ modalname:"立即发布", modaltype:response.data.course_groups===null||response.data.course_groups.length===0?2:1, Topval:this.props.Exercisetype==="exercise"?"学生将立即收到试卷":"学生将立即收到问卷", // Botvalleft:"暂不发布", Botval:this.props.single ? "":this.props.Exercisetype==="exercise"?`本操作只对"未发布"的试卷有效`:`本操作只对"未发布"的问卷有效`, starttime:moment(moment(new Date())).format("YYYY-MM-DD HH:mm"), starttimes:this.props.getNowFormatDates(1), endtime:"截止时间:"+this.props.getNowFormatDates(2), Cancelname:"暂不发布", Savesname:"立即发布", Cancel:this.homeworkhide, Saves:this.homeworkstartend, course_groups:response.data.course_groups, starttimesend:starttimesend, immediatelyopen:response.data.course_groups===null||response.data.course_groups.length===0?false:true, OneSelftype:true, }) } }).catch((error) => { console.log(error) }); }else{ let url=`/polls/${this.props.match.params.pollId}/publish_groups.json`; axios.get(url).then((response) => { if (response.data) { let starttimesend=response.data.end_time === undefined || response.data.end_time === null || response.data.end_time === "" ? undefined : response.data.end_time; this.setState({ modalname:"立即发布", modaltype:response.data.course_groups===null||response.data.course_groups.length===0?2:1, Topval:this.props.Exercisetype==="exercise"?"学生将立即收到试卷":"学生将立即收到问卷", // Botvalleft:"暂不发布", Botval:this.props.single ? "":this.props.Exercisetype==="exercise"?`本操作只对"未发布"的试卷有效`:`本操作只对"未发布"的问卷有效`, starttime:"发布时间:"+moment(moment(new Date())).format("YYYY-MM-DD HH:mm"), starttimes:this.props.getNowFormatDates(1), endtime:"截止时间:"+this.props.getNowFormatDates(2), Cancelname:"暂不发布", Savesname:"立即发布", Cancel:this.homeworkhide, Saves:this.homeworkstartend, course_groups:response.data.course_groups, starttimesend:starttimesend, immediatelyopen:response.data.course_groups===null||response.data.course_groups.length===0?false:true, OneSelftype:true, }) } }).catch((error) => { console.log(error) }); } } }else{ if(checkBoxValues.length==0){ this.props.showNotification("请先在列表中选择数据"); // this.setState({ // modalsType:true, // modalsTopval:"请先在列表中选择数据", // loadtype:true // }) }else{ let coursesId=this.props.match.params.coursesId; if(this.props.Exercisetype==="exercise"){ let url=`/courses/${coursesId}/exercises/publish_modal.json`; axios.get(url,{ params:{ check_ids:checkBoxValues } }).then((response) => { if(response.status===200){ let list=[]; if(response.data.course_info){ for(var i=0;i 0 ? 1 : 2, visible:true, Topval:this.props.Exercisetype==="exercise"?"学生将立即收到试卷":"学生将立即收到问卷", // Botvalleft:"暂不发布", Botval:this.props.single ? "":this.props.Exercisetype==="exercise"?`本操作只对"未发布"的试卷有效`:`本操作只对"未发布"的问卷有效`, starttime:"发布时间:"+moment(moment(new Date())).format("YYYY-MM-DD HH:mm"), starttimes:this.props.getNowFormatDates(1), endtime:"截止时间:"+this.props.getNowFormatDates(2), Cancelname:"暂不发布", Savesname:"立即发布", Cancel:this.homeworkhide, Saves:this.homeworkstartend, }) } }).catch((error) => { console.log(error) }); }else{ let url=`/courses/${coursesId}/polls/publish_modal.json`; axios.get(url,{ params:{ check_ids:checkBoxValues } }).then((response) => { if(response){ let list=[]; if(response.data.course_info){ for(var i=0;i 0 ? 1 : 2, visible:true, Topval:this.props.Exercisetype==="exercise"?"学生将立即收到试卷":"学生将立即收到问卷", // Botvalleft:"暂不发布", Botval:this.props.single ? "":this.props.Exercisetype==="exercise"?`本操作只对"未发布"的试卷有效`:`本操作只对"未发布"的问卷有效`, starttime:"发布时间:"+moment(moment(new Date())).format("YYYY-MM-DD HH:mm"), starttimes:this.props.getNowFormatDates(1), endtime:"截止时间:"+this.props.getNowFormatDates(2), Cancelname:"暂不发布", Savesname:"立即发布", Cancel:this.homeworkhide, Saves:this.homeworkstartend, }) } }).catch((error) => { console.log(error) }); } } } } //取消提示弹框 modalCancel=()=>{ this.setState({ modalsType:false, modalsTopval:"", loadtype:false }) } //暂不发布 homeworkhide=()=>{ this.setState({ modalname:undefined, modaltype:undefined, visible:false, OneSelftype:false, Topval:undefined, Topvalright:undefined, Botvalleft:undefined, Botval:undefined, starttime:undefined, starttimes:undefined, endtime:undefined, Cancelname:undefined, Savesname:undefined, Cancel:undefined, Saves:undefined, StudentList_value:undefined, addname:undefined, addnametype:false, addnametab:undefined }) } // 确定立即发布 homeworkstartend=(ids,endtime)=>{ let {checkBoxValues,pushtype}=this.props let {chooseId}=this.state; let coursesId=this.props.match.params.coursesId; let data={}; if(pushtype===true){ if(ids.length===0){ data = { check_ids:checkBoxValues, end_time: endtime, } }else{ data={ check_ids: checkBoxValues, group_ids: ids, group_end_times:endtime, detail:true } } }else{ data={ check_ids:checkBoxValues, group_ids:chooseId, end_time:endtime } } if(this.props.Exercisetype==="exercise"){ let url=`/courses/${coursesId}/exercises/publish.json` axios.post(url,data).then((result)=>{ if(result){ this.props.showNotification(result.data.message); this.homeworkhide(); // 调用父级公共头部的接口刷新 try { this.props.action(); }catch (e) { } // 调用父级刷新数据的接口刷新 try { this.props.getsetdata() }catch (e) { } } }).catch((error)=>{ console.log(error); }) }else{ let url=`/courses/${coursesId}/polls/publish.json` axios.post(url,data).then((result)=>{ if(result){ this.props.showNotification(result.data.message); this.homeworkhide(); // 调用父级公共头部的接口刷新 this.props.action() } }).catch((error)=>{ console.log(error); }) } } getcourse_groupslist=(id)=>{ this.setState({ chooseId:id }) } render(){ let{ modalname, modaltype, visible, Topval, Topvalright, Botvalleft, Botval, starttime, starttimes, endtime, Cancelname, Savesname, Cancel, Saves, course_groups, modalsType, modalsTopval, loadtype, }=this.state return( this.getcourse_groupslist(id)} /> {/*立即发布*/} {this.state.OneSelftype===true? this.getcourse_groupslist(id)} starttimes={this.state.starttimes} starttimesend={this.state.starttimesend} typs={this.state.typs} immediatelyopen={this.state.immediatelyopen} />:""} {/* 公用的提示弹框 */} this.homeworkstart()}>立即发布 ) } } export default Immediatelypublish