import React,{ Component } from "react"; import { Radio , Modal } from 'antd'; import './video.css'; import axios from 'axios'; class MoveBox extends Component{ constructor(props){ super(props); this.state={ data:undefined, selectSubId:undefined } } componentDidUpdate=(prevProps)=>{ if(this.props.id && this.props.visible && this.props.id !== prevProps.id){ this.getSubList(this.props.mainId); } } getSubList=(id)=>{ const url = `/course_modules/${id}.json`; axios.get(url).then(result=>{ if(result){ let list = result.data.course_module && result.data.course_module.course_second_categories; let defaultId = list.length>0 ? list[0].id : undefined; this.setState({ data:result.data.course_module, selectSubId:defaultId }) } }).catch(error=>{ console.log(error); }) } cancelMove=()=>{ const { setMoveVisible } = this.props; setMoveVisible && setMoveVisible(false); } // 选择子目录 selectSub=(e)=>{ this.setState({ selectSubId:e.target.value }) } handleSubmit=()=>{ const CourseId = this.props.match.params.coursesId; const { id } = this.props; const { selectSubId } = this.state; const url = `/courses/${CourseId}/move_to_category.json`; axios.post(url,{ video_ids:[id], new_category_id:selectSubId }).then(result=>{ if(result){ const { setMoveVisible , successFunc , updataleftNavfun} = this.props; updataleftNavfun && updataleftNavfun(); setMoveVisible && setMoveVisible(false); successFunc && successFunc(); try { this.props.showNotification(result.data.message); }catch (e) { } } }).catch(error=>{ console.log(error); }) } render(){ const { visible , id } = this.props; const { data , selectSubId } = this.state; let list = data && data.course_second_categories && data.course_second_categories.length>0?data.course_second_categories:undefined; return(
{ list && list.map((item,key)=>{ return( {item.name} ) }) }
取消 确定
) } } export default MoveBox;