2016-07-17 23:06:43 +00:00
|
|
|
import React, { PropTypes } from 'react';
|
2016-07-21 04:33:41 +00:00
|
|
|
import InlineSVG from 'react-inlinesvg';
|
|
|
|
const upArrowUrl = require('../../../images/up-arrow.svg');
|
|
|
|
const downArrowUrl = require('../../../images/down-arrow.svg');
|
|
|
|
import classNames from 'classnames';
|
2016-07-17 23:06:43 +00:00
|
|
|
|
2016-07-18 00:05:20 +00:00
|
|
|
/**
|
|
|
|
* How many console messages to store
|
|
|
|
* @type {Number}
|
|
|
|
*/
|
2016-07-21 04:05:47 +00:00
|
|
|
const consoleMax = 100;
|
2016-07-17 23:06:43 +00:00
|
|
|
|
|
|
|
class Console extends React.Component {
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2016-07-18 00:05:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An array of React Elements that include previous console messages
|
|
|
|
* @type {Array}
|
|
|
|
*/
|
2016-07-17 23:06:43 +00:00
|
|
|
this.children = [];
|
|
|
|
}
|
|
|
|
|
2016-07-18 00:49:57 +00:00
|
|
|
componentWillReceiveProps(nextProps) {
|
|
|
|
if (nextProps.isPlaying && !this.props.isPlaying) {
|
2016-07-17 23:06:43 +00:00
|
|
|
this.children = [];
|
2016-07-18 00:49:57 +00:00
|
|
|
} else if (nextProps.consoleEvent !== this.props.consoleEvent) {
|
|
|
|
const args = nextProps.consoleEvent.arguments;
|
|
|
|
const method = nextProps.consoleEvent.method;
|
|
|
|
const nextChild = (
|
2016-07-18 23:10:42 +00:00
|
|
|
<div key={this.children.length} className={`preview-console__${method}`}>
|
2016-07-18 00:49:57 +00:00
|
|
|
{Object.keys(args).map((key) => <span key={`${this.children.length}-${key}`}>{args[key]}</span>)}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
this.children.push(nextChild);
|
2016-07-17 23:06:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-18 00:49:57 +00:00
|
|
|
shouldComponentUpdate(nextProps) {
|
2016-07-21 04:33:41 +00:00
|
|
|
return (nextProps.consoleEvent !== this.props.consoleEvent)
|
|
|
|
|| (nextProps.isPlaying && !this.props.isPlaying)
|
|
|
|
|| (this.props.isExpanded !== nextProps.isExpanded);
|
2016-07-18 00:49:57 +00:00
|
|
|
}
|
2016-07-17 23:06:43 +00:00
|
|
|
|
2016-07-21 04:05:47 +00:00
|
|
|
componentDidUpdate() {
|
|
|
|
this.refs.console_messages.scrollTop = this.refs.console_messages.scrollHeight;
|
|
|
|
}
|
|
|
|
|
2016-07-18 00:49:57 +00:00
|
|
|
render() {
|
|
|
|
const childrenToDisplay = this.children.slice(-consoleMax);
|
2016-07-21 04:33:41 +00:00
|
|
|
const consoleClass = classNames({
|
|
|
|
'preview-console': true,
|
|
|
|
'preview-console--collapsed': !this.props.isExpanded
|
|
|
|
});
|
2016-07-17 23:06:43 +00:00
|
|
|
|
|
|
|
return (
|
2016-08-10 21:24:52 +00:00
|
|
|
<div ref="console" className={consoleClass} role="main" tabIndex="0" title="console">
|
2016-07-21 04:33:41 +00:00
|
|
|
<div className="preview-console__header">
|
|
|
|
<h2 className="preview-console__header-title">console</h2>
|
2016-07-31 02:46:48 +00:00
|
|
|
<button className="preview-console__collapse" onClick={this.props.collapseConsole} aria-label="collapse console">
|
2016-07-21 04:33:41 +00:00
|
|
|
<InlineSVG src={downArrowUrl} />
|
2016-07-31 02:46:48 +00:00
|
|
|
</button>
|
|
|
|
<button className="preview-console__expand" onClick={this.props.expandConsole} aria-label="expand console">
|
2016-07-21 04:33:41 +00:00
|
|
|
<InlineSVG src={upArrowUrl} />
|
2016-07-31 02:46:48 +00:00
|
|
|
</button>
|
2016-07-21 04:33:41 +00:00
|
|
|
</div>
|
2016-07-21 04:05:47 +00:00
|
|
|
<div ref="console_messages" className="preview-console__messages">
|
|
|
|
{childrenToDisplay}
|
|
|
|
</div>
|
2016-07-17 23:06:43 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Console.propTypes = {
|
|
|
|
consoleEvent: PropTypes.object,
|
2016-07-21 04:33:41 +00:00
|
|
|
isPlaying: PropTypes.bool.isRequired,
|
|
|
|
isExpanded: PropTypes.bool.isRequired,
|
|
|
|
collapseConsole: PropTypes.func.isRequired,
|
|
|
|
expandConsole: PropTypes.func.isRequired
|
2016-07-17 23:06:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Console;
|