import React, { Component } from 'react'; import { Link } from 'react-router-dom' import { withStyles } from 'material-ui/styles'; import Button from 'material-ui/Button'; import Tooltip from 'material-ui/Tooltip'; import './ActionView.css' /* color: #1B4061 !important; background-color: transparent; border: 1px solid #1B4061 !important; */ const styles = theme => ({ button: { margin: theme.spacing.unit, border: '1px solid #1B4061', color: '#1B4061', height: '30px', padding: '0 16px', '&:hover': { color: '#4CACFF', border: '1px solid #4CACFF' } }, hoverButton: { margin: theme.spacing.unit, height: '30px', padding: '0 16px', color: '#4CACFF', border: '1px solid #4CACFF' }, buttonText: { color: '#1B4061 !important', '&:hover': { color: '#1B4061', } } }); class ActionView extends Component { constructor(props) { super(props) } componentDidMount() { // request window._tpiWidthResize = () => { const _w = window.$('#actionView').width(); if (_w < 446) { window.$('#time-consuming').hide() // window.$('#time-consuming').hide() } else if (_w < 746) { // 文字放出来之前是 580 window.$('#time-consuming').show() window.$('.time_limit').hide() } else { window.$('#time-consuming').show() window.$('.time_limit').show() } } } showWebDisplay(challenge) { window.open(challenge.webDisplayUrl, '_blank'); } /*耗时:0 天 3 小时 11 分钟 57 秒 */ render() { const { onRunCodeTest, onShowPrevStage, onShowNextStage, gameBuilding , game, classes, st, shixun, record, challenge, time_limit, real_time_limit } = this.props; return (
{!!time_limit && {`本关最大执行时间:${real_time_limit}秒`} } {!gameBuilding && record ? // 本次评测耗时(编译、运行总时间):{ record } 秒 : ""} {/*将第一个按钮改为visibility方式隐藏,不然加载时测评按钮会出现没有垂直居中的情况*/} { !gameBuilding && (game && !!game.prev_game) ? : ''} {/*未发布的都能跳转*/} { !gameBuilding && ((game && (game.status === 2 || shixun.status < 2) || shixun && shixun.task_pass ) && !!game.next_game) ? : ''}
{ st === 1 && game.status === 2 ? 测评 : gameBuilding ? 测评 : 测评 }
); /* 离开 下一关 onclick="training_task_submmit();" {game && !!game.prev_game ?
上一关
: ''} {game && !!game.next_game ?
下一关
: ''} */ } } export default withStyles(styles)( ActionView );