2018-02-07 18:06:07 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
2020-07-15 21:17:01 +00:00
|
|
|
import { useSelector, useDispatch, connect } from 'react-redux';
|
2017-02-22 19:29:35 +00:00
|
|
|
import classNames from 'classnames';
|
2018-07-30 16:20:57 +00:00
|
|
|
import { Console as ConsoleFeed } from 'console-feed';
|
2018-10-05 19:35:31 +00:00
|
|
|
import {
|
|
|
|
CONSOLE_FEED_WITHOUT_ICONS, CONSOLE_FEED_LIGHT_STYLES,
|
|
|
|
CONSOLE_FEED_DARK_STYLES, CONSOLE_FEED_CONTRAST_STYLES
|
|
|
|
} from '../../../styles/components/_console-feed.scss';
|
2020-04-29 22:34:37 +00:00
|
|
|
import warnLightUrl from '../../../images/console-warn-light.svg?byUrl';
|
|
|
|
import warnDarkUrl from '../../../images/console-warn-dark.svg?byUrl';
|
|
|
|
import warnContrastUrl from '../../../images/console-warn-contrast.svg?byUrl';
|
|
|
|
import errorLightUrl from '../../../images/console-error-light.svg?byUrl';
|
|
|
|
import errorDarkUrl from '../../../images/console-error-dark.svg?byUrl';
|
|
|
|
import errorContrastUrl from '../../../images/console-error-contrast.svg?byUrl';
|
|
|
|
import debugLightUrl from '../../../images/console-debug-light.svg?byUrl';
|
|
|
|
import debugDarkUrl from '../../../images/console-debug-dark.svg?byUrl';
|
|
|
|
import debugContrastUrl from '../../../images/console-debug-contrast.svg?byUrl';
|
|
|
|
import infoLightUrl from '../../../images/console-info-light.svg?byUrl';
|
|
|
|
import infoDarkUrl from '../../../images/console-info-dark.svg?byUrl';
|
|
|
|
import infoContrastUrl from '../../../images/console-info-contrast.svg?byUrl';
|
2017-02-22 19:29:35 +00:00
|
|
|
|
2020-04-29 22:34:37 +00:00
|
|
|
import UpArrowIcon from '../../../images/up-arrow.svg';
|
|
|
|
import DownArrowIcon from '../../../images/down-arrow.svg';
|
2016-07-17 23:06:43 +00:00
|
|
|
|
2020-07-15 21:17:01 +00:00
|
|
|
import * as IDEActions from '../../IDE/actions/ide';
|
|
|
|
import * as ConsoleActions from '../../IDE/actions/console';
|
|
|
|
|
|
|
|
class ConsoleComponent extends React.Component {
|
2018-07-30 16:20:57 +00:00
|
|
|
componentDidUpdate(prevProps) {
|
2017-02-22 19:29:35 +00:00
|
|
|
this.consoleMessages.scrollTop = this.consoleMessages.scrollHeight;
|
2018-07-30 16:20:57 +00:00
|
|
|
if (this.props.theme !== prevProps.theme) {
|
|
|
|
this.props.clearConsole();
|
|
|
|
this.props.dispatchConsoleEvent(this.props.consoleEvents);
|
|
|
|
}
|
2018-09-12 05:00:29 +00:00
|
|
|
|
2018-09-13 02:00:19 +00:00
|
|
|
if (this.props.fontSize !== prevProps.fontSize) {
|
2018-09-12 05:00:29 +00:00
|
|
|
this.props.clearConsole();
|
|
|
|
this.props.dispatchConsoleEvent(this.props.consoleEvents);
|
|
|
|
}
|
2018-07-30 16:20:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getConsoleFeedStyle(theme, times) {
|
|
|
|
const style = {};
|
|
|
|
const CONSOLE_FEED_LIGHT_ICONS = {
|
|
|
|
LOG_WARN_ICON: `url(${warnLightUrl})`,
|
|
|
|
LOG_ERROR_ICON: `url(${errorLightUrl})`,
|
|
|
|
LOG_DEBUG_ICON: `url(${debugLightUrl})`,
|
2018-09-13 18:14:58 +00:00
|
|
|
LOG_INFO_ICON: `url(${infoLightUrl})`
|
2018-07-30 16:20:57 +00:00
|
|
|
};
|
|
|
|
const CONSOLE_FEED_DARK_ICONS = {
|
|
|
|
LOG_WARN_ICON: `url(${warnDarkUrl})`,
|
|
|
|
LOG_ERROR_ICON: `url(${errorDarkUrl})`,
|
|
|
|
LOG_DEBUG_ICON: `url(${debugDarkUrl})`,
|
2018-09-13 18:14:58 +00:00
|
|
|
LOG_INFO_ICON: `url(${infoDarkUrl})`
|
2018-09-13 15:50:07 +00:00
|
|
|
};
|
2020-04-27 21:47:28 +00:00
|
|
|
const CONSOLE_FEED_CONTRAST_ICONS = {
|
|
|
|
LOG_WARN_ICON: `url(${warnContrastUrl})`,
|
|
|
|
LOG_ERROR_ICON: `url(${errorContrastUrl})`,
|
|
|
|
LOG_DEBUG_ICON: `url(${debugContrastUrl})`,
|
|
|
|
LOG_INFO_ICON: `url(${infoContrastUrl})`
|
|
|
|
};
|
2018-09-13 18:14:58 +00:00
|
|
|
const CONSOLE_FEED_SIZES = {
|
2018-09-23 06:56:39 +00:00
|
|
|
TREENODE_LINE_HEIGHT: 1.2,
|
2018-09-14 16:44:41 +00:00
|
|
|
BASE_FONT_SIZE: this.props.fontSize,
|
2018-09-13 18:14:58 +00:00
|
|
|
ARROW_FONT_SIZE: this.props.fontSize,
|
2018-09-14 16:44:41 +00:00
|
|
|
LOG_ICON_WIDTH: this.props.fontSize,
|
2018-09-23 06:56:39 +00:00
|
|
|
LOG_ICON_HEIGHT: 1.45 * this.props.fontSize,
|
2018-07-30 16:20:57 +00:00
|
|
|
};
|
2018-09-13 15:50:07 +00:00
|
|
|
|
2018-07-30 16:20:57 +00:00
|
|
|
if (times > 1) {
|
|
|
|
Object.assign(style, CONSOLE_FEED_WITHOUT_ICONS);
|
|
|
|
}
|
|
|
|
switch (theme) {
|
|
|
|
case 'light':
|
2018-09-13 18:14:58 +00:00
|
|
|
return Object.assign(CONSOLE_FEED_LIGHT_STYLES, CONSOLE_FEED_LIGHT_ICONS, CONSOLE_FEED_SIZES, style);
|
2018-07-30 16:20:57 +00:00
|
|
|
case 'dark':
|
2018-09-13 18:14:58 +00:00
|
|
|
return Object.assign(CONSOLE_FEED_DARK_STYLES, CONSOLE_FEED_DARK_ICONS, CONSOLE_FEED_SIZES, style);
|
2018-07-30 16:20:57 +00:00
|
|
|
case 'contrast':
|
2020-04-27 21:47:28 +00:00
|
|
|
return Object.assign(CONSOLE_FEED_CONTRAST_STYLES, CONSOLE_FEED_CONTRAST_ICONS, CONSOLE_FEED_SIZES, style);
|
2018-07-30 16:20:57 +00:00
|
|
|
default:
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-18 00:49:57 +00:00
|
|
|
render() {
|
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 (
|
2020-05-19 19:34:00 +00:00
|
|
|
<section className={consoleClass} >
|
|
|
|
<header className="preview-console__header">
|
2017-01-11 19:13:49 +00:00
|
|
|
<h2 className="preview-console__header-title">Console</h2>
|
2017-01-09 23:09:23 +00:00
|
|
|
<div className="preview-console__header-buttons">
|
2020-05-05 23:03:58 +00:00
|
|
|
<button className="preview-console__clear" onClick={this.props.clearConsole} aria-label="Clear console">
|
2017-01-09 23:09:23 +00:00
|
|
|
Clear
|
2017-02-22 19:29:35 +00:00
|
|
|
</button>
|
2017-06-06 02:33:32 +00:00
|
|
|
<button
|
|
|
|
className="preview-console__collapse"
|
|
|
|
onClick={this.props.collapseConsole}
|
2020-05-05 23:03:58 +00:00
|
|
|
aria-label="Close console"
|
2017-06-06 02:33:32 +00:00
|
|
|
>
|
2020-05-05 23:03:58 +00:00
|
|
|
<DownArrowIcon focusable="false" aria-hidden="true" />
|
2017-01-09 23:09:23 +00:00
|
|
|
</button>
|
2020-05-05 23:03:58 +00:00
|
|
|
<button className="preview-console__expand" onClick={this.props.expandConsole} aria-label="Open console" >
|
|
|
|
<UpArrowIcon focusable="false" aria-hidden="true" />
|
2017-01-09 23:09:23 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
2020-05-19 19:34:00 +00:00
|
|
|
</header>
|
2017-02-22 19:29:35 +00:00
|
|
|
<div ref={(element) => { this.consoleMessages = element; }} className="preview-console__messages">
|
|
|
|
{this.props.consoleEvents.map((consoleEvent) => {
|
2018-11-15 21:41:10 +00:00
|
|
|
const { method, times } = consoleEvent;
|
2018-07-30 16:20:57 +00:00
|
|
|
const { theme } = this.props;
|
2017-01-11 19:13:49 +00:00
|
|
|
return (
|
2018-07-30 16:20:57 +00:00
|
|
|
<div key={consoleEvent.id} className={`preview-console__message preview-console__message--${method}`}>
|
|
|
|
{ times > 1 &&
|
2018-10-05 19:35:31 +00:00
|
|
|
<div
|
|
|
|
className="preview-console__logged-times"
|
|
|
|
style={{ fontSize: this.props.fontSize, borderRadius: this.props.fontSize / 2 }}
|
|
|
|
>
|
|
|
|
{times}
|
|
|
|
</div>
|
2018-07-30 16:20:57 +00:00
|
|
|
}
|
|
|
|
<ConsoleFeed
|
|
|
|
styles={this.getConsoleFeedStyle(theme, times)}
|
2018-11-15 21:40:37 +00:00
|
|
|
logs={[consoleEvent]}
|
2018-07-30 16:20:57 +00:00
|
|
|
/>
|
2017-01-11 19:13:49 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
2016-07-21 04:05:47 +00:00
|
|
|
</div>
|
2020-05-19 19:34:00 +00:00
|
|
|
</section>
|
2016-07-17 23:06:43 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 21:17:01 +00:00
|
|
|
ConsoleComponent.propTypes = {
|
2017-02-22 19:29:35 +00:00
|
|
|
consoleEvents: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
method: PropTypes.string.isRequired,
|
|
|
|
args: PropTypes.arrayOf(PropTypes.string)
|
|
|
|
})),
|
2016-07-21 04:33:41 +00:00
|
|
|
isExpanded: PropTypes.bool.isRequired,
|
|
|
|
collapseConsole: PropTypes.func.isRequired,
|
2016-10-06 17:01:48 +00:00
|
|
|
expandConsole: PropTypes.func.isRequired,
|
2018-07-30 16:20:57 +00:00
|
|
|
clearConsole: PropTypes.func.isRequired,
|
|
|
|
dispatchConsoleEvent: PropTypes.func.isRequired,
|
2018-09-12 05:24:05 +00:00
|
|
|
theme: PropTypes.string.isRequired,
|
2018-09-13 02:12:50 +00:00
|
|
|
fontSize: PropTypes.number.isRequired
|
2016-07-17 23:06:43 +00:00
|
|
|
};
|
|
|
|
|
2020-07-15 21:17:01 +00:00
|
|
|
ConsoleComponent.defaultProps = {
|
2017-02-22 19:29:35 +00:00
|
|
|
consoleEvents: []
|
|
|
|
};
|
|
|
|
|
2020-07-15 21:26:34 +00:00
|
|
|
// TODO: Use Hooks implementation. Requires react-redux 7.1.0
|
|
|
|
/*
|
|
|
|
const Console = () => {
|
|
|
|
const consoleEvents = useSelector(state => state.console);
|
|
|
|
const { consoleIsExpanded } = useSelector(state => state.ide);
|
|
|
|
const { theme, fontSize } = useSelector(state => state.preferences);
|
|
|
|
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ConsoleComponent
|
|
|
|
consoleEvents={consoleEvents}
|
|
|
|
isExpanded={consoleIsExpanded}
|
|
|
|
theme={theme}
|
|
|
|
fontSize={fontSize}
|
|
|
|
collapseConsole={() => dispatch({})}
|
|
|
|
expandConsole={() => dispatch({})}
|
|
|
|
clearConsole={() => dispatch({})}
|
|
|
|
dispatchConsoleEvent={() => dispatch({})}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
*/
|
2020-07-15 21:17:01 +00:00
|
|
|
|
|
|
|
const Console = connect(
|
|
|
|
state => ({
|
|
|
|
consoleEvents: state.console,
|
|
|
|
isExpanded: state.ide.consoleIsExpanded,
|
|
|
|
theme: state.preferences.theme,
|
|
|
|
fontSize: state.preferences.fontSize
|
|
|
|
}),
|
|
|
|
dispatch => ({
|
|
|
|
collapseConsole: () => dispatch(IDEActions.collapseConsole()),
|
|
|
|
expandConsole: () => dispatch(IDEActions.expandConsole()),
|
|
|
|
clearConsole: () => dispatch(ConsoleActions.clearConsole()),
|
|
|
|
dispatchConsoleEvent: msgs => dispatch(ConsoleActions.dispatchConsoleEvent(msgs)),
|
|
|
|
})
|
|
|
|
)(ConsoleComponent);
|
|
|
|
|
2016-07-17 23:06:43 +00:00
|
|
|
export default Console;
|