import React,{ Component } from "react"; import { Input, Checkbox, Table, Tooltip, Pagination,Spin, Divider } from "antd"; import { WordsBtn,on, off, trigger ,getUrl} from 'educoder'; import axios from 'axios'; import Modals from '../../modals/Modals'; import Sendtofilesmodal from "../coursesPublic/SendToFilesModal"; import Selectresource from "../coursesPublic/SelectResource"; import Sendresource from "../coursesPublic/sendResource"; import SendResources from "../coursesPublic/sendResources"; import Selectsetting from "../coursesPublic/SelectSetting"; import HomeworkModal from "../coursesPublic/HomeworkModal"; import Fileslistitem from './Fileslistitem'; import Titlesearchsection from '../common/titleSearch/TitleSearchSection'; import NoneData from "../coursesPublic/NoneData"; import _ from 'lodash' import './style.css'; import '../css/members.css'; import moment from 'moment'; import { tuple } from "antd/lib/_util/type"; class Fileslists extends Component{ constructor(props){ super(props); this.state = { searchValue: '', checkAllValue: false, checkBoxValues: [], total_count: 0, page: 1, pagesize: 15, tagname:undefined, search:undefined, sort:"desc", sorttype:"created_on", coursesecondcategoryid:undefined, filesId:undefined, name:"", sendTotype:false, Accessoryvisible:false, Addanexternallink:false, Exterchainname:"添加外链", discussMessageid:undefined, course_modules:undefined, has_course_groups:false, course_is_public:undefined, isSpin:false, course_second_categories:[], title: "", link: "", //是否展开 istowshowid:'', //新增参数判断几级目录 parent_category_id:'', } } getcourse_groupslists=()=>{ let coursesId=this.props.match.params.coursesId; let url="/courses/"+coursesId+"/all_course_groups.json"; axios.get(url).then((response) => { if(response.status===200){ this.setState({ course_groups:response.data.course_groups }) } }).catch((error) => { console.log(error) }); } componentDidMount=()=>{ this.getcourse_groupslists() this.setState({ isSpin:true, checkBoxValues:[], checkAllValue:false }) if(this.props.match.params.main_id){ this.setState({ child:false, sort:"desc" }) this.seactall(undefined,"desc"); }else if(this.props.match.params.Id){ this.setState({ child:true, sort:"desc" }) this.seactall(parseInt(this.props.match.params.Id),"desc") } this.updadatalist(); on('files', this.updateNavSuccess) on('files',this.updadatalist) } updateNavSuccess=()=>{ let{sort}=this.state; this.setState({ isSpin:true }) if(this.props.match.params.main_id){ this.seactall(undefined,sort); }else if(this.props.match.params.Id){ this.seactall(parseInt(this.props.match.params.Id),sort) } } componentDidUpdate = (prevProps) => { if(prevProps.coursesidtype!=this.props.coursesidtype||prevProps.match.params.Id!=this.props.match.params.Id&&this.props.coursesidtype!="node") { if(this.props.coursesidtype==="node") { this.getcourse_groupslists() this.setState({ isSpin: true, checkBoxValues: [], checkAllValue: false, }) if (this.props.match.params.main_id != undefined) { this.setState({ child: false, sort: "desc" }) this.seactall(undefined, "desc"); } }else{ this.getcourse_groupslists() this.setState({ isSpin:true, checkBoxValues:[], checkAllValue:false, }) if(this.props.match.params.Id!=undefined){ this.setState({ child:true, sort:"desc" }) this.seactall(parseInt(this.props.match.params.Id),"desc") } } } } updadatalist=(id)=>{ // this.seactall(id) if(this.props.user&&this.props.user.login=== ""||this.props.user&&this.props.user.login=== null||this.props.user&&this.props.user.login=== undefined){ }else{ let coursesId=this.props.match.params.coursesId; let url="/courses/"+coursesId+"/attahcment_category_list.json"; axios.get(url, { }).then((response) => { if(response!=undefined){ if(response.data&&response.data) { if (response.data.status != 401) { let list = response.data.course_modules; let course_second_categoriess; list.map((item, key) => { course_second_categoriess = item.children?item.children:[] }) this.setState({ course_modules: response.data, has_course_groups: response.data.has_course_groups, course_second_categories: course_second_categoriess }) } } } }) } } updatafiled=()=>{ console.log(5) let{sort}=this.state; if(this.props.match.params.main_id){ this.seactall(undefined,sort); }else if(this.props.match.params.Id){ this.seactall(parseInt(this.props.match.params.Id),sort) } } seactall=(coursesecondcategoryid,sort)=>{ this.setState({ coursesecondcategoryid:coursesecondcategoryid, isSpin:true }) let{pagesize,page,tagname,searchValue,sorttype}=this.state; this.getfileslist(pagesize,page,tagname,searchValue,sort,sorttype,coursesecondcategoryid); } onSortTypeChange=(sorttype)=>{ let{pagesize,page,tagname,searchValue,sort,coursesecondcategoryid,}=this.state; let newsort="desc"; if(sort==="desc"){ this.setState({ sorttype:sorttype, sort:"asc" }) newsort="asc" }else{ this.setState({ sorttype:sorttype, sort:"desc" }) newsort="desc" } console.log(1) this.getfileslist(pagesize,page,tagname,searchValue,newsort,sorttype,coursesecondcategoryid); } getfileslist=(pagesize,page,tagname,searchValue,sort,sorttype,coursesecondcategoryid)=>{ this.updadatalist(0); let url = "/files.json"; const courseid = this.props.match.params.coursesId; let id=coursesecondcategoryid; axios.get(url,{ params:{ course_id:courseid, page_size:pagesize, page:page, tag_name:tagname, search:searchValue, sort:sort==="desc"?0:1, sort_type:sorttype, course_second_category_id:id } }).then((result)=>{ if(result!=undefined){ if(result.status===200){ if(result.data.status===0){ let list=result.data.data; this.setState({ total_count:list.total_count, publish_count:list.publish_count, unpublish_count:list.unpublish_count, files:list.files, filesId:list.id, name:list.name, parent_category_id:list.parent_category_id, course_is_public:result.data.data.course_is_public, page:page }) } } } this.setState({ isSpin:false }) }).catch((error)=>{ console.log(error) this.setState({ isSpin:false }) }) } cancelmodel=()=>{ this.setState({ Modalstype:false, Loadtype:false, Modalstopval:"", ModalCancel:"", ModalSave:"", checkBoxValues:[], }) } testonSelect=()=>{ let {checkBoxValues,checkAllValue}=this.state; if(checkAllValue===false){ if(checkBoxValues.length===0){ return true } } } noSelect=(value)=>{ // this.setState({ // Modalstype:true, // Loadtype:true, // Modalstopval:"请选择你要操作的任务", // ModalSave:this.cancelmodel, // }) if(value===1){ this.props.showNotification("请先在列表中选择要删除的资源"); }else if(value===2){ this.props.showNotification("请先在列表中选择要发送的资源"); }else if(value===3){ this.props.showNotification("请先在列表中选择要公开的资源"); }else if(value===4){ this.props.showNotification("请先在列表中选择要发布的资源"); } } onDelete = () => { let selectnum= this.testonSelect(); if(selectnum===true){ this.noSelect(1); return } this.setState({ Modalstype:true, Modalstopval:"是否确认删除?", ModalCancel:this.cancelmodel, ModalSave:this.savedelete, }) } savedelete=()=>{ this.setState({ Modalstype:false, }) let {checkBoxValues} = this.state; const cid = this.props.match.params.coursesId const url = `/files/bulk_delete.json`; axios.delete(url, { data: { course_id:cid, ids: checkBoxValues, }}) .then((response) => { if (response.data.status == 0) { //Modalstopval:response.data.message, this.updatafiled() this.setState({ // Modalstype:true, // Modalstopval:"删除成功", ModalsBottomval:"", // ModalSave:this.cancelmodel, // Loadtype:true, checkBoxValues:[], checkAllValue:false }) this.props.showNotification("删除成功"); this.props.updataleftNavfun() } }) .catch(function (error) { console.log(error); }); } onSend= () => { let selectnum= this.testonSelect(); if(selectnum===true){ this.noSelect(2); return } this.setState({ sendTotype:true }) this.refs.sendToCourseModal.setVisible(true) } gobackonSend=(message)=>{ this.setState({ Modalstype:true, Modalstopval:message, ModalsBottomval:"", ModalSave:this.cancelmodel, Loadtype:true, checkBoxValues:[], checkAllValue:false }) } onOpen= () => { let selectnum= this.testonSelect(); if(selectnum===true){ this.noSelect(3); return } this.setState({ Modalstype:true, Modalstopval:"设为公开后,非课堂成员也可以访问查看", ModalsBottomval:"是否确认设为公开?", ModalCancel:this.cancelmodel, ModalSave:this.saveonOpen, }) } saveonOpen=()=>{ this.setState({ Modalstype:false, }) let {checkBoxValues,sort} = this.state; const cid = this.props.match.params.coursesId; let url="/files/bulk_public.json"; axios.put(url, { course_id:cid, ids: checkBoxValues, }) .then((response) => { if (response.data.status == 0) { this.updatafiled() //:response.data.message this.props.showNotification("更新成功"); this.setState({ // Modalstype:true, // Modalstopval:"更新成功", ModalsBottomval:"", ModalSave:this.cancelmodel, // Loadtype:true, checkBoxValues:[], checkAllValue:false }) } }) .catch(function (error) { console.log(error); }); } onPressEnter = () => { let {searchValue}=this.state; let{pagesize,page,tagname,sort,sorttype,coursesecondcategoryid}=this.state; this.getfileslist(pagesize,1,tagname,searchValue,sort,sorttype,coursesecondcategoryid); } onInputSearchChange = (e) => { this.setState({ searchValue:e.target.value }) } addDir = () => { let {filesId,course_modules,coursesecondcategoryid}=this.state; //调用获取资源接口 刷新数据 this.setState({ checkBoxValues:[] }) if(parseInt(this.props.match.params.main_id)!=parseInt(this.props.coursesids)){ trigger('attachmentAddlog', {id: parseInt( course_modules&&course_modules.course_modules[0].value),name:'资源',coursesecondcategoryid:coursesecondcategoryid}) }else{ console.log(parseInt(filesId)) trigger('attachmentAddlog', {id:parseInt(filesId),name:'资源',coursesecondcategoryid:coursesecondcategoryid}) } } editDir = (name) => { let {filesId}=this.state; this.setState({ checkBoxValues:[] }) let data={id:parseInt(filesId),name:name} trigger('flieseditDir', data) } onCheckAll = (e) => { let {files,checkBoxValues,page} =this.state; this.setState({ checkAllValue:e.target.checked, selectpage:page }) this.setState({ checkAllValue:e.target.checked, selectpage:page }) let checkBoxValuess=[]; if(e.target.checked===true){ for (var list of checkBoxValues){ checkBoxValuess.push(list) } for(var value of files){ checkBoxValuess.push(value.id) } checkBoxValuess=[...new Set(checkBoxValuess)] if(checkBoxValuess.length>15){ this.onselectfifteen() return } this.setState({ checkBoxValues:checkBoxValuess }) }else if(e.target.checked===false){ this.setState({ checkBoxValues:checkBoxValuess }) } } onselectfifteen = () => { this.setState({ Modalstype:true, Modalstopval:"选择条数不能大于15条", ModalSave:this.cancelmodel, Loadtype:true }) } onCheckBoxChange = (checkedValues) => { let {checkBoxValues,checkAllValue,files} =this.state; let type=checkAllValue if(checkedValues.length15||checkedValues.length>15){ this.onselectfifteen() return } this.setState({ checkBoxValues: checkedValues, checkAllValue:type }) } onItemClick = (item) => { const checkBoxValues = this.state.checkBoxValues.slice(0); const index = checkBoxValues.indexOf(item.id); if (index != -1) { _.remove(checkBoxValues, (listItem)=> listItem === item.id) } else { checkBoxValues.push(item.id); } this.onCheckBoxChange(checkBoxValues) } PaginationTask=(page)=>{ console.log(3) let {search,order,selectpage,checkAllValue,checkBoxValues}=this.state; let selectpagetype=selectpage===page?true:false this.setState({ page:page, checkAllValue:selectpagetype, checkBoxValues:[] }) let{pagesize,tagname,searchValue,sort,sorttype,coursesecondcategoryid}=this.state; this.getfileslist(pagesize,page,tagname,searchValue,sort,sorttype,coursesecondcategoryid); } //选用资源 addResource=()=>{ this.setState({ shixunmodal:true, checkBoxValues:[] }) } hidecouseShixunModal=()=>{ this.setState({ shixunmodal:false }) } //上传资源 sendResources = () => { this.setState({ Accessoryvisible:true, checkBoxValues:[] }) } //添加外链资源设置 sendResourcessls = (ints,bool) => { if(bool===true){ if(ints===1){ this.setState({ Addanexternallink:true, Exterchainname:"添加外链" }) }else{ this.setState({ Addanexternallink:true, Exterchainname:"资源设置" }) } }else{ this.setState({ Addanexternallink:false, title: "", link: "", discussMessageid:null, }) if(ints===1){ this.Updateresourcepage(); } } } Updateresourcepage=()=>{ let{pagesize,tagname,searchValue,page,sort,sorttype,coursesecondcategoryid}=this.state; this.getfileslist(pagesize,page,tagname,searchValue,sort,sorttype,coursesecondcategoryid); } Cancelvisible=()=>{ this.setState({ Accessoryvisible:false, Settingtype:false }) } Settingtypes=(id)=>{ this.setState({ Settingtype:true, discussMessageid:id }) } Settingtypess=(id,title,link)=>{ this.setState({ Addanexternallink:true, Exterchainname:"资源设置", discussMessageid:id, title: title, link: link }) } //判断二级链接是否显示 istowshow(item){ this.setState({ istowshowid:item.value }) } moveTos=(id)=>{ let {checkBoxValues} = this.state; if(checkBoxValues.length===0){ this.props.showNotification('请先在列表中选择要移动的资源') return } const cid = this.props.match.params.coursesId; const url = `/files/bulk_move.json` axios.put(url, { course_id: cid, ids:checkBoxValues, to_category_id:id }) .then((response) => { if (response.data.status == 0) { this.setState({ // Modalstype:true, // Modalstopval:response.data.message, // ModalsBottomval:"", // ModalSave:this.cancelmodel, // Loadtype:true, checkBoxValues:[], checkAllValue:false }) this.props.showNotification('资源移动成功') this.props.updataleftNavfun() this.updatafiled() } }) } homeworkstart=()=>{ let selectnum= this.testonSelect(); if(selectnum===true){ this.noSelect(4); return } let starttime= this.props.getNowFormatDates(1); let endtime=this.props.getNowFormatDates(2); this.setState({ modalname:"立即发布", modaltype:this.state.course_groups===null||this.state.course_groups.length===0?2:1, visible:true, typs:"end", Topval:"学生将能立即收到资源", // Botvalleft:"暂不发布", // Botval:`本操作只对"未发布"的分班有效`, // starttime:"发布时间:"+moment(moment(new Date())).format("YYYY-MM-DD HH:mm"), // starttimes:starttime, // endtime:"截止时间:"+endtime, Cancelname:"暂不发布", Savesname:"立即发布", Cancel:this.homeworkhide, Saves:this.homeworkstartend, course_groups:this.state.course_groups, }) } // 立即发布 homeworkstartend=(ds,endtime)=>{ let {checkBoxValues}=this.state; let coursesId=this.props.match.params.coursesId; let url ="/files/bulk_publish.json"; axios.put(url, { course_id:coursesId, group_ids:ds, ids :checkBoxValues, }).then((result)=>{ if(result.status===200){ this.props.showNotification("发布成功") this.setState({ checkBoxValues:[], checkAllValue:false }) this.homeworkhide() this.props.updataleftNavfun() this.updatafiled() } }).catch((error)=>{ console.log(error); }) } homeworkhide=()=>{ this.setState({ modalname:undefined, modaltype:undefined, visible:false, Topval:undefined, Topvalright:undefined, Botvalleft:undefined, Botval:undefined, starttime:undefined, endtime:undefined, Cancelname:undefined, Savesname:undefined, Cancel:undefined, Saves:undefined, StudentList_value:undefined, addname:undefined, addnametype:false, addnametab:undefined, typs:undefined, starttimes:undefined, }) } getcourse_groupslist=(id)=>{ this.setState({ course_groupslist:id }) } render(){ let { searchValue, checkBoxValues, checkAllValue, total_count, publish_count, unpublish_count, files, sorttype, Modalstype, Modalstopval, ModalCancel, ModalSave, ModalsBottomval, Loadtype, page, name, sendTotype, Accessoryvisible, Settingtype, discussMessageid, course_modules, shixunmodal, course_is_public, filesId, child, sort, Addanexternallink, Exterchainname, title, link, } = this.state; let category_id= this.props.match.params.category_id; // console.log(this.state.course_groups) return( {/*立即发布*/} {this.state.visible===true?:""} {/*发送*/} this.gobackonSend(value)} sendTotype={sendTotype} selectedMessageIds={checkBoxValues} cancelmodel={()=>this.cancelmodel()} > {/*提示*/} {Modalstype&&Modalstype===true?:""} { shixunmodal===true||Accessoryvisible===true||Settingtype===true||Addanexternallink===true?:"" } {/*选择资源*/} {shixunmodal&&shixunmodal===true?this.seactall(id,sort)} attachmentId={this.state.coursesecondcategoryid} />:""} {/*上传资源*/} {Accessoryvisible&&Accessoryvisible===true?this.seactall(id,sort)} has_course_groups={this.state.has_course_groups} attachmentId={this.state.coursesecondcategoryid} />:""} {/*添加外链*/} {Addanexternallink&&Addanexternallink===true?this.sendResourcessls(2,false)} categoryid={category_id} setupdate={(ints,bool)=>this.sendResourcessls(ints,bool)} has_course_groups={this.state.has_course_groups} course_id={this.props.match.params.coursesId} attachmentId={this.state.coursesecondcategoryid} />:""} {/*设置资源*/} {Settingtype&&Settingtype===true?this.seactall(id,sort)} Cancel={this.Cancelvisible} has_course_groups={this.state.has_course_groups} attachmentId={this.state.coursesecondcategoryid} />:""} {child===false?"":} {/*{this.props.isAdmin()?parseInt(this.props.match.params.main_id)===parseInt(this.props.coursesids)?this.addDir()} className={"mr30 font-16"}>新建目录:"":""}*/} {this.props.isAdmin()?this.state.parent_category_id===null||this.state.parent_category_id===undefined||this.state.parent_category_id===0?this.addDir()} className={"mr30 font-16"}>新建目录:"":''} {this.props.isAdmin()?parseInt(this.props.match.params.main_id)!=parseInt(this.props.coursesids)?this.editDir(name)} className={"mr30 font-16"}>目录重命名:"":""} {this.props.isAdmin()||this.props.isStudent() ? this.props.user&&this.props.user.main_site===true? this.addResource()}>选用资源:"":""} {this.props.isAdmin()||this.props.isStudent() ? this.sendResources()}>上传资源:""} {this.props.isAdmin()||this.props.isStudent() ? this.sendResourcessls(1,true)}>添加外链:""} } secondRowLeft={ this.props.isAdmin()?
共 {total_count} 个资源 已发布:{publish_count}个 未发布:{unpublish_count}个
:
共 {publish_count} 个资源
} onPressEnter={this.onPressEnter} searchPlaceholder={"请输入名称进行搜索"} showSearchInput={true} > {this.props.isAdmin()? files===undefined?'' :files.length===0? "":
{this.props.isAdmin()? 已选 {checkBoxValues.length} 个 (不支持跨页勾选):""}
{this.props.isAdmin()?
  • 删除
  • :""} {this.props.isAdmin()?
  • 发送
  • :""} {this.props.isAdmin()?
  • 立即发布
  • :""} {this.props.isAdmin()?course_is_public===true?
  • 设为公开
  • :"":""} {this.props.isAdmin()?
  • 移动到...
      {/*

      资源

      */} {this.state.course_second_categories&&this.state.course_second_categories.length>10?

      {this.setState({dirSearchValue: e.target.value})}}/>

      :""} {course_modules&&course_modules.course_modules.map((item,key)=>{ return( filesId&&filesId===item.value?"":
    • this.moveTos(0)} title={item.title}>{item.title}
    • ) })} { course_modules&&course_modules.course_modules.map( (item,key) => { return item.children&&item.children.filter((item)=> { return (!this.state.dirSearchValue || item.name.indexOf(this.state.dirSearchValue) != -1) }).map((itm,k)=>{ return( filesId&&filesId===itm.value?"":
      this.moveTos(itm.value )} style={{marginLeft:15,width:itm.title.length>13?200:undefined,color:'#000000',overflow: 'hidden',textOverflow:'ellipsis',whiteSpace: 'nowrap'}}>{itm.title}
      {itm.children.length===0?'': this.istowshow(itm,filesId)} className="iconfont icon-xiajiantou font-12 ml2">}
      { this.state.istowshowid===itm.value? itm.children.map((tt,ti) => { return( filesId&&filesId===itm.id?"":
      this.moveTos(tt.value )} title={tt.name}>{tt.title}
      ) }) :''}
      ) }) })} {this.state.course_second_categories&&this.state.course_second_categories.length===0?
      暂无数据
      :""} {/*{course_modules&&course_modules.course_modules.map((item,key)=>{*/} {/*return(*/} {/*item.course_second_categories.map((itm,k)=>{*/} {/*return(*/} {/*
    • this.moveTos(itm.id )}>{itm.name}
    • */} {/*)*/} {/*})*/} {/*)*/} {/*})}*/} {this.props.isAdmin()?parseInt(this.props.match.params.main_id)===filesId&&filesId?

      this.addDir()}>新建目录

      :"":""}
  • :""} {this.props.isAdmin()||this.props.isStudent()?
  • this.onSortTypeChange('created_on')}> 更新时间
  • :""}
    :""}
    { files&&files.map((item, index) => { return (
    this.onItemClick(item)}>
    this.Updateresourcepage()} isAdmin={this.props.isAdmin()} isStudent={this.props.isStudent()} isNotMember={this.props.isNotMember()} checkBox={this.props.isAdmin()?:""} Settingtypes={(id)=>this.Settingtypes(id)} Settingtypess={(id,t,l)=>this.Settingtypess(id,t,l)} coursesId={this.props.match.params.coursesId} updatafiledfun={()=>this.updatafiled()} index={index} >
    ) }) }
    {this.props.isAdmin()||this.props.isStudent() ? files&&files.length>0?:"":""}
    { files===undefined?'' :files.length===0?:"" } ) } } export default Fileslists; {/*
    */} {/*
    */} {/**/} {/*

    暂时还没有相关数据哦!

    */} {/*
    */}