You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.0 KiB
79 lines
2.0 KiB
import React, { Component } from 'react';
|
|
import {Link} from 'react-router-dom';
|
|
import {BrowserRouter as Router,Route,Switch} from 'react-router-dom';
|
|
|
|
import { SnackbarHOC } from 'educoder';
|
|
import { TPMIndexHOC } from '../../tpm/TPMIndexHOC';
|
|
import { CNotificationHOC } from '../../courses/common/CNotificationHOC'
|
|
|
|
import Loadable from 'react-loadable';
|
|
import Loading from '../../../Loading';
|
|
|
|
|
|
const UsersInfo = Loadable({
|
|
loader: () => import('./Infos'),
|
|
loading: Loading,
|
|
})
|
|
|
|
const VideoUploadList = Loadable({
|
|
loader: () => import('./video/VideoUploadList'),
|
|
loading: Loading,
|
|
})
|
|
const VideoPublishSuccess = Loadable({
|
|
loader: () => import('./video/VideoPublishSuccess'),
|
|
loading: Loading,
|
|
})
|
|
|
|
const $ = window.$;
|
|
class InfosIndex extends Component{
|
|
constructor(props){
|
|
super(props);
|
|
this.state={
|
|
data:undefined,
|
|
}
|
|
}
|
|
componentDidMount =()=>{
|
|
|
|
}
|
|
|
|
|
|
//判断是否看的是当前用户的个人主页
|
|
componentDidUpdate =(prevProps)=> {
|
|
|
|
}
|
|
render(){
|
|
let {
|
|
data ,
|
|
}=this.state;
|
|
return(
|
|
<Switch {...this.props}>
|
|
|
|
{/* --------------------------------------------------------------------- */}
|
|
|
|
|
|
{/* 视频发布 */}
|
|
<Route exact path="/users/:username/videoes/upload"
|
|
render={
|
|
(props) => (<VideoUploadList {...this.props} {...props} {...this.state} />)
|
|
}
|
|
></Route>
|
|
<Route exact path="/users/:username/videoes/success"
|
|
render={
|
|
(props) => (<VideoPublishSuccess {...this.props} {...props} {...this.state} />)
|
|
}
|
|
></Route>
|
|
|
|
|
|
|
|
|
|
<Route path="/users/:username"
|
|
render={
|
|
(props) => (<UsersInfo {...this.props} {...props} {...this.state} />)
|
|
}
|
|
></Route>
|
|
|
|
</Switch>
|
|
)
|
|
}
|
|
}
|
|
export default CNotificationHOC() ( SnackbarHOC() ( TPMIndexHOC(InfosIndex) )); |