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

375 lines
12 KiB
React
Raw Normal View History

import PropTypes from 'prop-types';
import React from 'react';
2016-06-24 00:29:55 +02:00
import CodeMirror from 'codemirror';
2016-09-07 21:05:25 +02:00
import beautifyJS from 'js-beautify';
import 'codemirror/mode/css/css';
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';
2017-07-17 22:07:59 +02:00
import 'codemirror/addon/fold/brace-fold';
import 'codemirror/addon/fold/comment-fold';
import 'codemirror/addon/fold/foldcode';
import 'codemirror/addon/fold/foldgutter';
import 'codemirror/addon/fold/indent-fold';
import 'codemirror/addon/comment/comment';
import 'codemirror/keymap/sublime';
import 'codemirror/addon/search/searchcursor';
import 'codemirror/addon/search/matchesonscrollbar';
import 'codemirror/addon/search/match-highlighter';
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';
import { CSSLint } from 'csslint';
import { HTMLHint } from 'htmlhint';
2016-09-07 22:33:01 +02:00
import InlineSVG from 'react-inlinesvg';
import classNames from 'classnames';
2016-10-19 19:29:02 +02:00
import { debounce } from 'lodash';
import '../../../utils/htmlmixed';
import '../../../utils/p5-javascript';
import Timer from '../components/Timer';
import EditorAccessibility from '../components/EditorAccessibility';
import {
metaKey,
} from '../../../utils/metaKey';
import search from '../../../utils/codemirror-search';
search(CodeMirror);
const beautifyCSS = beautifyJS.css;
const beautifyHTML = beautifyJS.html;
window.JSHINT = JSHINT;
window.CSSLint = CSSLint;
window.HTMLHint = HTMLHint;
2016-06-24 00:29:55 +02:00
const beepUrl = require('../../../sounds/audioAlert.mp3');
const unsavedChangesDotUrl = require('../../../images/unsaved-changes-dot.svg');
const rightArrowUrl = require('../../../images/right-arrow.svg');
const leftArrowUrl = require('../../../images/left-arrow.svg');
2016-06-24 00:29:55 +02:00
class Editor extends React.Component {
2016-09-07 22:41:56 +02:00
constructor(props) {
super(props);
this.tidyCode = this.tidyCode.bind(this);
2017-07-26 21:17:05 +02:00
this.updateLintingMessageAccessibility = 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);
2017-09-01 18:40:15 +02:00
this.showFind = this.showFind.bind(this);
this.findNext = this.findNext.bind(this);
this.findPrev = this.findPrev.bind(this);
2016-09-07 22:41:56 +02:00
}
2017-10-12 21:38:02 +02:00
2016-06-24 00:29:55 +02:00
componentDidMount() {
this.beep = new Audio(beepUrl);
this.widgets = [];
this._cm = CodeMirror(this.codemirrorContainer, { // eslint-disable-line
2016-09-20 17:51:09 +02:00
theme: `p5-${this.props.theme}`,
2016-06-24 00:29:55 +02:00
lineNumbers: true,
styleActiveLine: true,
2016-07-13 17:59:47 +02:00
inputStyle: 'contenteditable',
2016-10-05 18:26:49 +02:00
lineWrapping: false,
fixedGutter: false,
2017-07-17 22:07:59 +02:00
foldGutter: true,
foldOptions: { widget: '\u2026' },
2017-10-12 22:19:18 +02:00
gutters: ['CodeMirror-foldgutter', 'CodeMirror-lint-markers'],
2016-08-05 22:58:59 +02:00
keyMap: 'sublime',
highlightSelectionMatches: true, // highlight current search match
2016-08-05 22:58:59 +02:00
lint: {
2017-07-26 21:17:05 +02:00
onUpdateLinting: ((annotations) => {
this.props.hideRuntimeErrorWarning();
this.updateLintingMessageAccessibility(annotations);
}),
options: {
'asi': true,
'eqeqeq': false,
2017-09-14 20:32:43 +02:00
'-W041': false,
'esversion': 6
}
2016-08-05 22:58:59 +02:00
}
2016-06-24 00:29:55 +02:00
});
this._cm.setOption('extraKeys', {
[`${metaKey}-Enter`]: () => null,
[`Shift-${metaKey}-Enter`]: () => null,
[`${metaKey}-F`]: 'findPersistent',
[`${metaKey}-G`]: 'findNext',
[`Shift-${metaKey}-G`]: 'findPrev',
});
2016-12-07 03:33:12 +01:00
this.initializeDocuments(this.props.files);
this._cm.swapDoc(this._docs[this.props.file.id]);
2016-10-19 19:29:02 +02:00
this._cm.on('change', debounce(() => {
this.props.setUnsavedChanges(true);
this.props.updateFileContent(this.props.file.name, this._cm.getValue());
if (this.props.autorefresh && this.props.isPlaying) {
this.props.startRefreshSketch();
this.props.clearConsole();
}
2016-10-19 19:29:02 +02:00
}, 400));
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
});
this._cm.on('keydown', (_cm, e) => {
2016-10-20 00:35:59 +02:00
// 9 === Tab
if (e.keyCode === 9 && e.shiftKey) {
2016-09-07 22:41:56 +02:00
this.tidyCode();
}
});
this._cm.getWrapperElement().style['font-size'] = `${this.props.fontSize}px`;
this._cm.setOption('indentWithTabs', this.props.isTabIndent);
this._cm.setOption('tabSize', this.props.indentationAmount);
2017-09-01 18:40:15 +02:00
this.props.provideController({
tidyCode: this.tidyCode,
showFind: this.showFind,
findNext: this.findNext,
findPrev: this.findPrev
2017-09-01 18:40:15 +02:00
});
2016-06-24 00:29:55 +02:00
}
2016-12-07 03:33:12 +01:00
componentWillUpdate(nextProps) {
// check if files have changed
if (this.props.files[0].id !== nextProps.files[0].id) {
// then need to make CodeMirror documents
this.initializeDocuments(nextProps.files);
}
if (this.props.files.length !== nextProps.files.length) {
this.initializeDocuments(nextProps.files);
}
2016-12-07 03:33:12 +01:00
}
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()) {
2016-12-07 03:33:12 +01:00
const oldDoc = this._cm.swapDoc(this._docs[this.props.file.id]);
this._docs[prevProps.file.id] = oldDoc;
this._cm.focus();
2016-11-08 19:30:41 +01:00
if (!prevProps.unsavedChanges) {
setTimeout(() => this.props.setUnsavedChanges(false), 400);
}
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);
}
2016-09-20 17:51:09 +02:00
if (this.props.theme !== prevProps.theme) {
this._cm.setOption('theme', `p5-${this.props.theme}`);
}
if (prevProps.consoleEvents !== this.props.consoleEvents) {
this.props.showRuntimeErrorWarning();
}
2017-07-17 23:27:21 +02:00
for (let i = 0; i < 1000; i += 1) {
this._cm.removeLineClass(i, 'background', 'line-runtime-error');
}
if (this.props.runtimeErrorWarningVisible) {
this.props.consoleEvents.forEach((consoleEvent) => {
if (consoleEvent.method === 'error') {
2018-02-08 23:40:21 +01:00
if (consoleEvent.arguments.indexOf(')') > -1) {
const n = consoleEvent.arguments.replace(')', '').split(' ');
const lineNumber = parseInt(n[n.length - 1], 10) - 1;
this._cm.addLineClass(lineNumber, 'background', 'line-runtime-error');
}
}
});
}
2016-06-24 00:29:55 +02:00
}
componentWillUnmount() {
this._cm = null;
2017-09-01 18:40:15 +02:00
this.props.provideController(null);
2016-06-24 00:29:55 +02:00
}
2016-12-07 03:33:12 +01:00
getFileMode(fileName) {
let mode;
if (fileName.match(/.+\.js$/i)) {
mode = 'javascript';
2016-12-07 03:33:12 +01:00
} else if (fileName.match(/.+\.css$/i)) {
mode = 'css';
} else if (fileName.match(/.+\.html$/i)) {
mode = 'htmlmixed';
} else if (fileName.match(/.+\.json$/i)) {
mode = 'application/json';
} else {
mode = 'text/plain';
}
return mode;
}
initializeDocuments(files) {
this._docs = {};
files.forEach((file) => {
if (file.name !== 'root') {
2016-12-07 03:33:12 +01:00
this._docs[file.id] = CodeMirror.Doc(file.content, this.getFileMode(file.name)); // eslint-disable-line
}
});
}
2016-09-07 22:41:56 +02:00
tidyCode() {
const beautifyOptions = {
indent_size: this.props.indentationAmount,
indent_with_tabs: this.props.isTabIndent
};
const mode = this._cm.getOption('mode');
if (mode === 'javascript') {
this._cm.doc.setValue(beautifyJS(this._cm.doc.getValue(), beautifyOptions));
} else if (mode === 'css') {
this._cm.doc.setValue(beautifyCSS(this._cm.doc.getValue(), beautifyOptions));
} else if (mode === 'htmlmixed') {
this._cm.doc.setValue(beautifyHTML(this._cm.doc.getValue(), beautifyOptions));
}
}
2017-09-01 18:40:15 +02:00
showFind() {
this._cm.execCommand('findPersistent');
}
findNext() {
this._cm.focus();
this._cm.execCommand('findNext');
}
findPrev() {
this._cm.focus();
this._cm.execCommand('findPrev');
2017-09-01 18:40:15 +02:00
}
toggleEditorOptions() {
if (this.props.editorOptionsVisible) {
this.props.closeEditorOptions();
} else {
this.optionsButton.focus();
this.props.showEditorOptions();
}
}
2016-06-24 00:29:55 +02:00
_cm: CodeMirror.Editor
render() {
2016-09-07 22:33:01 +02:00
const editorSectionClass = classNames({
'editor': true,
'sidebar--contracted': !this.props.isExpanded,
2016-09-07 22:33:01 +02:00
'editor--options': this.props.editorOptionsVisible
});
2016-08-05 22:58:59 +02:00
return (
<section
title="code editor"
role="main"
2016-09-07 22:33:01 +02:00
className={editorSectionClass}
>
2017-01-05 20:40:04 +01:00
<header className="editor__header">
<button
aria-label="collapse file navigation"
className="sidebar__contract"
onClick={this.props.collapseSidebar}
>
<InlineSVG src={leftArrowUrl} />
</button>
<button
aria-label="expand file navigation"
className="sidebar__expand"
onClick={this.props.expandSidebar}
>
<InlineSVG src={rightArrowUrl} />
</button>
<div className="editor__file-name">
<span>
{this.props.file.name}
{this.props.unsavedChanges ? <InlineSVG src={unsavedChangesDotUrl} /> : null}
</span>
2017-01-05 20:40:04 +01:00
<Timer
projectSavedTime={this.props.projectSavedTime}
isUserOwner={this.props.isUserOwner}
2017-01-05 20:40:04 +01:00
/>
</div>
</header>
<div ref={(element) => { this.codemirrorContainer = element; }} className="editor-holder" tabIndex="0">
</div>
<EditorAccessibility
lintMessages={this.props.lintMessages}
/>
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,
lintMessages: PropTypes.arrayOf(PropTypes.shape({
severity: PropTypes.string.isRequired,
line: PropTypes.number.isRequired,
message: PropTypes.string.isRequired,
id: PropTypes.number.isRequired
})).isRequired,
2017-07-17 23:27:21 +02:00
consoleEvents: PropTypes.arrayOf(PropTypes.shape({
method: PropTypes.string.isRequired,
args: PropTypes.arrayOf(PropTypes.string)
})),
2016-08-11 19:24:02 +02:00
updateLintMessage: PropTypes.func.isRequired,
clearLintMessage: 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,
2016-12-07 03:33:12 +01:00
content: PropTypes.string.isRequired,
id: PropTypes.string.isRequired
}).isRequired,
2016-09-07 22:33:01 +02:00
editorOptionsVisible: PropTypes.bool.isRequired,
showEditorOptions: PropTypes.func.isRequired,
2016-09-07 23:47:22 +02:00
closeEditorOptions: PropTypes.func.isRequired,
2016-09-20 17:51:09 +02:00
setUnsavedChanges: PropTypes.func.isRequired,
startRefreshSketch: PropTypes.func.isRequired,
autorefresh: PropTypes.bool.isRequired,
isPlaying: PropTypes.bool.isRequired,
theme: PropTypes.string.isRequired,
unsavedChanges: PropTypes.bool.isRequired,
2016-12-07 03:33:12 +01:00
projectSavedTime: PropTypes.string.isRequired,
files: PropTypes.arrayOf(PropTypes.shape({
id: PropTypes.string.isRequired,
name: PropTypes.string.isRequired,
content: PropTypes.string.isRequired
})).isRequired,
isExpanded: PropTypes.bool.isRequired,
collapseSidebar: PropTypes.func.isRequired,
expandSidebar: PropTypes.func.isRequired,
isUserOwner: PropTypes.bool,
clearConsole: PropTypes.func.isRequired,
showRuntimeErrorWarning: PropTypes.func.isRequired,
hideRuntimeErrorWarning: PropTypes.func.isRequired,
runtimeErrorWarningVisible: PropTypes.bool.isRequired,
2017-09-01 18:40:15 +02:00
provideController: PropTypes.func.isRequired
2016-06-27 22:03:22 +02:00
};
Editor.defaultProps = {
2017-07-17 23:27:21 +02:00
isUserOwner: false,
consoleEvents: [],
};
2016-06-24 00:29:55 +02:00
export default Editor;