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 (