p5.js-web-editor/client/modules/IDE/components/Editor.js

145 lines
4.9 KiB
JavaScript
Raw Normal View History

2016-06-27 22:03:22 +02:00
import React, { PropTypes } from 'react';
import EditorAccessibility from '../components/EditorAccessibility';
2016-06-24 00:29:55 +02:00
import CodeMirror from 'codemirror';
import beautify from 'js-beautify';
2016-06-24 00:29:55 +02:00
import 'codemirror/mode/javascript/javascript';
import 'codemirror/mode/css/css';
import 'codemirror/mode/htmlmixed/htmlmixed';
2016-06-24 00:29:55 +02:00
import 'codemirror/addon/selection/active-line';
2016-07-12 23:38:24 +02:00
import 'codemirror/addon/lint/lint';
import 'codemirror/addon/lint/javascript-lint';
import 'codemirror/addon/lint/css-lint';
import 'codemirror/addon/lint/html-lint';
import 'codemirror/addon/comment/comment';
import 'codemirror/keymap/sublime';
2016-08-05 22:58:59 +02:00
import 'codemirror/addon/search/jump-to-line';
2016-07-12 23:38:24 +02:00
import { JSHINT } from 'jshint';
window.JSHINT = JSHINT;
import { CSSLint } from 'csslint';
window.CSSLint = CSSLint;
import { HTMLHint } from 'htmlhint';
window.HTMLHint = HTMLHint;
const beepUrl = require('../../../sounds/audioAlert.mp3');
2016-06-24 00:29:55 +02:00
2016-07-14 03:50:59 +02:00
import { debounce } from 'throttle-debounce';
2016-06-24 00:29:55 +02:00
class Editor extends React.Component {
componentDidMount() {
this.beep = new Audio(beepUrl);
2016-06-24 00:29:55 +02:00
this._cm = CodeMirror(this.refs.container, { // eslint-disable-line
theme: 'p5-widget',
value: this.props.file.content,
2016-06-24 00:29:55 +02:00
lineNumbers: true,
styleActiveLine: true,
2016-07-13 17:59:47 +02:00
inputStyle: 'contenteditable',
2016-07-12 21:58:11 +02:00
mode: 'javascript',
2016-07-12 23:38:24 +02:00
lineWrapping: true,
gutters: ['CodeMirror-lint-markers'],
2016-08-05 22:58:59 +02:00
keyMap: 'sublime',
lint: {
2016-08-08 19:49:45 +02:00
onUpdateLinting: debounce(2000, (annotations) => {
2016-08-11 19:24:02 +02:00
this.props.clearLintMessage();
2016-08-06 05:08:44 +02:00
annotations.forEach((x) => {
if (x.from.line > -1) {
2016-08-11 19:24:02 +02:00
this.props.updateLintMessage(x.severity, (x.from.line + 1), x.message);
2016-08-06 05:08:44 +02:00
}
});
2016-08-11 20:09:59 +02:00
if (this.props.lintMessages.length > 0 && this.props.lintWarning) {
2016-08-06 05:08:44 +02:00
this.beep.play();
}
2016-08-08 19:49:45 +02:00
})
2016-08-05 22:58:59 +02:00
}
2016-06-24 00:29:55 +02:00
});
2016-07-14 03:50:59 +02:00
this._cm.on('change', debounce(200, () => {
this.props.updateFileContent(this.props.file.name, this._cm.getValue());
2016-07-14 03:50:59 +02:00
}));
2016-08-05 22:58:59 +02:00
this._cm.on('keyup', () => {
2016-08-25 18:32:06 +02:00
const temp = `line ${parseInt((this._cm.getCursor().line) + 1, 10)}`;
document.getElementById('current-line').innerHTML = temp;
2016-08-05 22:58:59 +02:00
});
2016-07-14 03:50:59 +02:00
// this._cm.on('change', () => { // eslint-disable-line
// // this.props.updateFileContent('sketch.js', this._cm.getValue());
// throttle(1000, () => console.log('debounce is working!'));
// this.props.updateFileContent(this.props.file.name, this._cm.getValue());
// });
2016-06-24 00:29:55 +02:00
this._cm.getWrapperElement().style['font-size'] = `${this.props.fontSize}px`;
2016-07-11 05:11:06 +02:00
this._cm.setOption('indentWithTabs', this.props.isTabIndent);
2016-07-11 15:00:44 +02:00
this._cm.setOption('tabSize', this.props.indentationAmount);
this._cm.on('keydown', (_cm, e) => {
if (e.key === 'Tab' && e.shiftKey) {
_cm.doc.setValue(beautify(_cm.doc.getValue(),
{ indent_size: this.props.indentationAmount,
indent_with_tabs: this.props.isTabIndent }));
}
});
2016-06-24 00:29:55 +02:00
}
componentDidUpdate(prevProps) {
if (this.props.file.content !== prevProps.file.content &&
this.props.file.content !== this._cm.getValue()) {
this._cm.setValue(this.props.file.content); // eslint-disable-line no-underscore-dangle
2016-06-24 00:29:55 +02:00
}
if (this.props.fontSize !== prevProps.fontSize) {
this._cm.getWrapperElement().style['font-size'] = `${this.props.fontSize}px`;
}
2016-07-06 17:27:39 +02:00
if (this.props.indentationAmount !== prevProps.indentationAmount) {
this._cm.setOption('tabSize', this.props.indentationAmount);
}
2016-07-11 05:11:06 +02:00
if (this.props.isTabIndent !== prevProps.isTabIndent) {
this._cm.setOption('indentWithTabs', this.props.isTabIndent);
}
if (this.props.file.name !== prevProps.name) {
if (this.props.file.name.match(/.+\.js$/)) {
this._cm.setOption('mode', 'javascript');
} else if (this.props.file.name.match(/.+\.css$/)) {
this._cm.setOption('mode', 'css');
} else if (this.props.file.name.match(/.+\.html$/)) {
this._cm.setOption('mode', 'htmlmixed');
}
}
2016-06-24 00:29:55 +02:00
}
componentWillUnmount() {
this._cm = null;
}
_cm: CodeMirror.Editor
render() {
2016-08-05 22:58:59 +02:00
return (
<section
title="code editor"
role="main"
>
2016-08-12 20:19:23 +02:00
<div ref="container" className="editor-holder" tabIndex="0">
</div>
<EditorAccessibility
lintMessages={this.props.lintMessages}
2016-08-12 20:23:34 +02:00
lineNumber={this.props.lineNumber}
/>
2016-08-12 20:19:23 +02:00
</section>
2016-08-05 22:58:59 +02:00
);
2016-06-24 00:29:55 +02:00
}
}
2016-06-27 22:03:22 +02:00
Editor.propTypes = {
2016-08-11 20:09:59 +02:00
lintWarning: PropTypes.bool.isRequired,
2016-08-12 20:23:34 +02:00
lineNumber: PropTypes.string.isRequired,
2016-08-11 19:24:02 +02:00
lintMessages: PropTypes.array.isRequired,
updateLintMessage: PropTypes.func.isRequired,
clearLintMessage: PropTypes.func.isRequired,
updateLineNumber: PropTypes.func.isRequired,
2016-07-11 04:52:48 +02:00
indentationAmount: PropTypes.number.isRequired,
2016-07-12 05:40:30 +02:00
isTabIndent: PropTypes.bool.isRequired,
updateFileContent: PropTypes.func.isRequired,
fontSize: PropTypes.number.isRequired,
file: PropTypes.shape({
name: PropTypes.string.isRequired,
content: PropTypes.string.isRequired
2016-07-12 05:40:30 +02:00
})
2016-06-27 22:03:22 +02:00
};
2016-06-24 00:29:55 +02:00
export default Editor;