import React, { Component } from 'react'; import { Redirect } from 'react-router'; import { BrowserRouter as Router, Route, Link, Switch } from "react-router-dom"; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { getImageUrl ,markdownToHTML, configShareForCustom} from 'educoder' import { CircularProgress } from 'material-ui/Progress'; import { Modal, Spin, Tooltip ,message,Icon} from 'antd'; import LoadingSpin from '../../../../common/LoadingSpin'; import 'antd/lib/pagination/style/index.css'; import '../shixunchildCss/Challenges.css' import ReactDOM from 'react-dom'; import axios from 'axios'; import AccountProfile from"../../../user/AccountProfile"; const $ = window.$; class Challengesjupyter extends Component { constructor(props) { super(props) this.state = { ChallengesDataList: undefined, operate: true, startbtns: false, iFrameHeight: '0px', jupyter_port:0, jupyter_url:null, username:"", booljupyterurls:false, loading:false, } } ChallengesList = () => { let id = this.props.match.params.shixunId; let ChallengesURL = `/shixuns/` + id + `/challenges.json`; axios.get(ChallengesURL).then((response) => { if (response.status === 200) { if (response.data.status === 403||response.data.status === 401||response.data.status === 500) { }else{ configShareForCustom(this.props.shixunsDetails.name, response.data.description) this.setState({ ChallengesDataList: response.data, sumidtype: false, }); } } }).catch((error) => { //console.log(error) }); } componentDidMount() { setTimeout(this.ChallengesList(), 1000); let id = this.props.match.params.shixunId; let ChallengesURL = `/jupyters/get_info_with_tpm.json`; let datas={ identifier:id, } axios.get(ChallengesURL, {params: datas}).then((response) => { if (response.data.status === 403||response.data.status === 401||response.data.status === 500) { setTimeout(() => { this.setState({ booljupyterurls:true, }) }, 600) }else{ if(response.data.status===0){ setTimeout(() => { this.setState({ jupyter_url:response.data.url, jupyter_port:response.data.port, booljupyterurls:true, }) }, 800) }else{ setTimeout(() => { this.setState({ booljupyterurls:true, }) }, 600) } } }).catch((error) => { setTimeout(() => { this.setState({ booljupyterurls:true, }) }, 600) }); } updatamakedowns = () => { this.setState({ loading:true, booljupyterurls:false }) let id = this.props.match.params.shixunId; let ChallengesURL = `/jupyters/get_info_with_tpm.json`; let datas={ identifier:id, } axios.get(ChallengesURL, {params: datas}).then((response) => { if (response.data.status === 403||response.data.status === 401||response.data.status === 500) { setTimeout(() => { this.setState({ booljupyterurls:true, }) }, 600) }else{ if(response.data.status===0){ setTimeout(() => { this.setState({ jupyter_url:response.data.url, jupyter_port:response.data.port, booljupyterurls:true, }) }, 800) this.setState({ }) }else{ setTimeout(() => { this.setState({ booljupyterurls:true, }) }, 600) } } }).catch((error) => { setTimeout(() => { this.setState({ booljupyterurls:true, }) }, 600) }); } modifyjupyter=()=>{ let id=this.props.match.params.shixunId; var jupyter_port=""; try{ jupyter_port= parseInt(this.state.jupyter_port); }catch (e) { jupyter_port=this.state.jupyter_port; } const url=`/jupyters/save_with_tpm.json`; const data={ identifier:id, jupyter_port:jupyter_port, } axios.get(url, {params: data}) .then((result) => { if (result.data.status === 0) { this.props.showNotification(`应用成功`); } }).catch((error) => { }) } render() { let{ChallengesDataList,booljupyterurls}=this.state; let id = this.props.match.params.shixunId; //老师 const is_teacher = this.props&&this.props.current_user&&this.props.current_user.is_teacher?this.props.current_user.is_teacher:false; //运营人员 const business = this.props&&this.props.current_user&&this.props.current_user.business?this.props.current_user.business:false; //管理员 const admin = this.props&&this.props.current_user&&this.props.current_user.admin?this.props.current_user.admin:false; let mysidentity =false; try { mysidentity =this.props.identity < 5 &&ChallengesDataList&& ChallengesDataList.shixun_status< 3?true:false; }catch (e) { } return (

简介

{ChallengesDataList === undefined ? "" :ChallengesDataList&&ChallengesDataList.description===null?"":

}

{ booljupyterurls===true? ( this.state.jupyter_url === null?

加载实训失败,

this.updatamakedowns()}>重新加载

:"" ) :"" } { this.state.jupyter_url === null || this.state.jupyter_url === undefined ? "" : ( admin===true||business===true||mysidentity===true?

任务详情

(请将实训题目写在下方并保存)

this.modifyjupyter(this.state)}>

应用到实训

: "" ) } { admin===true||business===true||mysidentity===true?
{ this.state.jupyter_url===null || this.state.jupyter_url===undefined? ( booljupyterurls===false? :"" ) : }
:"" }
) } } export default Challengesjupyter;