import React, { PropTypes } from 'react'; import { createSelector } from 'reselect'; import { connect } from 'react-redux'; import PureComponent from 'react-pure-render/component'; import { Col, Row } from 'react-bootstrap'; import TestSuite from './Test-Suite.jsx'; import Output from './Output.jsx'; import ToolPanel from './Tool-Panel.jsx'; import { challengeSelector } from '../../redux/selectors'; const mapStateToProps = createSelector( challengeSelector, state => state.app.windowHeight, state => state.app.navHeight, state => state.challengesApp.tests, state => state.challengesApp.output, ( { challenge: { title, description } = {} }, windowHeight, navHeight, tests, output ) => ({ title, description, height: windowHeight - navHeight - 20, tests, output }) ); export class SidePanel extends PureComponent { constructor(...args) { super(...args); this.descriptionRegex = /\ { if (descriptionRegex.test(line)) { return (
); } return (

); }); } render() { const { title, description, height, tests = [], output } = this.props; const style = { overflowX: 'hidden', overflowY: 'auto' }; if (height) { style.height = height + 'px'; } return (

{ title || 'Happy Coding!' }


{ this.renderDescription(description, this.descriptionRegex) }

); } } export default connect(mapStateToProps)(SidePanel);