import React,{ Component } from "react"; import { Input,Checkbox,Table, Pagination, Modal,Menu, Tooltip,Spin,Button,Form,Row, Col } from "antd"; import { WordsBtn,on, off, trigger,markdownToHTML,getImageUrl} from 'educoder'; import './myysleduinforms.css' import axios from 'axios'; import TPMMDEditor from "../../tpm/challengesnew/TPMMDEditor"; import moment from "../new/CoursesNew"; import Fileslistitem from "../Resource/Fileslistitem"; import Modals from "../../modals/Modals"; // 公告栏 class Bullsubdirectory extends Component{ constructor(props){ super(props); this.messageRef = React.createRef(); this.state={ description:null, isSpinysl:false, whethertoeditysl:false, addonAfter:0, eduintits:"", informs:[], Modalstype:false, Modalstopval:"是否确认删除?", ModalCancel:"", ModalSave:"", index:0, } //不能显示数据编辑的时候没有赋值 //没加initialValue 输入不能赋值到from 上 } componentDidMount() { console.log("获取到数据"); console.log(this.props); let{id,myname,mydescription,index,item} =this.props this.props.form.setFieldsValue({ id:id, eduintits:item.name, description:item.description, }); // this.contentMdRef.current.setValue(mydescription); this.setState({ id:id, eduintits:item.name, description:item.description, index:index }) if(myname!=undefined){ this.setState({ addonAfter:myname.length }) } } setModeltrue=()=>{ this.setState({ Modalstype:true, Modalstopval:"是否确认删除?", ModalCancel:this.cancelmodel, ModalSave:this.saveonOpen, }) } cancelmodel=()=>{ //取消 this.setState({ Modalstype:false, Modalstopval:"是否确认删除?", ModalCancel:"", ModalSave:"", }) } saveonOpen=()=>{ //确认 // / // 删除公告 var id=this.props.match.params.coursesId const url =`/courses/${id}/delete_informs.json`; axios.delete(url, { data: { inform_id: this.props.id }}) .then((response) => { if(response){ if(response.data){ if(response.data.status===0){ this.setState({ Modalstype:false, Modalstopval:"是否确认删除?", ModalCancel:"", ModalSave:"", }) this.props.showNotification(`删除成功`); this.props.getinputdata(); }else{ this.props.showNotification(`删除失败`); } }else{ this.props.showNotification(`删除失败`); } } }) .catch(function (error) { console.log(error); this.props.showNotification(`删除失败`); }); } bianji = (bians,i)=>{ console.log("bianji"); console.log(this.props.myname); console.log(this.props.mydescription); this.setState({ whethertoeditysl:bians, eduintits:this.props.myname, description:this.props.mydescription, index:i }); this.props.form.setFieldsValue({ eduintits:this.props.myname, description:this.props.mydescription, }); if(bians===true){ this.props.getyslbooltrue(); }else { this.props.getyslboolfalse(); } }; changeTopicName = (e) => { // console.log("调用了changeTopicName"); let num = e.target.value.length; if(num>60){ return; } this.setState({ addonAfter: num < 0 ? 0 : num }); if(num<=60){ this.setState({ eduintits: e.target.value }) this.props.form.setFieldsValue({ eduintits: e.target.value, }); } } handleSubmit=(e) => { e.preventDefault(); this.props.form.validateFields((err, values) => { debugger if (!err) { console.log(values.description); if(values.eduintits === undefined|| values.eduintits === "" || values.eduintits ===null){ this.props.showNotification(`请输入标题`); return } if(values.description === undefined|| values.description === "" || values.description ===null){ this.props.showNotification(`请输入内容`); return } var id=this.props.match.params.coursesId var titname=""; try { if(values.eduintits.length>0){ if( values.eduintits.length>60){ var str=values.eduintits; titname=str.substring(0,60); }else { titname=values.eduintits; } }else { titname=values.eduintits; } }catch (e) { titname=values.eduintits; } var url = `/courses/${id}/update_informs.json`; axios.post(url,{ inform_id:this.props.id, name:titname, description:values.description, }).then((result) => { if(result){ if(result.data){ if(result.data.status === 0){ // this.props.form.setFieldsValue({ // id:this.state.id, // eduintits:titname, // description:values.description, // }); this.setState({ whethertoeditysl:false, id:this.state.id, eduintits:titname, description:values.description, }); this.props.getinputdata(); this.props.getyslboolfalse(); this.props.showNotification(result.data.message); }else { this.props.showNotification(result.data.message); } } } }).catch((error) => { console.log(error) }) }else{ console.log(err); } }); } //上移 Moveupward = (id) => { let url = `/courses/${this.props.match.params.coursesId}/inform_up.json`; axios.post(url, { inform_id: id }).then((response) => { if (response) { if (response.data) { if (response.data.status === 0) { this.props.showNotification(`上移成功`); this.props.getinputdata(); } else { this.props.showNotification(`上移失败`); } } else { this.props.showNotification(`上移失败`); } } else { this.props.showNotification(`上移失败`); } }).catch((error) => { console.log(error) }); } //下移 Movedown = (id) => { let url = `/courses/${this.props.match.params.coursesId}/inform_down.json`; axios.post(url, { inform_id: id }).then((response) => { if (response) { if (response.data) { if (response.data.status === 0) { this.props.showNotification(`下移成功`); this.props.getinputdata(); } else { this.props.showNotification(`下移失败`); } } else { this.props.showNotification(`下移失败`); } } else { this.props.showNotification(`下移失败`); } }).catch((error) => { console.log(error) }); } render(){ let{description,whethertoeditysl,addonAfter,eduintits,informs,isSpinysl,index} =this.state; let{myname,mydescription,id}=this.props; const {getFieldDecorator} = this.props.form; // console.log("Bullsubdirectory"); // console.log(this.props.isAdmin()); // console.log(this.props); // console.log(whethertoeditysl); // console.log(this.state.eduintits); // console.log(this.state.description); return(
{this.state.Modalstype&&this.state.Modalstype===true?:""}
{ whethertoeditysl === false?
{myname}
{ this.props.isAdmin() === true ? (this.props.yslbool===false? 编辑
}> this.bianji(true,this.props.index)}> : "" ) :"" } { this.props.isAdmin() === true ? (this.props.yslbool===false? 删除
}> this.setModeltrue(true)}> : "" ) :"" } { this.props.length - 1 === this.props.index ? "" : this.props.isAdmin() === true ? (this.props.yslbool === false ? this.Movedown(this.props.id)} > : "" ) : "" } { this.props.index === 0 ? "" : this.props.isAdmin() === true ? (this.props.yslbool === false ? this.Moveupward(this.props.id)} > : "" ) : "" }
{parseInt(this.props&&this.props.informs.length)===parseInt(this.props&&this.props.index+1)?"":
}
: whethertoeditysl === true?
{getFieldDecorator('eduintits', { initialValue: eduintits}, { rules: [{ required: true, message: '请在此输入标题,最多60个字符', }], })(
*
)}
{getFieldDecorator('description', { initialValue: description},{ rules: [{ required: true, message: '请在此输入内容,最多5000个字符', }, { len: 5000, message: '最大限制为5000个字符', }], })( )}
:"" }
) } } const Bullsubdirectorys = Form.create({ name: 'bullsubdirectorys' })(Bullsubdirectory); export default Bullsubdirectorys;