Runtime error line highlight dissappears on lint message update
This commit is contained in:
parent
b5f9879c44
commit
682dd7e2fc
5 changed files with 65 additions and 27 deletions
|
@ -127,3 +127,6 @@ export const CLEAR_PERSISTED_STATE = 'CLEAR_PERSISTED_STATE';
|
||||||
export const SHOW_HELP_MODAL = 'SHOW_HELP_MODAL';
|
export const SHOW_HELP_MODAL = 'SHOW_HELP_MODAL';
|
||||||
export const HIDE_HELP_MODAL = 'HIDE_HELP_MODAL';
|
export const HIDE_HELP_MODAL = 'HIDE_HELP_MODAL';
|
||||||
export const SET_ASSETS = 'SET_ASSETS';
|
export const SET_ASSETS = 'SET_ASSETS';
|
||||||
|
|
||||||
|
export const HIDE_RUNTIME_ERROR_WARNING = 'HIDE_RUNTIME_ERROR_WARNING';
|
||||||
|
export const SHOW_RUNTIME_ERROR_WARNING = 'SHOW_RUNTIME_ERROR_WARNING';
|
||||||
|
|
|
@ -233,3 +233,15 @@ export function hideHelpModal() {
|
||||||
type: ActionTypes.HIDE_HELP_MODAL
|
type: ActionTypes.HIDE_HELP_MODAL
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function hideRuntimeErrorWarning() {
|
||||||
|
return {
|
||||||
|
type: ActionTypes.HIDE_RUNTIME_ERROR_WARNING
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export function showRuntimeErrorWarning() {
|
||||||
|
return {
|
||||||
|
type: ActionTypes.SHOW_RUNTIME_ERROR_WARNING
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
@ -49,6 +49,7 @@ class Editor extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props);
|
super(props);
|
||||||
this.tidyCode = this.tidyCode.bind(this);
|
this.tidyCode = this.tidyCode.bind(this);
|
||||||
|
this.onUpdateLinting = this.onUpdateLinting.bind(this);
|
||||||
}
|
}
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.beep = new Audio(beepUrl);
|
this.beep = new Audio(beepUrl);
|
||||||
|
@ -64,17 +65,7 @@ class Editor extends React.Component {
|
||||||
keyMap: 'sublime',
|
keyMap: 'sublime',
|
||||||
highlightSelectionMatches: true, // highlight current search match
|
highlightSelectionMatches: true, // highlight current search match
|
||||||
lint: {
|
lint: {
|
||||||
onUpdateLinting: debounce((annotations) => {
|
onUpdateLinting: this.onUpdateLinting,
|
||||||
this.props.clearLintMessage();
|
|
||||||
annotations.forEach((x) => {
|
|
||||||
if (x.from.line > -1) {
|
|
||||||
this.props.updateLintMessage(x.severity, (x.from.line + 1), x.message);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
if (this.props.lintMessages.length > 0 && this.props.lintWarning) {
|
|
||||||
this.beep.play();
|
|
||||||
}
|
|
||||||
}, 2000),
|
|
||||||
options: {
|
options: {
|
||||||
'asi': true,
|
'asi': true,
|
||||||
'eqeqeq': false,
|
'eqeqeq': false,
|
||||||
|
@ -153,26 +144,44 @@ class Editor extends React.Component {
|
||||||
if (this.props.theme !== prevProps.theme) {
|
if (this.props.theme !== prevProps.theme) {
|
||||||
this._cm.setOption('theme', `p5-${this.props.theme}`);
|
this._cm.setOption('theme', `p5-${this.props.theme}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (prevProps.consoleEvents !== this.props.consoleEvents) {
|
||||||
|
this.props.showRuntimeErrorWarning();
|
||||||
|
}
|
||||||
for (let i = 0; i < 1000; i += 1) {
|
for (let i = 0; i < 1000; i += 1) {
|
||||||
this._cm.removeLineClass(i, 'background', 'line-runtime-error');
|
this._cm.removeLineClass(i, 'background', 'line-runtime-error');
|
||||||
}
|
}
|
||||||
this.props.consoleEvents.forEach((consoleEvent) => {
|
if (this.props.runtimeErrorWarningVisible) {
|
||||||
if (consoleEvent.method === 'error') {
|
this.props.consoleEvents.forEach((consoleEvent) => {
|
||||||
console.log(consoleEvent.arguments);
|
if (consoleEvent.method === 'error') {
|
||||||
console.log(consoleEvent.source);
|
const n = consoleEvent.arguments.replace(')', '').split(' ');
|
||||||
|
const lineNumber = parseInt(n[n.length - 1], 10) - 1;
|
||||||
const n = consoleEvent.arguments.replace(')', '').split(' ');
|
this._cm.addLineClass(lineNumber, 'background', 'line-runtime-error');
|
||||||
const lineNumber = parseInt(n[n.length - 1], 10) - 1;
|
}
|
||||||
console.log(lineNumber);
|
});
|
||||||
this._cm.addLineClass(lineNumber, 'background', 'line-runtime-error');
|
}
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
this._cm = null;
|
this._cm = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
onUpdateLinting() {
|
||||||
|
this.props.hideRuntimeErrorWarning();
|
||||||
|
|
||||||
|
debounce((annotations) => {
|
||||||
|
this.props.clearLintMessage();
|
||||||
|
annotations.forEach((x) => {
|
||||||
|
if (x.from.line > -1) {
|
||||||
|
this.props.updateLintMessage(x.severity, (x.from.line + 1), x.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (this.props.lintMessages.length > 0 && this.props.lintWarning) {
|
||||||
|
this.beep.play();
|
||||||
|
}
|
||||||
|
}, 2000);
|
||||||
|
}
|
||||||
|
|
||||||
getFileMode(fileName) {
|
getFileMode(fileName) {
|
||||||
let mode;
|
let mode;
|
||||||
if (fileName.match(/.+\.js$/i)) {
|
if (fileName.match(/.+\.js$/i)) {
|
||||||
|
@ -337,12 +346,15 @@ Editor.propTypes = {
|
||||||
collapseSidebar: PropTypes.func.isRequired,
|
collapseSidebar: PropTypes.func.isRequired,
|
||||||
expandSidebar: PropTypes.func.isRequired,
|
expandSidebar: PropTypes.func.isRequired,
|
||||||
isUserOwner: PropTypes.bool,
|
isUserOwner: PropTypes.bool,
|
||||||
clearConsole: PropTypes.func.isRequired
|
clearConsole: PropTypes.func.isRequired,
|
||||||
|
showRuntimeErrorWarning: PropTypes.func.isRequired,
|
||||||
|
hideRuntimeErrorWarning: PropTypes.func.isRequired,
|
||||||
|
runtimeErrorWarningVisible: PropTypes.bool.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
Editor.defaultProps = {
|
Editor.defaultProps = {
|
||||||
isUserOwner: false,
|
isUserOwner: false,
|
||||||
consoleEvents: []
|
consoleEvents: [],
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Editor;
|
export default Editor;
|
||||||
|
|
|
@ -342,6 +342,9 @@ class IDEView extends React.Component {
|
||||||
isUserOwner={this.isUserOwner()}
|
isUserOwner={this.isUserOwner()}
|
||||||
clearConsole={this.props.clearConsole}
|
clearConsole={this.props.clearConsole}
|
||||||
consoleEvents={this.props.console}
|
consoleEvents={this.props.console}
|
||||||
|
showRuntimeErrorWarning={this.props.showRuntimeErrorWarning}
|
||||||
|
hideRuntimeErrorWarning={this.props.hideRuntimeErrorWarning}
|
||||||
|
runtimeErrorWarningVisible={this.props.ide.runtimeErrorWarningVisible}
|
||||||
/>
|
/>
|
||||||
<Console
|
<Console
|
||||||
consoleEvents={this.props.console}
|
consoleEvents={this.props.console}
|
||||||
|
@ -570,7 +573,8 @@ IDEView.propTypes = {
|
||||||
previousPath: PropTypes.string.isRequired,
|
previousPath: PropTypes.string.isRequired,
|
||||||
justOpenedProject: PropTypes.bool.isRequired,
|
justOpenedProject: PropTypes.bool.isRequired,
|
||||||
errorType: PropTypes.string,
|
errorType: PropTypes.string,
|
||||||
helpType: PropTypes.string
|
helpType: PropTypes.string,
|
||||||
|
runtimeErrorWarningVisible: PropTypes.bool.isRequired,
|
||||||
}).isRequired,
|
}).isRequired,
|
||||||
stopSketch: PropTypes.func.isRequired,
|
stopSketch: PropTypes.func.isRequired,
|
||||||
startAccessibleOutput: PropTypes.func.isRequired,
|
startAccessibleOutput: PropTypes.func.isRequired,
|
||||||
|
@ -688,7 +692,9 @@ IDEView.propTypes = {
|
||||||
clearPersistedState: PropTypes.func.isRequired,
|
clearPersistedState: PropTypes.func.isRequired,
|
||||||
persistState: PropTypes.func.isRequired,
|
persistState: PropTypes.func.isRequired,
|
||||||
showHelpModal: PropTypes.func.isRequired,
|
showHelpModal: PropTypes.func.isRequired,
|
||||||
hideHelpModal: PropTypes.func.isRequired
|
hideHelpModal: PropTypes.func.isRequired,
|
||||||
|
showRuntimeErrorWarning: PropTypes.func.isRequired,
|
||||||
|
hideRuntimeErrorWarning: PropTypes.func.isRequired
|
||||||
};
|
};
|
||||||
|
|
||||||
function mapStateToProps(state) {
|
function mapStateToProps(state) {
|
||||||
|
|
|
@ -18,7 +18,8 @@ const initialState = {
|
||||||
infiniteLoopMessage: '',
|
infiniteLoopMessage: '',
|
||||||
justOpenedProject: false,
|
justOpenedProject: false,
|
||||||
previousPath: '/',
|
previousPath: '/',
|
||||||
errorType: undefined
|
errorType: undefined,
|
||||||
|
runtimeErrorWarningVisible: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
const ide = (state = initialState, action) => {
|
const ide = (state = initialState, action) => {
|
||||||
|
@ -95,6 +96,10 @@ const ide = (state = initialState, action) => {
|
||||||
return Object.assign({}, state, { helpType: action.helpType });
|
return Object.assign({}, state, { helpType: action.helpType });
|
||||||
case ActionTypes.HIDE_HELP_MODAL:
|
case ActionTypes.HIDE_HELP_MODAL:
|
||||||
return Object.assign({}, state, { helpType: undefined });
|
return Object.assign({}, state, { helpType: undefined });
|
||||||
|
case ActionTypes.HIDE_RUNTIME_ERROR_WARNING:
|
||||||
|
return Object.assign({}, state, { runtimeErrorWarningVisible: false });
|
||||||
|
case ActionTypes.SHOW_RUNTIME_ERROR_WARNING:
|
||||||
|
return Object.assign({}, state, { runtimeErrorWarningVisible: true });
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue