dev_aliyun2
harry 5 years ago
parent 39b575f91d
commit 1c7e2fea2b

@ -1,6 +1,7 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import { SnackbarHOC } from 'educoder'; import { SnackbarHOC } from 'educoder';
import { Route, Switch } from 'react-router-dom'; import {BrowserRouter as Router,Route,Switch} from 'react-router-dom';
import { withRouter } from 'react-router' import { withRouter } from 'react-router'
import { Loadable } from 'educoder'; import { Loadable } from 'educoder';
import Loading from '../../Loading'; import Loading from '../../Loading';
@ -13,19 +14,19 @@ import "./css/Courses.css"
//里面有资源 //里面有资源
const ListPageIndex = Loadable({ const ListPageIndex = Loadable({
loader: () => import('./ListPageIndex'), loader: () => import('./ListPageIndex'),
loading: Loading, loading:Loading,
}) })
//课堂首页 //课堂首页
const CoursesHome = Loadable({ const CoursesHome = Loadable({
loader: () => import('./coursesHome/CoursesHome'), loader: () => import('./coursesHome/CoursesHome'),
loading: Loading, loading:Loading,
}) })
//课堂详情页 //课堂详情页
const CoursesDetail = Loadable({ const CoursesDetail= Loadable({
loader: () => import('./coursesDetail/CoursesDetail'), loader: () => import('./coursesDetail/CoursesDetail'),
loading: Loading, loading:Loading,
}) })
@ -33,99 +34,146 @@ const CoursesDetail = Loadable({
// 课堂讨论 // 课堂讨论
const BoardIndex = Loadable({ const BoardIndex = Loadable({
loader: () => import('./BoardIndex'), loader: () => import('./BoardIndex'),
loading: Loading, loading:Loading,
}) })
const GraduationTopicsDetail = Loadable({
const GraduationTopics= Loadable({
loader: () => import('./graduation/topics'),
loading: Loading,
})
const GraduationTopicsDetail= Loadable({
loader: () => import('./graduation/topics/GraduateTopicDetail'), loader: () => import('./graduation/topics/GraduateTopicDetail'),
loading: Loading, loading: Loading,
}) })
const GraduateTopicPostWorksNew = Loadable({ const GraduateTopicPostWorksNew= Loadable({
loader: () => import('./graduation/topics/GraduateTopicPostWorksNew'), loader: () => import('./graduation/topics/GraduateTopicPostWorksNew'),
loading: Loading, loading: Loading,
}) })
const GraduateTopicNew = Loadable({ const GraduateTopicNew= Loadable({
loader: () => import('./graduation/topics/GraduateTopicNew'), loader: () => import('./graduation/topics/GraduateTopicNew'),
loading: Loading, loading: Loading,
}) })
const GraduationTasks= Loadable({
loader: () => import('./graduation/tasks'),
loading: Loading,
})
// 资源
const Resourcelist= Loadable({
loader: () => import('./Resource/index'),
loading: Loading,
})
//新建实训 //新建实训
const WrappedCoursesNewApp = Loadable({ const WrappedCoursesNewApp= Loadable({
loader: () => import('./new/CoursesNew'), loader: () => import('./new/CoursesNew'),
loading: Loading, loading: Loading,
}) })
//新建精品课堂 //新建精品课堂
const WrappedCoursesNewAppGoldclass = Loadable({ const WrappedCoursesNewAppGoldclass= Loadable({
loader: () => import('./new/Goldsubject'), loader: () => import('./new/Goldsubject'),
loading: Loading, loading: Loading,
}) })
const ShixunHomeworkPage = Loadable({ const ShixunHomeworkPage =Loadable({
loader: () => import('./shixunHomework/ShixunHomeworkPage'), loader: () => import('./shixunHomework/ShixunHomeworkPage'),
loading: Loading, loading: Loading,
}) })
//实训作业 //实训作业
const ShixunHomework = Loadable({ const ShixunHomework= Loadable({
loader: () => import('./shixunHomework/shixunHomework'), loader: () => import('./shixunHomework/shixunHomework'),
loading: Loading, loading: Loading,
}) })
//实训作业设置
const Trainingjobsetting= Loadable({
loader: () => import('./shixunHomework/Trainingjobsetting'),
loading: Loading,
})
//实训作业列表教师
// //实训作业列表学生未完成的
// const Studentnotcompleted= Loadable({
// loader: () => import('./shixunHomework/Listofworksstudentone'),
// loading: Loading,
// })
//实训作业列表完成的
const Studenthascompleted= Loadable({
loader: () => import('./shixunHomework/Listofworksstudentone'),
loading: Loading,
})
//实训作业提交总结 //实训作业提交总结
const CommitSummary = Loadable({ const CommitSummary = Loadable({
loader: () => import('./shixunHomework/CommitSummary'), loader: () => import('./shixunHomework/CommitSummary'),
loading: Loading, loading: Loading,
}) })
//实训作业设置
const Workquestionandanswer= Loadable({
loader: () => import('./shixunHomework/Workquestionandanswer'),
loading: Loading,
})
//实训报告 //实训报告
const ShixunWorkReport = Loadable({ const ShixunWorkReport= Loadable({
loader: () => import('./shixunHomework/ShixunWorkReport'), loader: () => import('./shixunHomework/ShixunWorkReport'),
loading: Loading, loading: Loading,
}) })
//实训查重 //实训查重
const ShixunStudentWork = Loadable({ const ShixunStudentWork= Loadable({
loader: () => import('./shixunHomework/ShixunStudentWork'), loader: () => import('./shixunHomework/ShixunStudentWork'),
loading: Loading, loading: Loading,
}) })
//实训查重详情 //实训查重详情
const ShixunWorkDetails = Loadable({ const ShixunWorkDetails= Loadable({
loader: () => import('./shixunHomework/ShixunWorkDetails'), loader: () => import('./shixunHomework/ShixunWorkDetails'),
loading: Loading, loading: Loading,
}) })
//问卷 //问卷
const Poll = Loadable({ const Poll= Loadable({
loader: () => import('./poll/Poll'), loader: () => import('./poll/Poll'),
loading: Loading, loading: Loading,
}) })
//问卷新建 //问卷新建
const PollNew = Loadable({ const PollNew= Loadable({
loader: () => import('./poll/PollNew'), loader: () => import('./poll/PollNew'),
loading: Loading, loading: Loading,
}) })
//问卷答题 //问卷答题
const PollInfo = Loadable({ const PollInfo= Loadable({
loader: () => import('./poll/PollInfo'), loader: () => import('./poll/PollInfo'),
loading: Loading, loading: Loading,
}) })
//问卷详情 //问卷详情
const PollDetail = Loadable({ const PollDetail= Loadable({
loader: () => import('./poll/PollDetailIndex'), loader: () => import('./poll/PollDetailIndex'),
loading: Loading, loading: Loading,
}) })
const Testpapersettinghomepage = Loadable({
//试卷
const Exercise= Loadable({
loader: () => import('./exercise/Exercise'),
loading: Loading,
})
const Testpapersettinghomepage =Loadable({
loader: () => import('./exercise/Testpapersettinghomepage'), loader: () => import('./exercise/Testpapersettinghomepage'),
loading: Loading, loading: Loading,
}) })
const ExerciseNew = Loadable({ const ExerciseNew =Loadable({
loader: () => import('./exercise/ExerciseNew'), loader: () => import('./exercise/ExerciseNew'),
loading: Loading, loading: Loading,
}) })
const ExerciseReviewAndAnswer = Loadable({ const ExerciseReviewAndAnswer=Loadable({
loader: () => import('./exercise/ExerciseReviewAndAnswer'), loader:() => import('./exercise/ExerciseReviewAndAnswer'),
loading: Loading, loading: Loading,
}) })
@ -136,23 +184,23 @@ const Studentshavecompletedthelist = Loadable({
}) })
//教师列表 //教师列表
const TeacherList = Loadable({ const TeacherList= Loadable({
loader: () => import('./members/teacherList'), loader: () => import('./members/teacherList'),
loading: Loading, loading: Loading,
}) })
//学生列表 //学生列表
const StudentsList = Loadable({ const StudentsList= Loadable({
loader: () => import('./members/studentsList'), loader: () => import('./members/studentsList'),
loading: Loading, loading: Loading,
}) })
//普通作业 //普通作业
const CommonWork = Loadable({ const CommonWork= Loadable({
loader: () => import('./busyWork/Index'), loader: () => import('./busyWork/Index'),
loading: Loading, loading: Loading,
}) })
const GroupWork = Loadable({ const GroupWork= Loadable({
loader: () => import('./busyWork/IndexGroup'), loader: () => import('./busyWork/IndexGroup'),
loading: Loading, loading: Loading,
}) })
@ -165,40 +213,40 @@ const GroupWork = Loadable({
// }) // })
//毕设任务列表新建 //毕设任务列表新建
const GraduationTaskseditApp = Loadable({ const GraduationTaskseditApp= Loadable({
loader: () => import('./graduation/tasks/GraduationTasksedit'), loader: () => import('./graduation/tasks/GraduationTasksedit'),
loading: Loading, loading: Loading,
}) })
//毕设任务列表编辑 //毕设任务列表编辑
const GraduationTasksnewApp = Loadable({ const GraduationTasksnewApp= Loadable({
loader: () => import('./graduation/tasks/GraduationTasksnew'), loader: () => import('./graduation/tasks/GraduationTasksnew'),
loading: Loading, loading: Loading,
}) })
//毕设任务列表设置 //毕设任务列表设置
const GraduationTasksquestions = Loadable({ const GraduationTasksquestions= Loadable({
loader: () => import('./graduation/tasks/GraduationTaskssettingquestions'), loader: () => import('./graduation/tasks/GraduationTaskssettingquestions'),
loading: Loading, loading: Loading,
}) })
//毕设任务列表 //毕设任务列表
const GraduationTaskssettinglist = Loadable({ const GraduationTaskssettinglist= Loadable({
loader: () => import('./graduation/tasks/GraduationTaskDetail'), loader: () => import('./graduation/tasks/GraduationTaskDetail'),
loading: Loading, loading: Loading,
}) })
//毕业任务设置 //毕业任务设置
const GraduationTaskssetting = Loadable({ const GraduationTaskssetting=Loadable({
loader: () => import('./graduation/tasks/GraduationTaskssetting'), loader: () => import('./graduation/tasks/GraduationTaskssetting'),
loading: Loading, loading: Loading,
}) })
// 评阅列表 // 评阅列表
const GraduationTasksappraise = Loadable({ const GraduationTasksappraise=Loadable({
loader: () => import('./graduation/tasks/GraduationTasksappraise'), loader: () => import('./graduation/tasks/GraduationTasksappraise'),
loading: Loading, loading: Loading,
}) })
@ -206,109 +254,108 @@ const GraduationTasksappraise = Loadable({
//创建作品 //创建作品
const GraduationTasksSubmitnewApp = Loadable({ const GraduationTasksSubmitnewApp=Loadable({
loader: () => import('./graduation/tasks/GraduationTasksSubmitnew'), loader: () => import('./graduation/tasks/GraduationTasksSubmitnew'),
loading: Loading, loading: Loading,
}) })
//修改作品 //修改作品
const GraduationTasksSubmiteditApp = Loadable({ const GraduationTasksSubmiteditApp=Loadable({
loader: () => import('./graduation/tasks/GraduationTasksSubmitedit'), loader: () => import('./graduation/tasks/GraduationTasksSubmitedit'),
loading: Loading, loading: Loading,
}) })
//排序 //排序
const Ordering = Loadable({ const Ordering=Loadable({
loader: () => import('../../modules/courses/ordering/Ordering'), loader: () => import('../../modules/courses/ordering/Ordering'),
loading: Loading, loading: Loading,
}); });
class CoursesIndex extends Component { class CoursesIndex extends Component{
constructor(props) { constructor(props) {
super(props) super(props)
this.state = { this.state={
coursesids: undefined, coursesids: undefined,
coursesidsfun: this.coursesidsfun, coursesidsfun:this.coursesidsfun,
updataleftNavfun: this.updataleftNav, updataleftNavfun:this.updataleftNav,
course_modules: undefined, course_modules:undefined,
hidden_modules: [], hidden_modules:[],
is_teacher: false, is_teacher:false,
isaloadtype: true, isaloadtype:true,
coursesidtype: undefined, coursesidtype:undefined,
locationNavfun: this.locationNav, locationNavfun:this.locationNav,
unlocationNavfun: this.unlocationNavfun unlocationNavfun:this.unlocationNavfun
} }
} }
coursesidsfun = (id, type) => { coursesidsfun=(id,type)=>{
this.setState({ this.setState({
coursesids: id, coursesids:id,
coursesidtype: type coursesidtype:type
}) })
} }
componentDidMount() { componentDidMount(){
// this.updataleftNav() // this.updataleftNav()
this.historyArray = [window.location.pathname]; this.historyArray = [window.location.pathname];
this.props.history.listen(location => { this.props.history.listen( location => {
this.historyArray.unshift(window.location.pathname); this.historyArray.unshift(window.location.pathname);
this.historyArray.length = 2; this.historyArray.length = 2;
//Do your stuff here //Do your stuff here
}); });
} }
//更新左边课堂导航 //更新左边课堂导航
updataleftNav = () => { updataleftNav=()=>{
let query = this.props.location.pathname let query=this.props.location.pathname
let { isaloadtype } = this.state; let {isaloadtype}=this.state;
let types = isaloadtype === false ? true : false let types=isaloadtype===false?true:false
const type = query.split('/'); const type = query.split('/');
let id = parseInt(type[2]) let id=parseInt(type[2])
if (isNaN(id)) { if(isNaN(id)){
return return
} }
const querys = this.props.location.search; const querys = this.props.location.search;
var dataqueryss = {} var dataqueryss={}
try { try {
var foqus = this.foo(querys); var foqus=this.foo(querys);
if (JSON.stringify(foqus) === "{}") { if(JSON.stringify(foqus) ==="{}"){
this.setState({ this.setState({
dataquerys: {}, dataquerys:{},
}); });
} else { }else{
this.setState({ this.setState({
dataquerys: foqus, dataquerys:foqus,
}); });
dataqueryss = foqus; dataqueryss=foqus;
} }
} catch (e) { }catch (e) {
this.setState({ this.setState({
dataquerys: {}, dataquerys:{},
}) })
} }
// let id=this.props.match.params.coursesId; // let id=this.props.match.params.coursesId;
let url = "/courses/" + id + "/left_banner.json" let url ="/courses/"+id+"/left_banner.json"
axios.get(url, axios.get(url,
{ {params:
params:
dataqueryss dataqueryss
} }
).then((response) => { ).then((response) => {
if (response != undefined) { if(response!=undefined){
if (response.data && response.data) { if(response.data&&response.data){
this.setState({ this.setState({
course_modules: response.data.course_modules, course_modules:response.data.course_modules,
hidden_modules: response.data.hidden_modules, hidden_modules:response.data.hidden_modules,
is_teacher: response.data.is_teacher, is_teacher:response.data.is_teacher,
isaloadtype: types isaloadtype:types
}) })
this.locationNav(response.data.course_modules) this.locationNav(response.data.course_modules)
} }
} }
}) })
}; };
foo = (url) => { foo=(url)=> {
var json = {}; var json = {};
var regExp = /[\?\&](\w+)(=?)(\w*)/g; var regExp = /[\?\&](\w+)(=?)(\w*)/g;
var arr; var arr;
@ -330,36 +377,36 @@ class CoursesIndex extends Component {
return json; return json;
}; };
locationNav = (list) => { locationNav=(list)=>{
if (list) { if(list){
let url = this.props.location.pathname; let url=this.props.location.pathname;
const type = url.split('/'); const type = url.split('/');
let filesId = parseInt(type[4]); let filesId=parseInt(type[4]);
// let urls=this.props.match.url // let urls=this.props.match.url
var lists = list; var lists=list;
lists.forEach((item, index) => { lists.forEach((item,index)=>{
if (url === item.category_url) { if(url===item.category_url){
this.setState({ this.setState({
indexs: index, indexs:index,
mainurl: item.category_url mainurl:item.category_url
}) })
this.coursesidsfun(item.id, "node") this.coursesidsfun(item.id,"node")
} else { }else{
if (item.second_category != undefined && item.second_category.length != 0) { if(item.second_category!=undefined&&item.second_category.length!=0){
item.second_category.forEach((iem, key) => { item.second_category.forEach((iem,key)=>{
if (url === iem.second_category_url) { if(url===iem.second_category_url){
if (parseInt(filesId) === iem.category_id || parseInt(filesId) === item.id) { if( parseInt(filesId)===iem.category_id||parseInt(filesId)===item.id){
this.setState({ this.setState({
indexs: index, indexs:index,
url: url, url:url,
mainurl: item.category_url mainurl:item.category_url
}) })
} }
this.coursesidsfun(item.id, "child") this.coursesidsfun(item.id,"child")
} }
}) })
} }
@ -367,6 +414,8 @@ class CoursesIndex extends Component {
} }
}) })
}
} }
unlocationNavfun=(val)=>{ unlocationNavfun=(val)=>{
@ -525,13 +574,6 @@ class CoursesIndex extends Component {
(props) => (<ListPageIndex {...this.props} {...props} {...this.state} {...common}/>) (props) => (<ListPageIndex {...this.props} {...props} {...this.state} {...common}/>)
}></Route> }></Route>
{/*————————————————————————————————————————————————————————————————————————————————————*/}
{/* 作品评阅 https://www.trustie.net/issues/19981 */}
<Route path="/classrooms/:coursesId/graduation_tasks/:category_id/appraise"
render={
(props) => (<GraduationTasksappraise {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/*————————————————————————————————————————————————————————————————————————————————————*/} {/*————————————————————————————————————————————————————————————————————————————————————*/}
{/* 作品评阅 https://www.trustie.net/issues/19981 */} {/* 作品评阅 https://www.trustie.net/issues/19981 */}
@ -584,12 +626,6 @@ class CoursesIndex extends Component {
} }
></Route> ></Route>
{/* 修改毕设任务 https://www.trustie.net/issues/19981 */}
<Route path="/courses/:coursesId/graduation_tasks/:category_id/edit"
render={
(props) => (<GraduationTaskseditApp {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/* 新建毕设任务 https://www.trustie.net/issues/19981 */} {/* 新建毕设任务 https://www.trustie.net/issues/19981 */}
<Route path="/classrooms/:coursesId/graduation_tasks/:category_id/new" <Route path="/classrooms/:coursesId/graduation_tasks/:category_id/new"
@ -598,12 +634,6 @@ class CoursesIndex extends Component {
} }
></Route> ></Route>
{/* 新建毕设任务 https://www.trustie.net/issues/19981 */}
<Route path="/courses/:coursesId/graduation_tasks/:category_id/new"
render={
(props) => (<GraduationTasksnewApp {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/* 毕设任务列表 https://www.trustie.net/issues/19981 */} {/* 毕设任务列表 https://www.trustie.net/issues/19981 */}
<Route path="/classrooms/:coursesId/graduation_tasks/:Id" exact <Route path="/classrooms/:coursesId/graduation_tasks/:Id" exact
@ -735,24 +765,6 @@ class CoursesIndex extends Component {
} }
></Route> ></Route>
{/* 问卷新建 */}
<Route path="/classrooms/:coursesId/polls/:pollid/:news"
render={
(props) => (<PollNew {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/*/!* 问卷编辑 *!/*/}
{/*<Route path="/classrooms/:coursesId/polls/:pollid/:news"*/}
{/*render={*/}
{/*(props) => (<PollNew {...this.props} {...props} {...this.state} {...common} />)*/}
{/*}*/}
{/*></Route>*/}
{/* 问卷 */}
<Route path="/classrooms/:coursesId/polls/:Id"
render={
(props) => (<ListPageIndex {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/* 试卷查看/评阅 */} {/* 试卷查看/评阅 */}
<Route exact path="/classrooms/:coursesId/exercises/:Id/users/:userId" <Route exact path="/classrooms/:coursesId/exercises/:Id/users/:userId"
@ -774,18 +786,7 @@ class CoursesIndex extends Component {
} }
></Route> ></Route>
{/*试卷新建 */} {/*试卷设置主页*/}
<Route exact path="/classrooms/:coursesId/exercises/new"
render={
(props) => (<ExerciseNew {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/*试卷新建 */}
<Route exact path="/classrooms/:coursesId/exercises/:Id/edit"
render={
(props) => (<ExerciseNew {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
<Route path="/classrooms/:coursesId/exercises/:Id/student_exercise_list" <Route path="/classrooms/:coursesId/exercises/:Id/student_exercise_list"
render={ render={
@ -793,11 +794,6 @@ class CoursesIndex extends Component {
} }
></Route> ></Route>
<Route path="/classrooms/:coursesId/exercises/:Id/student_exercise_list"
render={
(props) => (<Testpapersettinghomepage {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/*学生完成列表*/} {/*学生完成列表*/}
<Route <Route
@ -967,32 +963,7 @@ class CoursesIndex extends Component {
} }
></Route> ></Route>
{/*新建课堂*/} {/*课堂统计列表2019.10.29 */}
<Route path="/classrooms/new"
render={
(props) => (<WrappedCoursesNewApp {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/*新建精品课堂*/}
{/*coursesId 课堂id */}
{/*id 是否是私有或者公有*/}
<Route path="/classrooms/news/:subjectid/newgold/:id"
render={
(props) => (<WrappedCoursesNewAppGoldclass {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/*修改精品课堂*/}
<Route path="/classrooms/:coursesId/newgolds/settings"
render={
(props) => (<WrappedCoursesNewAppGoldclass {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/*修改课堂*/}
<Route path="/classrooms/:coursesId/settings"
render={
(props) => (<WrappedCoursesNewApp {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
<Route path="/classrooms/:coursesId/statistics" <Route path="/classrooms/:coursesId/statistics"
render={ render={
@ -1022,27 +993,6 @@ class CoursesIndex extends Component {
></Route> ></Route>
{/*<Route exact path="/classrooms" component={CoursesHome} {...this.props} {...props} {...this.state} ></Route>*/} {/*<Route exact path="/classrooms" component={CoursesHome} {...this.props} {...props} {...this.state} ></Route>*/}
<Route path="/classrooms/:coursesId/statistics"
render={
(props) => (<ListPageIndex {...this.props} {...props} {...this.state} />)
}
></Route>
{/*/!*实训作业and课堂详情页*!/*/}
<Route path="/classrooms/:coursesId"
render={
(props) => (<ListPageIndex {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/*课堂首页*/}
<Route path="/classrooms"
render={
(props) => (<CoursesHome {...this.props} {...props} {...this.state} {...common} />)
}
></Route>
{/*<Route exact path="/classrooms" component={CoursesHome} {...this.props} {...props} {...this.state} ></Route>*/}
</Switch> </Switch>
) )
} }

@ -1,9 +1,9 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import { SnackbarHOC } from 'educoder'; import { SnackbarHOC } from 'educoder';
import {BrowserRouter as Router,Route,Switch} from 'react-router-dom'; import {BrowserRouter as Router,Route,Switch} from 'react-router-dom';
import Loadable from 'react-loadable'; import { Loadable } from 'educoder';
import Loading from '../../../Loading'; import Loading from '../../../Loading';
import { CNotificationHOC } from '../common/CNotificationHOC' import CNotificationHOC from '../common/CNotificationHOC'
import { RouteHOC } from './common' import { RouteHOC } from './common'
import "../css/busyWork.css" import "../css/busyWork.css"
//引入对应跳转的组件 //引入对应跳转的组件

Loading…
Cancel
Save