import '../VNC.css'; import React, { Component } from 'react'; import Tooltip from 'material-ui/Tooltip'; import { connect } from 'react-redux'; import './CodeEvaluateView.css'; import { CircularProgress } from 'material-ui/Progress'; import { on, off } from 'educoder' import actions from '../../../redux/actions'; const testSetsExpandedArrayInitVal = [false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false, false] const $ = window.$; const TAB_INDEX_WEB_DISPLAY = 0; const TAB_INDEX_EVALUATE_RESULT_INDEX = 1 class CodeEvaluateView extends Component { constructor(props) { super(props) this.onEvaluateViewExpand = this.onEvaluateViewExpand.bind(this) this.state = { // TODO 最多20个测试集? testSetsInitedArray: testSetsExpandedArrayInitVal.slice(0), evaluateViewExpanded: false, tabIndex: 1, } } componentDidMount() { const { challenge } = this.props; on('showWebDisplayEvent', () => { if (challenge.isHtml) { this.setState({ tabIndex: TAB_INDEX_WEB_DISPLAY }) } }) if (challenge.isHtml === true) { this.tabIndexChange(TAB_INDEX_WEB_DISPLAY) } } componentWillUnmount() { off('showWebDisplayEvent') } componentWillReceiveProps(newProps, newContext) { if (this.props.game && newProps.game && (newProps.game.id !== this.props.game.id || newProps.gameBuilding !== this.props.gameBuilding )) { // 切换game时重置state if (newProps.gameBuilding === false) { // 清空codemirror的内容,TODO最好调用codemirror的销毁方法 $('#evaluating_contents .result_different_show').html('') this.setState({ tabIndex: TAB_INDEX_EVALUATE_RESULT_INDEX }) } this.setState({ testSetsInitedArray: testSetsExpandedArrayInitVal.slice(0), }) if (newProps.game.id !== this.props.game.id) { if (this.props.challenge.isHtml === true) { this.tabIndexChange(TAB_INDEX_WEB_DISPLAY) } } } } componentDidUpdate(prevProps, prevState, snapshot) { // 通关后重置为0 if (!prevProps.currentGamePassed && this.props.currentGamePassed === true) { this.tabIndexChange(TAB_INDEX_WEB_DISPLAY) } } tabIndexChange(index) { this.setState({tabIndex: index}); } onTestSetHeaderClick(index) { const { output_sets, power, game } = this.props; const { test_sets_array } = output_sets; const { testSetsInitedArray } = this.state; // TODO 评测了以后,测试集会变化, var current_test_set = test_sets_array[index]; if (!current_test_set.output) { current_test_set.output = '' } // 优化,但是会增加代码复杂度 if (( game.test_sets_view === true || power == 1 || current_test_set.is_public == 1 ) && testSetsInitedArray[index] === false ) { // 如果测试集没有初始化过(如果重新评测了,都需要重新初始化) const id = "result_different_show_" + index; var mv = window.CodeMirror.k_init(id, current_test_set.actual_output || "", current_test_set.output); var height=0; // 以前的代码用不了,2个pane的高度都是300 // if($("#"+id).find(".CodeMirror-merge-pane").eq(0).height()>$("#"+id).find(".CodeMirror-merge-pane").eq(1).height()){ // height = parseInt($("#"+id).find(".CodeMirror-merge-pane").eq(0).height()); // }else{ // height = parseInt($("#"+id).find(".CodeMirror-merge-pane").eq(1).height()); // } var lineNumber = Math.max( current_test_set.output.split('\n').length , (current_test_set.actual_output ? current_test_set.actual_output.split('\n').length : 1 )) height = lineNumber * 19 + 25; console.log('height ', height) $("#"+id).find(".CodeMirror").height(height); $(".CodeMirror-merge-gap").find("svg").css("height", height); // 取真实高度 $(".CodeMirror-merge-gap").css("height", $('.CodeMirror-merge-pane.CodeMirror-merge-editor').height()); setTimeout(()=>{ // 解决第一次打开时高度不准的问题 $('#game_test_set_results .CodeMirror-merge').css('display', 'flex') }, 100) // refresh一下,解决CM显示不全的问题 mv.edit.refresh() mv.right.orig.refresh() testSetsInitedArray[index] = true; } this.props.onTestSetHeaderClick(index) this.setState({ testSetsInitedArray, }) } goToCertification() { window.open('/account/certification', '_blank'); } renderTestSets() { const { output_sets, testSetsExpandedArray, power, allowed_unlock, testSetUnlock, showDialog, challenge, game, user } = this.props; const { testSetsInitedArray } = this.state; const { test_sets_array, test_sets_count, had_test_count, test_sets_hidden_count, test_sets_public_count , had_passed_testsests_error_count, had_passed_testsests_hidden_count, had_passed_testsests_public_count } = output_sets; const testSetsComponentArray = [] if (!test_sets_array) { console.error('no test_sets_array error') return '' } test_sets_array.forEach( (item, index) => { // function toggle_test_case(open, output, actual_output, id, power){ // onclick={toggle_test_case(1, output, actual_output, 0, true)} const isExpanded = testSetsExpandedArray[index] let headIconClass = ''; let _headLockIconClass = ''; if (item.is_public == 0) { if (game.test_sets_view === true || power === 1){ _headLockIconClass = 'fas fa-unlock-alt' } else { _headLockIconClass = 'fa-lock' } } if (item.result == true) { headIconClass = 'fa-check-circle color-light-green font-16' } else if (item.result == false) { headIconClass = 'fa-exclamation-circle -text-danger' } testSetsComponentArray.push(
测试集 {index + 1} { headIconClass && } { _headLockIconClass && } { !!item.ts_mem && 消耗内存{item.ts_mem}MB } { !!item.ts_mem && !!item.ts_time && } { !!item.ts_time && 代码执行时长:{item.ts_time}秒 }
- 预期输出 -
- 实际输出 -
{ !allowed_unlock ? '隐藏测试集,暂不支持解锁和查看。' : '此为隐藏测试项。'} { (power === 0 && allowed_unlock == true) ? showDialog({ contentText, callback: testSetUnlock , moreButtonsRender})} style={{"textDecoration": "underline"}}>解锁 : '' }
}{test_sets_count}/{test_sets_count} 全部通过
:{had_passed_testsests_error_count}/{test_sets_count} {/*.replace(/\\u/gi, '%u') unicode转码 */} {latest_output ? : ""}
} {this.renderTestSets()}