@ -5,19 +5,12 @@ import MonacoEditor from 'react-monaco-editor';
import {
import {
Input ,
Input ,
Select ,
Select ,
Radio ,
Checkbox ,
Checkbox ,
Popconfirm ,
message ,
Modal ,
Modal ,
Icon ,
Icon ,
DatePicker ,
Breadcrumb ,
Upload ,
Upload ,
Button ,
Button ,
notification ,
Tooltip ,
Tooltip ,
Tabs ,
Form
Form
} from 'antd' ;
} from 'antd' ;
@ -42,13 +35,17 @@ class Shixuninformation extends Component {
this . state = {
this . state = {
NAME _COUNT : 60 ,
NAME _COUNT : 60 ,
shixunmemoMDvalue : "" ,
shixunmemoMDvalue : "" ,
language : "java" ,
testscripttiptype : false ,
testscripttiptype : false ,
shixunName : '' ,
shixunName : '' ,
trainee : undefined ,
trainee : undefined ,
choice _small _type : [ ] ,
choice _small _type : [ ] ,
simichecked : false ,
simichecked : false ,
Executivetyoe : false ,
Executiveordervalue : "" ,
Compilecommandvalue : "" ,
shixun _service _configs : undefined ,
fileList : [ ] ,
loading : false ,
}
}
}
}
@ -58,21 +55,65 @@ class Shixuninformation extends Component {
componentDidUpdate ( prevProps , prevState ) {
componentDidUpdate ( prevProps , prevState ) {
if ( prevProps . data != this . props . data ) {
if ( prevProps . data != this . props . data ) {
if ( this . props . data ) {
if ( this . props . data ) {
if ( this . props . data . shixun ) {
this . setState ( {
shixunName : this . props . data && this . props . data . shixun . name ,
trainee : this . props . data && this . props . data . shixun . trainee ,
choice _main _type : this . props . data && this . props . data . shixun . choice _main _type ,
choice _small _type : this . props . data && this . props . data . shixun . choice _small _type ,
choice _standard _scripts : this . props . data && this . props . data . shixun . choice _standard _scripts ,
shixunmemoMDvalue : this . props . data && this . props . data . shixun . evaluate _script ,
simichecked : this . props . data && this . props . data . shixun . is _secret _repository ,
shixun _service _configs : this . props . data && this . props . data . shixun . shixun _service _configs ,
standard _scripts : this . props . data && this . props . data . shixun . standard _scripts ,
shixun _service _configlist : this . props . data && this . props . data . shixun . shixun _service _configs ,
} )
if ( this . props . data && this . props . data . shixun . choice _standard _scripts === null ) {
this . setState ( {
choice _standard _scripts : { id : this . props . data && this . props . data . shixun . standard _scripts [ 0 ] . id , value : "" } ,
choice _standard _scriptssum : this . props . data && this . props . data . shixun . standard _scripts [ 0 ] . id
} )
this . props . form . setFieldsValue ( {
selectscripts : this . props . data && this . props . data . shixun . standard _scripts [ 0 ] . id
} )
this . get _mirror _script ( this . props . data && this . props . data . shixun . standard _scripts [ 0 ] . id )
} else {
this . props . form . setFieldsValue ( {
selectscripts : this . props . data && this . props . data . shixun . choice _standard _scripts
} )
}
let newlist = ""
this . props . data && this . props . data . shixun . choice _small _type . map ( ( item , key ) => {
this . props . data && this . props . data . shixun . small _type . map ( ( i , k ) => {
if ( item === i . id ) {
newlist = newlist + ` ${ i . description } `
}
} )
} )
this . setState ( {
subvalues : newlist
} )
this . props . data && this . props . data . shixun . main _type . map ( ( item , key ) => {
if ( item . id === this . props . data && this . props . data . shixun . choice _main _type ) {
this . setState ( {
this . setState ( {
shixunName : this . props . data . shixun . name ,
mainvalues : item . description ,
trainee : this . props . data . shixun . trainee ,
} )
choice _main _type : this . props . data . shixun . choice _main _type ,
}
choice _small _type : this . props . data . shixun . choice _small _type ,
choice _standard _scripts : this . props . data . shixun . choice _standard _scripts ,
shixunmemoMDvalue : this . props . data . shixun . evaluate _script ,
simichecked : this . props . data . shixun . is _secret _repository ,
} )
} )
this . props . form . setFieldsValue ( {
this . props . form . setFieldsValue ( {
name : this . props . data . shixun . name ,
name : this . props . data && this . props . data . shixun . name ,
trainee : this . props . data && this . props . data . shixun . trainee ,
selectleft : this . props . data && this . props . data . shixun . choice _main _type ,
selectright : this . props . data && this . props . data . shixun . choice _small _type ,
} )
} )
this . contentMdRef . current . setValue ( this . props . data . shixun . description ) ;
this . contentMdRef . current . setValue ( this . props . data && this . props . data . shixun . description ) ;
}
}
}
}
}
}
}
@ -202,15 +243,8 @@ class Shixuninformation extends Component {
fileList : [ ]
fileList : [ ]
} )
} )
}
}
this . props . showNotification ( "提交成功" )
notification . open (
{
message : '提示' ,
description :
'提交成功!' ,
}
)
this . sendhideModaly ( )
this . sendhideModaly ( )
}
}
@ -223,13 +257,123 @@ class Shixuninformation extends Component {
}
}
bigClass = ( value ) => {
setlanguage = ( e ) => {
this . setState ( {
language : e . target . value
} )
if ( e . target . value ) {
this . setState ( {
languagewritetype : false
} )
}
}
setruntime = ( e ) => {
this . setState ( {
runtime : e . target . value
} )
if ( e . target . value ) {
this . setState ( {
systemenvironmenttype : false
} )
}
}
setrun _method = ( e ) => {
this . setState ( {
run _method : e . target . value
} )
if ( e . target . value ) {
this . setState ( {
testcoderunmodetype : false
} )
}
}
// 附件相关 START
handleChange = ( info ) => {
if ( info . file . status === 'uploading' || info . file . status === 'done' || info . file . status === 'removed' ) {
let { fileList } = this . state ;
if ( info . file . status === 'uploading' || info . file . status === 'done' || info . file . status === 'removed' ) {
console . log ( "handleChange1" ) ;
// if(fileList.length===0){
let fileLists = info . fileList ;
this . setState ( {
// fileList:appendFileSizeToUploadFileAll(fileList),
fileList : fileLists ,
deleteisnot : false
} ) ;
// }
}
}
}
onAttachmentRemove = ( file ) => {
if ( ! file . percent || file . percent == 100 ) {
Modal . confirm ( {
title : '确定要删除这个附件吗?' ,
okText : '确定' ,
cancelText : '取消' ,
// content: 'Some descriptions',
onOk : ( ) => {
console . log ( "665" )
this . deleteAttachment ( file )
} ,
onCancel ( ) {
console . log ( 'Cancel' ) ;
} ,
} ) ;
return false ;
}
}
deleteAttachment = ( file ) => {
console . log ( file ) ;
let id = file . response == undefined ? file . id : file . response . id
const url = ` /attachments/ ${ id } .json `
axios . delete ( url , { } )
. then ( ( response ) => {
if ( response . data ) {
const { status } = response . data ;
if ( status == 0 ) {
// console.log('--- success')
this . setState ( ( state ) => {
const index = state . fileList . indexOf ( file ) ;
const newFileList = state . fileList . slice ( ) ;
newFileList . splice ( index , 1 ) ;
return {
fileList : newFileList ,
deleteisnot : true
} ;
} ) ;
}
}
} )
. catch ( function ( error ) {
console . log ( error ) ;
} ) ;
}
bigClass = ( value , e ) => {
this . setState ( {
mainvalues : e . props . name
} )
let list = [ ]
let list = [ ]
list . push ( this . props . data . shixun . choice _main _type )
list . push ( this . state . choice _main _type )
this . props . data . shixun . choice _small _type . map ( ( item , key ) => {
this . state . choice _small _type . map ( ( item , key ) => {
list . push ( item )
list . push ( item )
} )
} )
let newshixun _service _configs = this . props . data . shixun . shixun _service _configs ;
let newshixun _service _configs = this . state . shixun _service _configs ;
let newshixun _service _configsagin = [ ] ;
let newshixun _service _configsagin = [ ] ;
newshixun _service _configs . map ( ( item , key ) => {
newshixun _service _configs . map ( ( item , key ) => {
list . map ( ( its , index ) => {
list . map ( ( its , index ) => {
@ -240,6 +384,7 @@ class Shixuninformation extends Component {
} )
} )
this . props . data . shixun . main _type . some ( ( item , key ) => {
this . props . data . shixun . main _type . some ( ( item , key ) => {
if ( item . id === value ) {
if ( item . id === value ) {
newshixun _service _configsagin [ 0 ] = {
newshixun _service _configsagin [ 0 ] = {
@ -254,28 +399,87 @@ class Shixuninformation extends Component {
}
}
}
}
)
)
this . props . form . setFieldsValue ( {
selectleft : value ,
} )
let url = ` /shixuns/get_mirror_script.json?mirror_id= ` + value ;
let url = ` /shixuns/get_mirror_script.json?mirror_id= ` + value ;
axios . get ( url ) . then ( ( response ) => {
axios . get ( url ) . then ( ( response ) => {
if ( response . status === 200 ) {
if ( response . status === 200 ) {
// console.log(response.data)
this . setState ( {
choice _standard _scripts : { id : response . data [ 0 ] . id , value : "" } ,
choice _standard _scriptssum : response . data [ 0 ] . id
} )
this . props . form . setFieldsValue ( {
selectscripts : response . data [ 0 ] . id
} )
this . get _mirror _script ( response . data [ 0 ] . id )
this . setState ( {
this . setState ( {
choice _main _type : value ,
choice _main _type : value ,
standard _scripts : response . data ,
standard _scripts : response . data ,
choice _standard _scripts : null ,
shixun _service _configs : newshixun _service _configsagin ,
shixun _service _configs : newshixun _service _configsagin ,
shixun _service _configlist : newshixun _service _configsagin ,
shixun _service _configlist : newshixun _service _configsagin ,
} )
} )
}
}
} ) . catch ( ( error ) => {
} ) . catch ( ( error ) => {
console . log ( error )
console . log ( error )
} ) ;
} ) ;
}
}
Deselectlittle = ( value , e ) => {
let { shixun _service _configs , choice _small _type } = this . state ;
let newshixun _service _configs = shixun _service _configs ;
let newchoice _small _type = choice _small _type ;
newshixun _service _configs . some ( ( item , key ) => {
if ( item . mirror _repository _id === value ) {
newshixun _service _configs . splice ( key , 1 )
return true
}
}
)
littleClass = ( value ) => {
newchoice _small _type . some ( ( item , key ) => {
let newshixun _service _configs = this . props . data . shixun . shixun _service _configs ;
if ( item === value ) {
let newchoice _small _type = this . props . data . shixun . choice _small _type ;
newchoice _small _type . splice ( key , 1 )
return true
}
}
)
this . setState ( {
choice _small _type : newchoice _small _type ,
shixun _service _configs : newshixun _service _configs ,
shixun _service _configlist : newshixun _service _configs ,
} )
}
showlittleClass = ( value , e ) => {
let newlist = ""
e . map ( ( item , key ) => {
if ( item . props . name != "" ) {
newlist = newlist + ` ${ item . props . name } `
}
} )
this . setState ( {
subvalues : newlist
} )
this . props . form . setFieldsValue ( {
selectright : value ,
} )
}
littleClass = ( value , e ) => {
let newshixun _service _configs = this . state . shixun _service _configs ;
let newchoice _small _type = this . state . choice _small _type ;
let list = [ ]
let list = [ ]
list . push ( this . props . data . shixun . choice _main _type )
list . push ( this . state . choice _main _type )
newchoice _small _type . map ( ( item , key ) => {
newchoice _small _type . map ( ( item , key ) => {
list . push ( item )
list . push ( item )
} )
} )
@ -330,16 +534,22 @@ class Shixuninformation extends Component {
} )
} )
}
}
get _mirror _script = ( ) => {
get _mirror _script = ( ids ) => {
let { choice _standard _scriptssum } = this . state ;
let { choice _standard _scriptssum } = this . state ;
let id = this . props . match . params . shixunId ;
let id = this . props . match . params . shixunId ;
let pul = "/shixuns/" + id + "/get_script_contents.json?script_id=" + choice _standard _scriptssum ;
let url = ` /shixuns/ ${ id } /get_script_contents.json ` ;
axios . get ( pul ) . then ( ( response ) => {
axios . get ( ( url ) , { params : {
script _id : ids ? ids : choice _standard _scriptssum
} } ) . then ( ( response ) => {
if ( response . status === 200 ) {
if ( response . status === 200 ) {
// this.evaluate_scriptMD(response.data.content, "shixunmemoMD");
// this.evaluate_scriptMD(response.data.content, "shixunmemoMD");
if ( ids == undefined ) {
this . setState ( {
this . setState ( {
standard _scriptsModal : false ,
standard _scriptsModal : false ,
standard _scriptsModals : true ,
standard _scriptsModals : true ,
} )
}
this . setState ( {
shixunmemoMDvalue : response . data . content
shixunmemoMDvalue : response . data . content
} )
} )
}
}
@ -355,16 +565,165 @@ class Shixuninformation extends Component {
} )
} )
}
}
showModal = ( ) => {
this . setState ( {
visibleTemplate : true ,
} ) ;
}
handleCancelTemplate = ( e ) => {
this . setState ( {
Executiveordervalue : "" ,
Compilecommandvalue : "" ,
visibleTemplate : false
} )
}
hideModalTemplate = ( e ) => {
let id = this . props . match . params . shixunId ;
let { Executiveordervalue , Compilecommandvalue } = this . state ;
if ( Executiveordervalue === "" || Executiveordervalue === undefined ) {
this . setState ( {
Executivetyoe : true ,
} ) ;
return
}
// Executiveordervalue=String(Executiveordervalue);
// Compilecommandvalue=String(Compilecommandvalue);
let trl = ` /shixuns/ ${ id } /get_custom_script.json?compile= ${ Executiveordervalue } &excutive= ${ Compilecommandvalue } `
axios . get ( trl ) . then ( ( response ) => {
// this.evaluate_scriptMD(response.data.shixun_script, "shixunmemoMD");
this . setState ( {
shixunmemoMDvalue : response . data . shixun _script
} )
} ) . catch ( ( error ) => {
console . log ( error )
} ) ;
this . setState ( {
visibleTemplate : false
} )
}
Executiveorder = ( e ) => {
this . setState ( {
Executiveordervalue : e . target . value
} )
}
Compilecommand = ( e ) => {
this . setState ( {
Compilecommandvalue : e . target . value
} )
}
setConfigsInputs = ( e , keys , str ) => {
let { shixun _service _configs } = this . state ;
let newshixun _service _configs = shixun _service _configs ;
newshixun _service _configs . map ( ( item , key ) => {
if ( key === keys ) {
switch ( str ) {
case 1 :
item . cpu _limit = e . target . value
break ;
case 2 :
item . lower _cpu _limit = e . target . value
break ;
case 3 :
item . memory _limit = e . target . value
break ;
case 4 :
item . request _limit = e . target . value
break ;
}
}
} )
this . setState ( {
shixun _service _configs : newshixun _service _configs ,
shixun _service _configlist : newshixun _service _configs ,
} )
}
onSubmits = ( ) => {
this . setState ( {
loading : true
} )
const mdContnet = this . contentMdRef . current . getValue ( ) . trim ( ) ;
let { choice _standard _scriptssum , choice _standard _scripts } = this . state ;
this . props . form . validateFieldsAndScroll ( ( err , values ) => {
if ( ! err ) {
console . log ( 'Received values of form: ' , values ) ;
let url = ` /shixuns/ ${ this . props . match . params . shixunId } .json ` ;
let newshixun _service _configlist = this . state . shixun _service _configlist . map ( v => {
let v1 = Object . assign ( { } , v ) ;
delete v1 . name ;
return v1
} ) ;
let data = {
main _type : this . state . choice _main _type ,
sub _type : this . state . choice _small _type ,
is _secret _repository : this . state . simichecked ,
shixun : {
name : values . name ,
trainee : this . state . trainee ,
is _jupyter : this . props . shixunsDetails . is _jupyter ,
mirror _script _id : this . props . shixunsDetails . is _jupyter === true ? null : this . state . choice _standard _scriptssum === undefined ? this . state . choice _standard _scripts : this . state . choice _standard _scriptssum ,
} ,
shixun _info : {
description : mdContnet ,
evaluate _script : this . props . shixunsDetails . is _jupyter === true ? "" : this . state . shixunmemoMDvalue
} ,
shixun _service _configs : newshixun _service _configlist
}
axios . put ( url , data ) . then ( ( result ) => {
if ( result ) {
if ( result . data ) {
this . props . getdatas ( "2" )
if ( result . data . shixun _identifier ) {
this . props . showNotification ( "基本信息更新成功!" )
this . setState ( {
loading : false
} )
}
}
}
} ) . catch ( ( error ) => {
this . setState ( {
loading : false
} )
} ) ;
} else {
this . setState ( {
loading : false
} )
}
} ) ;
this . setState ( {
loading : false
} )
}
Selectthestudent = ( value ) => {
this . setState ( {
trainee : value
} )
}
render ( ) {
render ( ) {
let operateauthority = this . props . identity === 1 ? true : this . props . identity < 5 && this . props . data . shixun . status == 0 ? true : false ;
// console.log(operateauthority)
// console.log(operateauthority)
const { getFieldDecorator } = this . props . form ;
const { getFieldDecorator } = this . props . form ;
const { languagewrite , systemenvironment , testcoderunmode , fileList , choice _standard _scripts , postapplyvisible , shixunmemoMDvalue } = this . state ;
const { fileList , choice _standard _scripts , postapplyvisible , shixunmemoMDvalue } = this . state ;
// console.log("1222")
// console.log("1222")
// console.log(choice_standard_scripts)
// console.log(choice_standard_scripts)
const { shixun _service _configs } = this . props ;
const uploadProps = {
const uploadProps = {
width : 600 ,
width : 600 ,
fileList ,
fileList ,
@ -384,17 +743,9 @@ class Shixuninformation extends Component {
const isLt150M = file . size / 1024 / 1024 < 50 ;
const isLt150M = file . size / 1024 / 1024 < 50 ;
if ( ! isLt150M ) {
if ( ! isLt150M ) {
// this.props.showNotification(`文件大小必须小于50MB`);
// this.props.showNotification(`文件大小必须小于50MB`);
notification . open (
this . props . showNotification ( "文件大小必须小于50MB" )
{
message : '提示' ,
description :
'文件大小必须小于50MB' ,
}
)
}
}
if ( this . state . file !== undefined ) {
if ( this . state . file !== undefined ) {
console . log ( "763" )
this . setState ( {
this . setState ( {
file : file
file : file
} )
} )
@ -403,15 +754,10 @@ class Shixuninformation extends Component {
file : file
file : file
} )
} )
}
}
console . log ( "handleChange2" ) ;
return isLt150M ;
return isLt150M ;
} ,
} ,
}
}
let operateauthority = this . props . identity === 1 ? true : this . props . identity < 5 && this . props . data && this . props . data . shixun . status == 0 ? true : false ;
return (
return (
< div >
< div >
< div className = "educontent mb50 edu-back-white padding10-20" >
< div className = "educontent mb50 edu-back-white padding10-20" >
@ -487,7 +833,8 @@ class Shixuninformation extends Component {
rules : [ { required : true , message : '请选择主类别' } ] ,
rules : [ { required : true , message : '请选择主类别' } ] ,
} ) (
} ) (
< div className = "width100 fl mr20" >
< div className = "width100 fl mr20" >
< Select placeholder = "请选择主类别" value = { this . state . choice _main _type === "" ? undefined : this . state . choice _main _type }
< Select placeholder = "请选择主类别"
value = { this . state . choice _main _type === "" ? undefined : this . state . choice _main _type }
style = { { width : 180 } }
style = { { width : 180 } }
onChange = { operateauthority ? this . bigClass : "" }
onChange = { operateauthority ? this . bigClass : "" }
optionFilterProp = "children"
optionFilterProp = "children"
@ -497,15 +844,33 @@ class Shixuninformation extends Component {
>
>
{
{
this . props . data === undefined ? "" : this . props . data . shixun . main _type . map ( ( item , key ) => {
this . props . data === undefined ? "" : this . props . shixunsDetails && this . props . shixunsDetails . is _jupyter === true ? this . props . data . shixun && this . props . data . shixun . main _type . map ( ( item , key ) => {
let itemtype = item . type _name . toLowerCase ( ) . indexOf ( 'jupyter' . toLowerCase ( ) )
if ( itemtype > - 1 ) {
return (
return (
< Option value = { item . id } key = { key } >
< Option value = { item . id } key = { key } name = { item . description } >
< Tooltip placement = "right" title = { item . description === "" ? "无描述" : item . description } >
< Tooltip placement = "right" title = { item . description === "" ? "无描述" : item . description } >
{ item . type _name }
{ item . type _name }
< / T o o l t i p >
< / T o o l t i p >
< / O p t i o n >
< / O p t i o n >
)
)
} )
}
} ) : ""
}
{
this . props . data === undefined ? "" : this . props . shixunsDetails && this . props . shixunsDetails . is _jupyter === false ? this . props . data . shixun && this . props . data . shixun . main _type . map ( ( item , key ) => {
let itemtype = item . type _name . toLowerCase ( ) . indexOf ( 'jupyter' . toLowerCase ( ) )
if ( itemtype === - 1 ) {
return (
< Option value = { item . id } key = { key } name = { item . description } >
< Tooltip placement = "right" title = { item . description === "" ? "无描述" : item . description } >
{ item . type _name }
< / T o o l t i p >
< / O p t i o n >
)
}
} ) : ""
}
}
< / S e l e c t >
< / S e l e c t >
@ -516,28 +881,28 @@ class Shixuninformation extends Component {
< Form . Item
< Form . Item
style = { { "borderBottom" : 'none' , 'width' : ' 6 1%', 'float' : 'left' , 'marginTop' : '40px' } }
style = { { "borderBottom" : 'none' , 'width' : ' 8 1%', 'float' : 'left' , 'marginTop' : '40px' } }
className = "chooseDes pr"
className = "chooseDes pr"
>
>
< div className = " fl pr mr20" >
< div className = " fl pr mr20" >
{ getFieldDecorator ( 'selectright' , {
{ getFieldDecorator ( 'selectright' , {
rules : [ { required : tru e, message : '请选择小类别' } ] ,
rules : [ { required : fals e, message : '请选择小类别' } ] ,
} ) (
} ) (
< div className = " fl pr mr20" >
< div className = " fl pr mr20" >
< Select placeholder = "请选择小类别"
< Select placeholder = "请选择小类别"
mode = "multiple"
mode = "multiple"
onChange = { this . selectright }
value = { ! this . state . choice _small _type ? undefined : this . state . choice _small _type . length === 0 || this . state . choice _small _type [ 0 ] === "" || this . state . choice _small _type === [ ] ? undefined : this . state . choice _small _type }
value = { this . state . choice _small _type . length === 0 || this . state . choice _small _type [ 0 ] === "" || this . state . choice _small _type === [ ] ? undefined : this . state . choice _small _type }
style = { { width : 200 } }
style = { { width : 180 , height : 30 } }
disabled = { operateauthority ? false : true }
disabled = { operateauthority ? false : true }
onDeselect = { operateauthority ? this . Deselectlittle : "" }
onDeselect = { operateauthority ? this . Deselectlittle : "" }
onSelect = { operateauthority ? this . littleClass : "" }
onSelect = { operateauthority ? this . littleClass : "" }
onChange = { this . showlittleClass }
defaultOpen = { false }
defaultOpen = { false }
>
>
{
{
this . props . data === undefined ? "" : this . props . data . shixun . small _type . map ( ( item , key ) => {
this . props . data === undefined ? "" : this . props . data . shixun && this . props . data . shixun . small _type . map ( ( item , key ) => {
return (
return (
< Option value = { item . id } key = { key } >
< Option value = { item . id } key = { key } name = { item . description } >
< Tooltip placement = "right" title = { item . description === "" ? "无描述" : item . description } >
< Tooltip placement = "right" title = { item . description === "" ? "无描述" : item . description } >
{ item . type _name }
{ item . type _name }
< / T o o l t i p >
< / T o o l t i p >
@ -550,12 +915,13 @@ class Shixuninformation extends Component {
) }
) }
< span className = "fl ml20 color-grey lineh-20" >
< span className = "fl ml20 color-grey lineh-20" >
< div >
< div >
< div className = { "font-12" } >
{ this . state . mainvalues === undefined && this . state . subvalues === undefined || this . state . mainvalues === "" && this . state . subvalues === "" ? "" :
已安装软件 : hadoop3 . 1.0 、 jdk1 . 8 ;
< div className = { "font-12" } style = { { 'max-width' : '600px' } } >
< / d i v >
{ ` ${ this . state . mainvalues === undefined || this . state . mainvalues === "" ? "" : ` 已安装软件: ` + this . state . mainvalues } ` }
< div className = { "font-12" } >
{ ` ${ this . state . subvalues === undefined || this . state . subvalues === "" ? "" : this . state . mainvalues === undefined || this . state . mainvalues === "" ? ` 已安装软件: ` + this . state . subvalues : this . state . subvalues } ` }
说明 : 添加了hadoop3 . 1.0 、 jdk1 . 8 的源码包 , 添加了hadoop3 . 1.0 、 jdk1 . 8 的源码包
{ ` ${ this . state . mainvalues === undefined || this . state . mainvalues === "" ? "" : ` 说明:添加了 ` + this . state . mainvalues } ${ this . state . subvalues === undefined || this . state . subvalues === "" ? "" :
< / d i v >
this . state . mainvalues === undefined || this . state . mainvalues === "" ? ` 说明:添加了 ` + this . state . subvalues : this . state . subvalues } ` }
< / d i v > }
< / d i v >
< / d i v >
< / s p a n >
< / s p a n >
< / d i v >
< / d i v >
@ -568,12 +934,12 @@ class Shixuninformation extends Component {
< / d i v >
< / d i v >
< Form . Item
{ this . props . shixunsDetails && this . props . shixunsDetails . is _jupyter === true ? "" : < Form . Item
label = { "评测脚本" }
label = { "评测脚本" }
style = { { "borderBottom" : 'none' } }
style = { { "borderBottom" : 'none' } }
className = "chooseDes pr"
className = "chooseDes pr"
>
>
{ getFieldDecorator ( 'select 123 ', {
{ getFieldDecorator ( 'select scripts ', {
rules : [ { required : true , message : '请选择评测脚本' } ] ,
rules : [ { required : true , message : '请选择评测脚本' } ] ,
} ) (
} ) (
< div className = "with15 fl pr" >
< div className = "with15 fl pr" >
@ -584,7 +950,7 @@ class Shixuninformation extends Component {
value = { choice _standard _scripts === undefined || choice _standard _scripts === null ? undefined : choice _standard _scripts . id === undefined ? choice _standard _scripts : choice _standard _scripts . id }
value = { choice _standard _scripts === undefined || choice _standard _scripts === null ? undefined : choice _standard _scripts . id === undefined ? choice _standard _scripts : choice _standard _scripts . id }
onChange = { operateauthority ? this . SelectScput : "" } >
onChange = { operateauthority ? this . SelectScput : "" } >
{
{
this . props. data === undefined ? "" : this . props . data . shixun . standard _scripts . map ( ( item , key ) => {
this . state. standard _scripts === undefined ? "" : this . state . standard _scripts . map ( ( item , key ) => {
return (
return (
< Option value = { parseInt ( item . id ) } name = { item . scptname } key = { key } > { item . scptname } < / O p t i o n >
< Option value = { parseInt ( item . id ) } name = { item . scptname } key = { key } > { item . scptname } < / O p t i o n >
)
)
@ -594,13 +960,19 @@ class Shixuninformation extends Component {
< / S e l e c t >
< / S e l e c t >
< / d i v >
< / d i v >
) }
) }
< span className = "fl ml20 color-blue" >
< span className = "fl ml20 color-blue" style = { { 'line-height' : '30px' } } >
使用自定义脚本
< span onClick = { ( ) => this . showModal ( ) } > 使用自定义脚本 < / s p a n >
< span className = { "color-grey ml10" } onClick = { ( ) => this . testscripttip ( 0 ) } >
< span className = { "color-grey ml10" } onClick = { ( ) => this . testscripttip ( 0 ) } >
< Icon type = "exclamation-circle" / >
< Icon type = "exclamation-circle" / >
< / s p a n >
< / s p a n >
< div className = "invite-tip clearfix none " id = "test_script_tip"
< div className = "invite-tip clearfix none " id = "test_script_tip"
style = { { top : '33px' , left : '-15px' , width : '450px' , zIndex : '10' , display : this . state . testscripttiptype === true ? 'block' : "none" } } >
style = { {
top : '33px' ,
left : '-15px' ,
width : '450px' ,
zIndex : '10' ,
display : this . state . testscripttiptype === true ? 'block' : "none"
} } >
< style >
< style >
{
{
`
`
@ -638,9 +1010,9 @@ class Shixuninformation extends Component {
< / p >
< / p >
< / d i v >
< / d i v >
< / s p a n >
< / s p a n >
< / F o r m . I t e m >
< / F o r m . I t e m > }
< div className = "mt30 clearfix df" >
{ this . props . shixunsDetails && this . props . shixunsDetails . is _jupyter === true ? "" : < div className = "mt30 clearfix df" >
< div
< div
className = { operateauthority === false ? 'nonemodel' : "" }
className = { operateauthority === false ? 'nonemodel' : "" }
> < / d i v >
> < / d i v >
@ -649,7 +1021,7 @@ class Shixuninformation extends Component {
< MonacoEditor
< MonacoEditor
height = "450"
height = "450"
width = "1150"
width = "1150"
language = { this . state . language }
// language={this.state.language}
value = { shixunmemoMDvalue }
value = { shixunmemoMDvalue }
options = { {
options = { {
selectOnLineNumbers : true
selectOnLineNumbers : true
@ -659,17 +1031,19 @@ class Shixuninformation extends Component {
/ >
/ >
< / d i v >
< / d i v >
< / d i v >
< / d i v >
< / d i v >
< / d i v > }
< / F o r m >
< / F o r m >
< span className = "ant-form-text mt20" > 私密版本库 :
{ this . props . shixunsDetails && this . props . shixunsDetails . is _jupyter === true ? "" : < span className = "ant-form-text mt20" > 私密版本库 :
< Checkbox onChange = { this . simionChange } value = { this . state . simichecked } > ( 若需要对学员隐藏部分版本库内容时 , 请选中 ; 选中即启用私密版本库 , 请将需要对学员隐藏的文件存储在私密版本库 ) < / C h e c k b o x >
< Checkbox onChange = { this . simionChange }
< / s p a n >
value = { this . state . simichecked } >
{ this . state . simichecked === false ? "(若需要对学员隐藏部分版本库内容时,请选中;选中保存后表示启用私密版本库,请将需要对学员隐藏的文件存储在私密版本库)" : "已创建的私密版本库及其内容,将在“保存”时被删除" } < / C h e c k b o x >
< / s p a n > }
{ this . props . identity < 3 ? < div className = "edu-back-white padding40-20 mb20" >
{ this . props . identity < 3 ? < div className = "edu-back-white padding40-20 mb20" >
< p className = "color-grey-6 font-16 mb30" > 服务配置 < / p >
< p className = "color-grey-6 font-16 mb30" > 服务配置 < / p >
{ shixun _service _configs && shixun _service _configs . map ( ( item , key ) => {
{ this . state . shixun _service _configs && this . state . shixun _service _configs . map ( ( item , key ) => {
return (
return (
< div key = { key } >
< div key = { key } >
@ -689,7 +1063,8 @@ class Shixuninformation extends Component {
< div className = "clearfix mb5" >
< div className = "clearfix mb5" >
< label className = "panel-form-label fl" > 最低CPU ( 核 ) : < / l a b e l >
< label className = "panel-form-label fl" > 最低CPU ( 核 ) : < / l a b e l >
< div className = "pr fl with80 status_con" >
< div className = "pr fl with80 status_con" >
< input type = "text" value = { item . lower _cpu _limit } onInput = { ( e ) => this . setConfigsInputs ( e , key , 2 ) }
< input type = "text" value = { item . lower _cpu _limit }
onInput = { ( e ) => this . setConfigsInputs ( e , key , 2 ) }
className = "panel-box-sizing task-form-100 task-height-40" placeholder = "请输入类别名称" / >
className = "panel-box-sizing task-form-100 task-height-40" placeholder = "请输入类别名称" / >
< / d i v >
< / d i v >
< div className = "cl" > < / d i v >
< div className = "cl" > < / d i v >
@ -708,7 +1083,8 @@ class Shixuninformation extends Component {
< input type = "text" value = { item . request _limit } onInput = { ( e ) => this . setConfigsInputs ( e , key , 4 ) }
< input type = "text" value = { item . request _limit } onInput = { ( e ) => this . setConfigsInputs ( e , key , 4 ) }
className = "panel-box-sizing task-form-100 task-height-40" placeholder = "请输入类别名称" / >
className = "panel-box-sizing task-form-100 task-height-40" placeholder = "请输入类别名称" / >
< / d i v >
< / d i v >
< label className = "panel-form-label fl" style = { { width : '48%' } } > 温馨提示 : 纯编程类型实训建议使用默认值 , 对于大数据等建议使用最大内存的30 % < / l a b e l >
< label className = "panel-form-label fl"
style = { { width : '48%' } } > 温馨提示 : 纯编程类型实训建议使用默认值 , 对于大数据等建议使用最大内存的30 % < / l a b e l >
< div className = "cl" > < / d i v >
< div className = "cl" > < / d i v >
< / d i v >
< / d i v >
< / d i v >
< / d i v >
@ -729,6 +1105,24 @@ class Shixuninformation extends Component {
}
}
< / s t y l e > : " " }
< / s t y l e > : " " }
{ /*<Modal*/ }
{ /* keyboard={false}*/ }
{ /* title="提示"*/ }
{ /* visible={this.state.simicheckedtype}*/ }
{ /* closable={false}*/ }
{ /* footer={null}*/ }
{ /*>*/ }
{ /* <div className="task-popup-content">*/ }
{ /* <p className="task-popup-text-center font-16">已创建的私密版本库及其内容,将在“保存”时被删除</p>*/ }
{ /* <p className="task-popup-text-center font-16">是否确认取消选择?</p>*/ }
{ /* </div>*/ }
{ /* <div className="task-popup-submit clearfix mt10">*/ }
{ /* <a onClick={() => this.hidesimichecked()} className="task-btn fl">取消</a>*/ }
{ /* <a className="task-btn task-btn-orange fr" onClick={() => this.getsimichecked()}>确定</a>*/ }
{ /* </div>*/ }
{ /*</Modal>*/ }
< Modal
< Modal
keyboard = { false }
keyboard = { false }
title = "提示"
title = "提示"
@ -747,6 +1141,7 @@ class Shixuninformation extends Component {
< / d i v >
< / d i v >
< / M o d a l >
< / M o d a l >
< Modal
< Modal
keyboard = { false }
keyboard = { false }
title = "提示"
title = "提示"
@ -760,6 +1155,44 @@ class Shixuninformation extends Component {
< / d i v >
< / d i v >
< / M o d a l >
< / M o d a l >
< Modal
keyboard = { false }
title = "自定义模板"
visible = { this . state . visibleTemplate }
onCancel = { this . handleCancelTemplate }
onOk = { this . hideModalTemplate }
okText = "确认"
cancelText = "取消"
>
< div >
< li className = "clearfix mb15" >
< label className = "panel-form-label fl" > < span
className = "color-orange mr5" > * < / s p a n > 执 行 命 令 : < / l a b e l >
< textarea className = "task-form-80 task-height-150 panel-box-sizing fl mt10"
onInput = { this . Executiveorder }
value = { this . state . Executiveordervalue }
style = { { width : '100%' } }
id = "executive_command"
>
< / t e x t a r e a >
< p className = "-text-danger fl mt5"
id = "executive_command_notice"
style = { { display : this . state . Executivetyoe === false ? "none" : "block" } }
> 执行命令不能为空 < / p >
< / l i >
< li className = "clearfix mb15" >
< label className = "panel-form-label fl" > 编译命令 : < / l a b e l >
< textarea className = "task-form-80 task-height-150 panel-box-sizing fl mt10"
value = { this . state . Compilecommandvalue }
onInput = { this . Compilecommand }
id = "compile_command"
style = { { width : '100%' } }
>
< / t e x t a r e a >
< / l i >
< / d i v >
< / M o d a l >
< Modal
< Modal
keyboard = { false }
keyboard = { false }
@ -777,20 +1210,21 @@ class Shixuninformation extends Component {
< textarea
< textarea
className = { this . state . languagewritetype === true ? "fl task-form-80 task-height-150 bor-reds" : "fl task-form-80 task-height-150" }
className = { this . state . languagewritetype === true ? "fl task-form-80 task-height-150 bor-reds" : "fl task-form-80 task-height-150" }
style = { { width : '89%' , height : '100px' } }
style = { { width : '89%' , height : '100px' } }
onInput = { this . setlanguage write }
onInput = { this . setlanguage }
value = { languag ewrit e}
value = { this . state . languag e}
placeholder = "请填写该镜像是基于什么语言: 示例: Python"
placeholder = "请填写该镜像是基于什么语言: 示例: Python"
id = "demand_info" > < / t e x t a r e a >
id = "demand_info" > < / t e x t a r e a >
< / l i >
< / l i >
< div className = { "color-red shixunspanred" } > { this . state . languagewritetype === true ? "请填写该镜像语言" : "" } < / d i v >
< div
className = { "color-red shixunspanred" } > { this . state . languagewritetype === true ? "请填写该镜像语言" : "" } < / d i v >
< li className = "clearfix ml1" >
< li className = "clearfix ml1" >
< label className = "panel-form-label fl ml50" > < span
< label className = "panel-form-label fl ml50" > < span
className = "color-red fl mt3" > * < / s p a n > 系 统 环 境 : & n b s p ; & n b s p ; < / l a b e l >
className = "color-red fl mt3" > * < / s p a n > 系 统 环 境 : & n b s p ; & n b s p ; < / l a b e l >
< textarea
< textarea
className = { this . state . systemenvironmenttype === true ? "fl task-form-80 task-height-150 bor-reds" : "fl task-form-80 task-height-150" }
className = { this . state . systemenvironmenttype === true ? "fl task-form-80 task-height-150 bor-reds" : "fl task-form-80 task-height-150" }
onInput = { this . set systemenvironment }
onInput = { this . set runtime }
style = { { height : '100px' } }
style = { { height : '100px' } }
value = { systemenvironment }
value = { this . state . runtime }
placeholder = "请填写该镜像是基于什么linux系统环境,代码运行环境"
placeholder = "请填写该镜像是基于什么linux系统环境,代码运行环境"
id = "demand_info" > < / t e x t a r e a >
id = "demand_info" > < / t e x t a r e a >
< / l i >
< / l i >
@ -802,8 +1236,8 @@ class Shixuninformation extends Component {
< textarea
< textarea
className = { this . state . testcoderunmodetype === true ? "fl task-form-80 task-height-150 bor-reds" : "fl task-form-80 task-height-150" }
className = { this . state . testcoderunmodetype === true ? "fl task-form-80 task-height-150 bor-reds" : "fl task-form-80 task-height-150" }
onInput = { this . set testcode runmode }
onInput = { this . set run_ meth od}
value = { testcoderunmode }
value = { this . state . run _method }
style = { { height : '100px' } }
style = { { height : '100px' } }
placeholder = "请填写该镜像中测试代码运行方式"
placeholder = "请填写该镜像中测试代码运行方式"
id = "demand_info" > < / t e x t a r e a >
id = "demand_info" > < / t e x t a r e a >
@ -837,10 +1271,11 @@ class Shixuninformation extends Component {
< / l i >
< / l i >
< div className = "cl" > < / d i v >
< div className = "cl" > < / d i v >
< / d i v >
< / d i v >
{ /*</Form>*/ }
< / M o d a l >
< / M o d a l >
< / d i v >
< / d i v >
< Bottomsubmit url = { ` /shixuns/ ${ this . props . match . params . shixunId } /challenges ` } onSubmits = { this . sendsure _apply } / >
{ this . props . identity < 5 ?
< Bottomsubmit { ... this . props } { ... this . state } url = { ` /shixuns/ ${ this . props . match . params . shixunId } /challenges ` }
onSubmits = { this . onSubmits } loadings = { this . state . loading } bottomvalue = { "下一步" } / > : "" }
< / d i v >
< / d i v >
) ;
) ;