|
|
|
@ -1,24 +1,18 @@
|
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
|
|
|
|
|
import { Redirect } from 'react-router';
|
|
|
|
|
import { Link } from "react-router-dom";
|
|
|
|
|
|
|
|
|
|
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 { getImageUrl ,markdownToHTML, configShareForCustom} from 'educoder';
|
|
|
|
|
|
|
|
|
|
import { CircularProgress } from 'material-ui/Progress';
|
|
|
|
|
|
|
|
|
|
import { Modal, Spin, Tooltip ,message,Icon} from 'antd';
|
|
|
|
|
import { Modal, Spin, Tooltip ,message,Icon,Button,Divider} from 'antd';
|
|
|
|
|
|
|
|
|
|
import 'antd/lib/pagination/style/index.css';
|
|
|
|
|
import axios from 'axios';
|
|
|
|
|
|
|
|
|
|
import '../shixunchildCss/Challenges.css'
|
|
|
|
|
import 'antd/lib/pagination/style/index.css';
|
|
|
|
|
|
|
|
|
|
import axios from 'axios';
|
|
|
|
|
import '../shixunchildCss/Challenges.css';
|
|
|
|
|
|
|
|
|
|
import AccountProfile from"../../../user/AccountProfile";
|
|
|
|
|
|
|
|
|
@ -39,6 +33,8 @@ class Challenges extends Component {
|
|
|
|
|
hidestartshixunsreplacevalue:"",
|
|
|
|
|
operationstrue:false,
|
|
|
|
|
isSpin:false,
|
|
|
|
|
boxoffsetHeigh:0,
|
|
|
|
|
opentitletype:true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -64,9 +60,32 @@ class Challenges extends Component {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
|
setTimeout(this.ChallengesList(), 1000);
|
|
|
|
|
this.ChallengesList()
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
componentDidUpdate = (prevProps,prevState) => {
|
|
|
|
|
|
|
|
|
|
//防止陷入无限循环
|
|
|
|
|
if(prevState.ChallengesDataList!=this.state.ChallengesDataList){
|
|
|
|
|
let boxoffsetHeigh;
|
|
|
|
|
let box=document.getElementById("shixunchallengesid");
|
|
|
|
|
if(box){
|
|
|
|
|
boxoffsetHeigh=box.offsetHeight
|
|
|
|
|
if(boxoffsetHeigh<260){
|
|
|
|
|
this.setState({
|
|
|
|
|
opentitletype:false,
|
|
|
|
|
boxoffsetHeigh:boxoffsetHeigh
|
|
|
|
|
})
|
|
|
|
|
}else{
|
|
|
|
|
this.setState({
|
|
|
|
|
boxoffsetHeigh:boxoffsetHeigh
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
updatamakedown = (id) => {
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
var shixunDescr = window.editormd.markdownToHTML(id, {
|
|
|
|
@ -301,6 +320,12 @@ class Challenges extends Component {
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
opentitle=()=>{
|
|
|
|
|
this.setState({
|
|
|
|
|
opentitletype:!this.state.opentitletype
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
let { ChallengesDataList, startbtns, sumidtype ,startshixunCombattype,shixunsreplace,shixunsmessage,hidestartshixunsreplacevalue,operationstrue,AccountProfiletype} = this.state;
|
|
|
|
|
let { loadingContent } = this.props;
|
|
|
|
@ -325,61 +350,8 @@ class Challenges extends Component {
|
|
|
|
|
display: 'block'
|
|
|
|
|
}} /> :
|
|
|
|
|
|
|
|
|
|
<div className="mt30 pl20 pr20">
|
|
|
|
|
<p className="clearfix mb20">
|
|
|
|
|
{this.props.identity < 5 && ChallengesDataList&&ChallengesDataList.shixun_status=== 0 ?
|
|
|
|
|
<Link to={"/shixuns/" + id + "/challenges/new"}
|
|
|
|
|
className="white-btn edu-greenline-btn fr addshixuns"
|
|
|
|
|
// data-tip-down="新增代码编辑类型任务"
|
|
|
|
|
>
|
|
|
|
|
<Tooltip placement="bottom" title={"新增代码编辑类型任务"}>
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/addsmallgreen.svg")}
|
|
|
|
|
className="fl mr5 mt6" />
|
|
|
|
|
实践任务
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
|
|
|
|
</Link> : ""
|
|
|
|
|
}
|
|
|
|
|
{this.props.identity < 5 && ChallengesDataList&&ChallengesDataList.shixun_status=== 0 ?
|
|
|
|
|
<Link to={"/shixuns/" + id + "/challenges/newquestion"}
|
|
|
|
|
className="white-btn edu-greenline-btn fr mr20 addshixuns"
|
|
|
|
|
// data-tip-down="新增选择题类型任务"
|
|
|
|
|
>
|
|
|
|
|
<Tooltip placement="bottom" title={"新增选择题类型任务"}>
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/addsmallgreen.svg")}
|
|
|
|
|
className="fl mr5 mt5" />
|
|
|
|
|
选择题任务
|
|
|
|
|
</Tooltip>
|
|
|
|
|
</Link> : ""
|
|
|
|
|
}
|
|
|
|
|
</p>
|
|
|
|
|
<p className="clearfix mb20">
|
|
|
|
|
<span className="font-16 fl">简介</span>
|
|
|
|
|
<Tooltip placement="bottom" title={"编辑"}>
|
|
|
|
|
<a style={{ display: this.props.identity < 5 && ChallengesDataList&&ChallengesDataList.shixun_status < 3 ? "block" : 'none' }}
|
|
|
|
|
href={"/shixuns/" + id + "/settings?edit=1"} className="ring-green fr">
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/edit.svg")} className="fl mt3 ml2" />
|
|
|
|
|
</a>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div className="justify break_full_word new_li "
|
|
|
|
|
id="challenge_editorMd_description">
|
|
|
|
|
<p id="ReactMarkdown" style={{overflow:'hidden'}}>
|
|
|
|
|
{ChallengesDataList === undefined ? "" :ChallengesDataList&&ChallengesDataList.description===null?"":
|
|
|
|
|
<div className={"markdown-body"} dangerouslySetInnerHTML={{__html: markdownToHTML(ChallengesDataList.description).replace(/▁/g,"▁▁▁")}}></div>
|
|
|
|
|
}
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
{/*
|
|
|
|
|
<span className="markdown-body" dangerouslySetInnerHTML={{__html: markdownToHTML(question_title)}}
|
|
|
|
|
style={{ display: 'inline-block', width:'100%' , margin: '10px 0px 15px' }}></span>
|
|
|
|
|
*/}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<p className="clearfix mb10 mt20">
|
|
|
|
|
<span className="font-16 fl">全部任务</span>
|
|
|
|
|
<div>
|
|
|
|
|
{/*<p className="clearfix mb20">*/}
|
|
|
|
|
{/* {this.props.identity < 5 && ChallengesDataList&&ChallengesDataList.shixun_status=== 0 ?*/}
|
|
|
|
|
{/* <Link to={"/shixuns/" + id + "/challenges/new"}*/}
|
|
|
|
|
{/* className="white-btn edu-greenline-btn fr addshixuns"*/}
|
|
|
|
@ -405,84 +377,197 @@ class Challenges extends Component {
|
|
|
|
|
{/* </Tooltip>*/}
|
|
|
|
|
{/* </Link> : ""*/}
|
|
|
|
|
{/* }*/}
|
|
|
|
|
{/*</p>*/}
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
|
.task-item{
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
<p className="clearfix mb20 edu-back-white">
|
|
|
|
|
<div className={"shixunjianjie"}>
|
|
|
|
|
<span className="font-16 fl">简介</span>
|
|
|
|
|
|
|
|
|
|
{this.props.identity < 5 && ChallengesDataList&&ChallengesDataList.shixun_status < 3 ?
|
|
|
|
|
<Link to={"/shixuns/" + id + "/settings"} className="fr color-blue font-14">
|
|
|
|
|
{/*<img src={getImageUrl("images/educoder/icon/edit.svg")} className="fl mt3 ml2" />*/}
|
|
|
|
|
编辑
|
|
|
|
|
</Link>:""}
|
|
|
|
|
{this.props.user && this.props.user.main_site === true ?
|
|
|
|
|
this.props.identity < 5?<a className="fr font-14 color-blue mr20" href="/forums/2943"
|
|
|
|
|
target="_blank">实训制作指南</a> : "":""}
|
|
|
|
|
</div>
|
|
|
|
|
{this.state.opentitletype===true?<style>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
|
#shixunchallengesid{
|
|
|
|
|
max-height: 260px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</style>:""}
|
|
|
|
|
<div>
|
|
|
|
|
<div className={"pd20"} id={"shixunchallengesid"}>
|
|
|
|
|
<style>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
|
.editormd-html-preview, .editormd-preview-container {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
}
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<div className="justify break_full_word new_li "
|
|
|
|
|
id="challenge_editorMd_description">
|
|
|
|
|
<p id="ReactMarkdown" style={{overflow:'hidden'}}>
|
|
|
|
|
{ChallengesDataList === undefined ? "" :ChallengesDataList&&ChallengesDataList.description===null?"":
|
|
|
|
|
<div className={"markdown-body"} dangerouslySetInnerHTML={{__html: markdownToHTML(ChallengesDataList.description).replace(/▁/g,"▁▁▁")}}></div>
|
|
|
|
|
}
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{this.state.opentitletype===true?<Divider dashed={true} onClick={()=>this.opentitle()} className={"pointer Breadcrumbfont color-grey-9 "}>
|
|
|
|
|
<a className={"font-14 color-grey-9"}>阅读全文 <i className={"iconfont icon-jiantou9 font-14"}></i></a>
|
|
|
|
|
</Divider>:<Divider dashed={true} onClick={()=>this.opentitle()} className={"pointer Breadcrumbfont color-grey-9 "}>
|
|
|
|
|
<a className={"font-14 color-grey-9"}>收起全文 <i className={"iconfont icon-changyongtubiao-xianxingdaochu-zhuanqu- font-14"}></i></a>
|
|
|
|
|
</Divider>}
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<div className={"shixunjianjiecballenges edu-back-white"}>
|
|
|
|
|
<span className="font-16 fl">全部任务</span>
|
|
|
|
|
<span className="fr mt5">
|
|
|
|
|
{/* <img src={getImageUrl("images/educoder/icon/addsmallgreen.svg")}
|
|
|
|
|
className="fl mr5 mt6" />*/}
|
|
|
|
|
{/*<Tooltip placement="bottom" title={"新增代码编辑类型任务"}>*/}
|
|
|
|
|
{/* </Tooltip>*/}
|
|
|
|
|
{this.props.identity < 5 && ChallengesDataList&&ChallengesDataList.shixun_status=== 0 ?
|
|
|
|
|
<Link to={"/shixuns/" + id + "/challenges/new"}
|
|
|
|
|
className="fr"
|
|
|
|
|
// data-tip-down="新增代码编辑类型任务"
|
|
|
|
|
>
|
|
|
|
|
<Button type="primary"
|
|
|
|
|
className="edu-default-btn edu-greenback-btn"
|
|
|
|
|
>新增实践任务</Button>
|
|
|
|
|
</Link> : ""
|
|
|
|
|
}
|
|
|
|
|
{this.props.identity < 5 && ChallengesDataList&&ChallengesDataList.shixun_status=== 0 ?
|
|
|
|
|
<Link to={"/shixuns/" + id + "/challenges/newquestion"}
|
|
|
|
|
className="fr mr20"
|
|
|
|
|
// data-tip-down="新增选择题类型任务"
|
|
|
|
|
>
|
|
|
|
|
<Button type="primary"
|
|
|
|
|
className="edu-default-btn edu-greenback-btn"
|
|
|
|
|
>新增选择题任务</Button>
|
|
|
|
|
</Link> : ""
|
|
|
|
|
}
|
|
|
|
|
{/*<Tooltip placement="bottom" title={"新增选择题类型任务"}>*/}
|
|
|
|
|
{/* </Tooltip>*/}
|
|
|
|
|
{/* <img src={getImageUrl("images/educoder/icon/addsmallgreen.svg")}
|
|
|
|
|
className="fl mr5 mt5" />*/}
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="alltask edu-back-white padding1020pxshixun">
|
|
|
|
|
|
|
|
|
|
<div className="alltask">
|
|
|
|
|
{ChallengesDataList === undefined ? <div className="alltask">
|
|
|
|
|
<div className="edu-tab-con-box clearfix edu-txt-center">
|
|
|
|
|
<img className="edu-nodata-img mb20"
|
|
|
|
|
src={getImageUrl("images/educoder/nodata.png")} />
|
|
|
|
|
<p className="edu-nodata-p mb20">暂时还没有相关数据哦!</p>
|
|
|
|
|
{this.props.identity < 5?<img className="newedu-nodata-img mb20"
|
|
|
|
|
src={getImageUrl("images/educoder/shixunnodata.png")} />:<img className="edu-nodata-img mb20"
|
|
|
|
|
src={getImageUrl("images/educoder/nodata.png")} />}
|
|
|
|
|
<p className="edu-nodata-p mb80">暂时还没有相关数据哦!</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div> : ChallengesDataList.challenge_list === undefined ?
|
|
|
|
|
<div className="alltask">
|
|
|
|
|
<div className="edu-tab-con-box clearfix edu-txt-center">
|
|
|
|
|
<img className="edu-nodata-img mb20"
|
|
|
|
|
src={getImageUrl("images/educoder/nodata.png")} />
|
|
|
|
|
<p className="edu-nodata-p mb20">暂时还没有相关数据哦!</p>
|
|
|
|
|
{this.props.identity < 5?<img className="newedu-nodata-img mb20"
|
|
|
|
|
src={getImageUrl("images/educoder/shixunnodata.png")} />:<img className="edu-nodata-img mb20"
|
|
|
|
|
src={getImageUrl("images/educoder/nodata.png")} />}
|
|
|
|
|
<p className="edu-nodata-p mb80">暂时还没有相关数据哦!</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
: ChallengesDataList.challenge_list.length === 0 ?
|
|
|
|
|
<div className="alltask">
|
|
|
|
|
<div className="edu-tab-con-box clearfix edu-txt-center">
|
|
|
|
|
<img className="edu-nodata-img mb20"
|
|
|
|
|
src={getImageUrl("images/educoder/nodata.png")} />
|
|
|
|
|
<p className="edu-nodata-p mb20">暂时还没有相关数据哦!</p>
|
|
|
|
|
{this.props.identity < 5?<img className="newedu-nodata-img mb20"
|
|
|
|
|
src={getImageUrl("images/educoder/shixunnodata.png")} />:<img className="edu-nodata-img mb20"
|
|
|
|
|
src={getImageUrl("images/educoder/nodata.png")} />}
|
|
|
|
|
<p className="edu-nodata-p mb80">暂时还没有相关数据哦!</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
: ChallengesDataList.challenge_list.map((item, key) => {
|
|
|
|
|
|
|
|
|
|
let newstatus = 2;
|
|
|
|
|
if(ChallengesDataList.challenge_list[key - 1]!=undefined){
|
|
|
|
|
newstatus=ChallengesDataList.challenge_list[key - 1].status;
|
|
|
|
|
}
|
|
|
|
|
return (
|
|
|
|
|
<div className="task-item" key={key} id={"shixun_index_" + item.position}>
|
|
|
|
|
<div className="clearfix mb5">
|
|
|
|
|
<div className="mr15 font-16 fl shixunstartbutton666666">第{key+1}关:{item.st === 0 ?"实践题":"选择题"}
|
|
|
|
|
|
|
|
|
|
{/*<a className={"edu-default-btn edu-blueline-btn fr Finish_button mtf3"}*/}
|
|
|
|
|
{/* onClick={()=>this.startshixunCombat(false,undefined, item.challenge_id)}*/}
|
|
|
|
|
{/* // onClick={() => this.startshixunCombat(false)}*/}
|
|
|
|
|
{/* title={"查看挑战关卡"}*/}
|
|
|
|
|
{/*>已完成</a>*/}
|
|
|
|
|
{/*判断比较复杂 有排第一不能是灰色按钮*/}
|
|
|
|
|
{item.status === 2 ?
|
|
|
|
|
<Button type="primary" shape="round" size={"small"} className={"ml30 shixunstartbutton33BD8C"}>已完成</Button>
|
|
|
|
|
: ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<div className="clearfix mb20">
|
|
|
|
|
<span className="fl ring-blue mr10 mt8">
|
|
|
|
|
{item.st === 0 ?
|
|
|
|
|
<Tooltip placement="bottom" title={"实训任务"}>
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/code.svg")} className="fl mt2 ml2" />
|
|
|
|
|
</Tooltip>
|
|
|
|
|
:
|
|
|
|
|
<Tooltip placement="bottom" title={"选择题任务"}>
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/choose.svg")} className="fl mt2 ml3" />
|
|
|
|
|
</Tooltip>
|
|
|
|
|
{/* <a className={"edu-default-btn edu-blueback-btn fr Finish_button"}
|
|
|
|
|
title={"直接挑战"}
|
|
|
|
|
style={{marginTop: '-2px'}}
|
|
|
|
|
onClick={()=>this.startshixunCombat(false,undefined, item.challenge_id)}
|
|
|
|
|
// onClick={() => this.startshixunCombat(false)}
|
|
|
|
|
>直接挑战</a> */}
|
|
|
|
|
{
|
|
|
|
|
ChallengesDataList.allow_skip === true && item.status === 1?
|
|
|
|
|
<Button type="primary" shape="round" size={"small"} className={"ml30 shixunstartbuttonFF6601"}>未完成</Button>
|
|
|
|
|
: ""
|
|
|
|
|
}
|
|
|
|
|
</span>
|
|
|
|
|
<span className="mr15 font-16 fl">第{key+1}关</span>
|
|
|
|
|
|
|
|
|
|
{this.props.identity<5?
|
|
|
|
|
item.st === 1 ?
|
|
|
|
|
<a onClick={() => this.EditTraining(this.props.identity, item.challenge_id, "/editquestion")}
|
|
|
|
|
className="font-16 color05101a">{item.name}</a>
|
|
|
|
|
:
|
|
|
|
|
<a onClick={() => this.EditTraining(this.props.identity, item.challenge_id, "/editcheckpoint")}
|
|
|
|
|
className="font-16 color05101a">{item.name}</a>:<span
|
|
|
|
|
// onClick={() => this.startshixunCombat(this.props.identity, item.challenge_id, "/editcheckpoint")}
|
|
|
|
|
className="font-16 color05101a">{item.name}</span>
|
|
|
|
|
{/* <Tooltip placement="bottom" title={"直接挑战"}>
|
|
|
|
|
<a className={"edu-default-btn edu-blueback-btn fr Finish_button"}
|
|
|
|
|
onClick={()=>this.startshixunCombat(false,undefined, item.challenge_id)}
|
|
|
|
|
style={{marginTop: '-2px'}}>直接挑战</a>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
*/}
|
|
|
|
|
{
|
|
|
|
|
ChallengesDataList.allow_skip === false ? item.status === 1?
|
|
|
|
|
<Button type="primary" shape="round" size={"small"} className={"ml30 shixunstartbuttonFF6601"}>未完成</Button>
|
|
|
|
|
:"":""
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
keyboard={false}
|
|
|
|
|
visible={startbtns}
|
|
|
|
|
closable={false}
|
|
|
|
|
footer={null}
|
|
|
|
|
className="startbtnModal"
|
|
|
|
|
>
|
|
|
|
|
<Spin size="large" />
|
|
|
|
|
</Modal>
|
|
|
|
|
<span className="fr mt8">
|
|
|
|
|
{/*<Tooltip placement="bottom" title={"请先完成前序关卡"}>*/}
|
|
|
|
|
{/* <a className={"edu-default-btn edu-greyback-btn fr Finish_button"}*/}
|
|
|
|
|
{/* // onClick={this.props.identity<5&&item.open_game!=""?()=>this.startshixunCombat(false,undefined, item.challenge_id):""}*/}
|
|
|
|
|
{/* style={{marginTop: '-2px'}}>直接挑战</a>*/}
|
|
|
|
|
{/*</Tooltip>*/}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
item.status === 0 ?
|
|
|
|
|
<Button type="primary" shape="round" size={"small"} className={"ml30 shixunstartbuttonFF6601"}>未完成</Button>
|
|
|
|
|
:""
|
|
|
|
|
}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<span className="fr">
|
|
|
|
|
{item.delete_url != undefined &&
|
|
|
|
|
<Tooltip placement="bottom" title={"删除"}>
|
|
|
|
|
<a onClick={() => this.delOperations(item.challenge_id)}
|
|
|
|
|
style={{ display:this.props.user.admin===true?"block":this.props.identity < 5 && ChallengesDataList.shixun_status === 0 ? "block" : 'none' }}
|
|
|
|
|
className="fl ring-op-green mr25">
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/close.svg")}
|
|
|
|
|
className="fl mt5 ml5" />
|
|
|
|
|
className="fl mr25">
|
|
|
|
|
{/*<img src={getImageUrl("images/educoder/icon/close.svg")}*/}
|
|
|
|
|
{/* className="fl mt5 ml5" />*/}
|
|
|
|
|
<i className={"iconfont icon-shanchu_Hover"}></i>
|
|
|
|
|
</a>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
}
|
|
|
|
@ -492,9 +577,10 @@ class Challenges extends Component {
|
|
|
|
|
<Tooltip placement="bottom" title={"向上移动"}>
|
|
|
|
|
<a onClick={operationstrue===true?"":() => this.operations(item.challenge_id, "up")}
|
|
|
|
|
style={{ display:this.props.user.admin===true?"block":this.props.identity < 5 && ChallengesDataList.shixun_status === 0 ? "block" : 'none' }}
|
|
|
|
|
className="fl ring-op-green mr25">
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/moveup.svg")}
|
|
|
|
|
className="fl mt2 ml4" />
|
|
|
|
|
className="fl mr25">
|
|
|
|
|
{/*<img src={getImageUrl("images/educoder/icon/moveup.svg")}*/}
|
|
|
|
|
{/* className="fl mt2 ml4" />*/}
|
|
|
|
|
<i className={"iconfont icon-shangyi_Hover"}></i>
|
|
|
|
|
</a>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
}
|
|
|
|
@ -502,8 +588,9 @@ class Challenges extends Component {
|
|
|
|
|
<Tooltip placement="bottom" title={"向下移动"}>
|
|
|
|
|
<a onClick={operationstrue===true?"":() => this.operations(item.challenge_id, "down")}
|
|
|
|
|
style={{ display: this.props.user.admin===true?"block":this.props.identity < 5 && ChallengesDataList.shixun_status=== 0 ? "block" : 'none' }}
|
|
|
|
|
className="fl ring-op-green mr25">
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/movedown.svg")} className="fl mt2 ml4" />
|
|
|
|
|
className="fl mr25">
|
|
|
|
|
{/*<img src={getImageUrl("images/educoder/icon/movedown.svg")} className="fl mt2 ml4" />*/}
|
|
|
|
|
<i className={"iconfont icon-xiayi_Hover"}></i>
|
|
|
|
|
</a>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
|
|
|
@ -512,78 +599,68 @@ class Challenges extends Component {
|
|
|
|
|
{
|
|
|
|
|
item.st === 1 ?
|
|
|
|
|
<Tooltip placement="bottom" title={"编辑"}>
|
|
|
|
|
<a
|
|
|
|
|
<Link
|
|
|
|
|
style={{ display:this.props.user.admin===true?"block":this.props.identity < 5 && ChallengesDataList.shixun_status< 3 ? "block" : 'none' }}
|
|
|
|
|
href={"/shixuns/" + ChallengesDataList.shixun_identifier + "/challenges/" + item.challenge_id + "/editquestion"}
|
|
|
|
|
className="fl ring-green">
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/edit.svg")}
|
|
|
|
|
className="fl mt3 ml2" />
|
|
|
|
|
</a>
|
|
|
|
|
to={"/shixuns/" + ChallengesDataList.shixun_identifier + "/challenges/" + item.challenge_id + "/editquestion"}
|
|
|
|
|
className="fl">
|
|
|
|
|
{/*<img src={getImageUrl("images/educoder/icon/edit.svg")}*/}
|
|
|
|
|
{/* className="fl mt3 ml2" />*/}
|
|
|
|
|
<i className={"iconfont icon-bianji_Hover"}></i>
|
|
|
|
|
</Link>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
:
|
|
|
|
|
<Tooltip placement="bottom" title={"编辑"}>
|
|
|
|
|
<a
|
|
|
|
|
<Link
|
|
|
|
|
style={{ display:this.props.user.admin===true?"block":this.props.identity < 5 && ChallengesDataList.shixun_status < 3 ? "block" : 'none' }}
|
|
|
|
|
href={"/shixuns/" + ChallengesDataList.shixun_identifier + "/challenges/" + item.challenge_id + "/editcheckpoint"}
|
|
|
|
|
className="fl ring-green">
|
|
|
|
|
<img src={getImageUrl("images/educoder/icon/edit.svg")}
|
|
|
|
|
className="fl mt3 ml2" />
|
|
|
|
|
</a>
|
|
|
|
|
to={"/shixuns/" + ChallengesDataList.shixun_identifier + "/challenges/" + item.challenge_id + "/editcheckpoint"}
|
|
|
|
|
className="fl">
|
|
|
|
|
{/*<img src={getImageUrl("images/educoder/icon/edit.svg")}*/}
|
|
|
|
|
{/* className="fl mt3 ml2" />*/}
|
|
|
|
|
<i className={"iconfont icon-bianji_Hover"}></i>
|
|
|
|
|
</Link>
|
|
|
|
|
</Tooltip>
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="clearfix pl28">
|
|
|
|
|
<span className="task-colspan"><span className={"color-orange"}>{item.passed_count}</span> 人完成挑战</span>
|
|
|
|
|
<span
|
|
|
|
|
className="task-colspan"><span className={"color-orange"}>{item.playing_count}</span> 人正在挑战</span>
|
|
|
|
|
<span className="task-colspan"><span>完成挑战可获得经验值 <span className={"color-orange"}>{item.score}</span></span></span>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{/*判断比较复杂 有排第一不能是灰色按钮*/}
|
|
|
|
|
{item.status === 2 ?
|
|
|
|
|
<a className={"edu-default-btn edu-blueline-btn fr Finish_button mtf3"}
|
|
|
|
|
onClick={()=>this.startshixunCombat(false,undefined, item.challenge_id)}
|
|
|
|
|
// onClick={() => this.startshixunCombat(false)}
|
|
|
|
|
title={"查看挑战关卡"}
|
|
|
|
|
>已完成</a> : ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
ChallengesDataList.allow_skip === true && item.status === 1?
|
|
|
|
|
<a className={"edu-default-btn edu-blueback-btn fr Finish_button"}
|
|
|
|
|
title={"直接挑战"}
|
|
|
|
|
style={{marginTop: '-2px'}}
|
|
|
|
|
onClick={()=>this.startshixunCombat(false,undefined, item.challenge_id)}
|
|
|
|
|
// onClick={() => this.startshixunCombat(false)}
|
|
|
|
|
>直接挑战</a> : ""
|
|
|
|
|
<div className="clearfix mb5">
|
|
|
|
|
{/*onClick={() => this.EditTraining(this.props.identity, item.challenge_id, "/editquestion")}*/}
|
|
|
|
|
{this.props.identity<5?
|
|
|
|
|
item.st === 1 ?
|
|
|
|
|
<div className="font-16 color05101a fonthiddens">{item.name}</div>
|
|
|
|
|
:
|
|
|
|
|
<div className="font-16 color05101a fonthiddens">{item.name}</div>:<div
|
|
|
|
|
// onClick={() => this.startshixunCombat(this.props.identity, item.challenge_id, "/editcheckpoint")}
|
|
|
|
|
className="font-16 color05101a fonthiddens">{item.name}</div>
|
|
|
|
|
}
|
|
|
|
|
{/* onClick={() => this.EditTraining(this.props.identity, item.challenge_id, "/editcheckpoint")}*/}
|
|
|
|
|
|
|
|
|
|
<Modal
|
|
|
|
|
keyboard={false}
|
|
|
|
|
visible={startbtns}
|
|
|
|
|
closable={false}
|
|
|
|
|
footer={null}
|
|
|
|
|
className="startbtnModal"
|
|
|
|
|
>
|
|
|
|
|
<Spin size="large" />
|
|
|
|
|
</Modal>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<div className="clearfix">
|
|
|
|
|
<style>
|
|
|
|
|
{
|
|
|
|
|
ChallengesDataList.allow_skip === false ? item.status === 1?
|
|
|
|
|
<Tooltip placement="bottom" title={"直接挑战"}>
|
|
|
|
|
<a className={"edu-default-btn edu-blueback-btn fr Finish_button"}
|
|
|
|
|
onClick={()=>this.startshixunCombat(false,undefined, item.challenge_id)}
|
|
|
|
|
style={{marginTop: '-2px'}}>直接挑战</a>
|
|
|
|
|
</Tooltip>:"":""
|
|
|
|
|
|
|
|
|
|
`
|
|
|
|
|
.task-colspan {
|
|
|
|
|
min-width: 20% !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
item.status === 0 ?
|
|
|
|
|
<Tooltip placement="bottom" title={"请先完成前序关卡"}>
|
|
|
|
|
<a className={"edu-default-btn edu-greyback-btn fr Finish_button"}
|
|
|
|
|
// onClick={this.props.identity<5&&item.open_game!=""?()=>this.startshixunCombat(false,undefined, item.challenge_id):""}
|
|
|
|
|
style={{marginTop: '-2px'}}>直接挑战</a>
|
|
|
|
|
</Tooltip>:""
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
<span className="task-colspan"><span className={"shixunbingbaocun12"}>正在挑战: </span><span className={"shixunbingbaocun33312"}>{item.playing_count}人</span></span>
|
|
|
|
|
<span className="task-colspan"><span className={"shixunbingbaocun12"}>完成挑战: </span><span className={"shixunbingbaocun33312"}>{item.passed_count}人</span></span>
|
|
|
|
|
<span className="task-colspan"><span className={"shixunbingbaocun12"}>可获经验: </span><span className={"shixunbingbaocun33312"}>{item.score}点</span></span>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|