2017-02-28 21:32:23 +00:00
|
|
|
import React, {PureComponent, PropTypes} from 'react';
|
2016-03-16 20:02:47 +00:00
|
|
|
import {getDOMNode} from 'react-dom';
|
|
|
|
import CodeMirror from 'codemirror';
|
2016-07-19 22:28:29 +00:00
|
|
|
import classnames from 'classnames';
|
2017-02-01 03:01:27 +00:00
|
|
|
import jq from 'jsonpath';
|
2016-09-15 03:46:23 +00:00
|
|
|
import vkBeautify from 'vkbeautify';
|
2016-09-13 21:18:22 +00:00
|
|
|
import {DOMParser} from 'xmldom';
|
|
|
|
import xpath from 'xpath';
|
2016-08-31 05:37:21 +00:00
|
|
|
import 'codemirror/mode/css/css';
|
|
|
|
import 'codemirror/mode/htmlmixed/htmlmixed';
|
|
|
|
import 'codemirror/mode/javascript/javascript';
|
|
|
|
import 'codemirror/mode/go/go';
|
|
|
|
import 'codemirror/mode/shell/shell';
|
|
|
|
import 'codemirror/mode/clike/clike';
|
|
|
|
import 'codemirror/mode/mllike/mllike';
|
|
|
|
import 'codemirror/mode/php/php';
|
2016-11-10 07:34:26 +00:00
|
|
|
import 'codemirror/mode/markdown/markdown';
|
2016-08-31 05:37:21 +00:00
|
|
|
import 'codemirror/mode/python/python';
|
|
|
|
import 'codemirror/mode/ruby/ruby';
|
|
|
|
import 'codemirror/mode/swift/swift';
|
|
|
|
import 'codemirror/lib/codemirror.css';
|
2017-03-01 21:15:56 +00:00
|
|
|
import 'codemirror/addon/display/autorefresh';
|
2016-08-31 05:37:21 +00:00
|
|
|
import 'codemirror/addon/dialog/dialog';
|
|
|
|
import 'codemirror/addon/dialog/dialog.css';
|
|
|
|
import 'codemirror/addon/fold/foldcode';
|
2017-02-27 21:00:13 +00:00
|
|
|
import 'codemirror/addon/fold/foldgutter';
|
|
|
|
import 'codemirror/addon/fold/foldgutter.css';
|
2016-08-31 05:37:21 +00:00
|
|
|
import 'codemirror/addon/fold/brace-fold';
|
|
|
|
import 'codemirror/addon/fold/comment-fold';
|
|
|
|
import 'codemirror/addon/fold/indent-fold';
|
|
|
|
import 'codemirror/addon/fold/xml-fold';
|
|
|
|
import 'codemirror/addon/search/search';
|
|
|
|
import 'codemirror/addon/search/searchcursor';
|
|
|
|
import 'codemirror/addon/edit/matchbrackets';
|
2016-12-22 07:24:28 +00:00
|
|
|
import 'codemirror/addon/edit/closebrackets';
|
2016-08-31 05:37:21 +00:00
|
|
|
import 'codemirror/addon/search/matchesonscrollbar';
|
|
|
|
import 'codemirror/addon/search/matchesonscrollbar.css';
|
2017-02-27 21:00:13 +00:00
|
|
|
import 'codemirror/addon/selection/active-line';
|
|
|
|
import 'codemirror/addon/selection/selection-pointer';
|
2016-08-31 05:37:21 +00:00
|
|
|
import 'codemirror/addon/display/placeholder';
|
|
|
|
import 'codemirror/addon/lint/lint';
|
|
|
|
import 'codemirror/addon/lint/json-lint';
|
|
|
|
import 'codemirror/addon/lint/lint.css';
|
2017-01-24 22:18:11 +00:00
|
|
|
import 'codemirror/keymap/vim';
|
|
|
|
import 'codemirror/keymap/emacs';
|
|
|
|
import 'codemirror/keymap/sublime';
|
2017-02-27 21:00:13 +00:00
|
|
|
import './modes/nunjucks';
|
|
|
|
import './extensions/clickable';
|
|
|
|
import './extensions/nunjucks-tags';
|
2016-08-31 05:37:21 +00:00
|
|
|
import '../../css/components/editor.less';
|
2016-11-07 20:24:38 +00:00
|
|
|
import {showModal} from '../modals/index';
|
2016-09-08 22:33:03 +00:00
|
|
|
import AlertModal from '../modals/AlertModal';
|
|
|
|
import Link from '../base/Link';
|
2016-11-10 21:03:12 +00:00
|
|
|
import * as misc from '../../../common/misc';
|
2016-11-23 19:33:24 +00:00
|
|
|
import {trackEvent} from '../../../analytics/index';
|
2017-02-27 21:00:13 +00:00
|
|
|
|
2017-01-27 01:00:27 +00:00
|
|
|
// Make jsonlint available to the jsonlint plugin
|
|
|
|
import {parser as jsonlint} from 'jsonlint';
|
2017-02-07 17:13:59 +00:00
|
|
|
import {prettifyJson} from '../../../common/prettify';
|
2017-02-27 21:00:13 +00:00
|
|
|
import {DEBOUNCE_MILLIS} from '../../../common/constants';
|
2017-01-27 01:00:27 +00:00
|
|
|
global.jsonlint = jsonlint;
|
2016-07-06 20:18:26 +00:00
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
const TAB_KEY = 9;
|
2016-03-16 20:02:47 +00:00
|
|
|
|
2016-03-20 20:42:27 +00:00
|
|
|
const BASE_CODEMIRROR_OPTIONS = {
|
|
|
|
lineNumbers: true,
|
2016-03-23 18:34:39 +00:00
|
|
|
placeholder: 'Start Typing...',
|
2016-03-20 20:42:27 +00:00
|
|
|
foldGutter: true,
|
2016-03-23 05:58:16 +00:00
|
|
|
height: 'auto',
|
2017-03-01 21:15:56 +00:00
|
|
|
autoRefresh: 1000,
|
2016-06-20 06:31:32 +00:00
|
|
|
lineWrapping: true,
|
2017-02-27 21:00:13 +00:00
|
|
|
scrollbarStyle: 'native',
|
2016-06-18 22:57:23 +00:00
|
|
|
lint: true,
|
2016-04-15 02:13:49 +00:00
|
|
|
tabSize: 4,
|
2016-07-29 20:37:23 +00:00
|
|
|
matchBrackets: true,
|
2016-12-22 07:24:28 +00:00
|
|
|
autoCloseBrackets: true,
|
2016-06-18 22:57:23 +00:00
|
|
|
indentUnit: 4,
|
2017-02-27 21:00:13 +00:00
|
|
|
dragDrop: true,
|
|
|
|
viewportMargin: 30, // default 10
|
|
|
|
selectionPointer: 'default',
|
|
|
|
styleActiveLine: true,
|
2016-07-14 22:48:56 +00:00
|
|
|
indentWithTabs: true,
|
2017-02-27 21:00:13 +00:00
|
|
|
showCursorWhenSelecting: true,
|
|
|
|
cursorScrollMargin: 12, // NOTE: This is px
|
2017-01-24 22:18:11 +00:00
|
|
|
keyMap: 'default',
|
2016-03-20 20:42:27 +00:00
|
|
|
extraKeys: {
|
2016-09-13 02:09:35 +00:00
|
|
|
'Ctrl-Q': function (cm) {
|
2016-03-20 20:42:27 +00:00
|
|
|
cm.foldCode(cm.getCursor());
|
|
|
|
}
|
2016-03-21 05:47:49 +00:00
|
|
|
}
|
2016-03-20 20:42:27 +00:00
|
|
|
};
|
|
|
|
|
2017-02-28 21:32:23 +00:00
|
|
|
class Editor extends PureComponent {
|
2016-09-09 00:32:36 +00:00
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
2016-09-08 22:04:25 +00:00
|
|
|
this.state = {
|
2016-09-09 00:32:36 +00:00
|
|
|
filter: props.filter || ''
|
2016-09-08 22:04:25 +00:00
|
|
|
};
|
|
|
|
this._originalCode = '';
|
2016-03-16 20:02:47 +00:00
|
|
|
}
|
|
|
|
|
2016-07-14 22:48:56 +00:00
|
|
|
componentWillUnmount () {
|
2016-03-16 20:02:47 +00:00
|
|
|
if (this.codeMirror) {
|
|
|
|
this.codeMirror.toTextArea();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:15:56 +00:00
|
|
|
componentDidUpdate () {
|
|
|
|
this._codemirrorSetOptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
shouldComponentUpdate (nextProps) {
|
|
|
|
// Update if any properties changed, except value. We ignore value.
|
|
|
|
|
|
|
|
for (const key of Object.keys(nextProps)) {
|
|
|
|
if (key === 'defaultValue') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.props[key] !== nextProps[key]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
selectAll () {
|
|
|
|
if (this.codeMirror) {
|
|
|
|
this.codeMirror.setSelection(
|
|
|
|
{line: 0, ch: 0},
|
|
|
|
{line: this.codeMirror.lineCount(), ch: 0}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-14 22:48:56 +00:00
|
|
|
focus () {
|
2016-03-16 20:02:47 +00:00
|
|
|
if (this.codeMirror) {
|
|
|
|
this.codeMirror.focus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:15:56 +00:00
|
|
|
setCursor (ch, line = 0) {
|
|
|
|
if (this.codeMirror) {
|
|
|
|
if (!this.hasFocus()) {
|
|
|
|
this.focus();
|
|
|
|
}
|
|
|
|
this.codeMirror.setCursor({line, ch});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setSelection (chStart, chEnd, line = 0) {
|
|
|
|
if (this.codeMirror) {
|
|
|
|
if (!this.hasFocus()) {
|
|
|
|
this.focus();
|
|
|
|
}
|
|
|
|
this.codeMirror.setSelection(
|
|
|
|
{line, ch: chStart},
|
|
|
|
{line, ch: chEnd}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
focusEnd () {
|
2016-08-15 17:04:36 +00:00
|
|
|
if (this.codeMirror) {
|
2017-03-01 21:15:56 +00:00
|
|
|
if (!this.hasFocus()) {
|
|
|
|
this.focus();
|
|
|
|
}
|
2017-02-27 21:00:13 +00:00
|
|
|
const doc = this.codeMirror.getDoc();
|
|
|
|
doc.setCursor(doc.lineCount(), 0);
|
2016-08-15 17:04:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 03:09:04 +00:00
|
|
|
hasFocus () {
|
|
|
|
if (this.codeMirror) {
|
|
|
|
return this.codeMirror.hasFocus();
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-15 17:04:36 +00:00
|
|
|
getValue () {
|
2017-03-01 21:15:56 +00:00
|
|
|
if (this.codeMirror) {
|
|
|
|
return this.codeMirror.getValue();
|
|
|
|
} else {
|
|
|
|
return '';
|
|
|
|
}
|
2016-08-15 17:04:36 +00:00
|
|
|
}
|
|
|
|
|
2016-11-29 21:28:22 +00:00
|
|
|
_handleInitTextarea = textarea => {
|
2016-08-31 05:37:21 +00:00
|
|
|
if (!textarea) {
|
|
|
|
// Not mounted
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.codeMirror) {
|
|
|
|
// Already initialized
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:15:56 +00:00
|
|
|
const {defaultValue, debounceMillis: ms} = this.props;
|
2017-02-27 21:00:13 +00:00
|
|
|
this.codeMirror = CodeMirror.fromTextArea(textarea, BASE_CODEMIRROR_OPTIONS);
|
2016-08-31 05:37:21 +00:00
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
// Set default listeners
|
2017-02-28 21:32:23 +00:00
|
|
|
const debounceMillis = typeof ms === 'number' ? ms : DEBOUNCE_MILLIS;
|
|
|
|
this.codeMirror.on('changes', misc.debounce(this._codemirrorValueChanged, debounceMillis));
|
2017-02-27 21:00:13 +00:00
|
|
|
this.codeMirror.on('beforeChange', this._codemirrorValueBeforeChange);
|
|
|
|
this.codeMirror.on('keydown', this._codemirrorKeyDown);
|
|
|
|
this.codeMirror.on('focus', this._codemirrorFocus);
|
|
|
|
this.codeMirror.on('blur', this._codemirrorBlur);
|
|
|
|
this.codeMirror.on('paste', this._codemirrorValueChanged);
|
|
|
|
|
2017-03-01 21:15:56 +00:00
|
|
|
// this.codeMirror.setCursor({line: -1, ch: -1});
|
|
|
|
|
2016-08-31 05:37:21 +00:00
|
|
|
if (!this.codeMirror.getOption('indentWithTabs')) {
|
|
|
|
this.codeMirror.setOption('extraKeys', {
|
|
|
|
Tab: cm => {
|
2017-02-08 00:31:48 +00:00
|
|
|
const spaces = Array(this.codeMirror.getOption('indentUnit') + 1).join(' ');
|
2016-08-31 05:37:21 +00:00
|
|
|
cm.replaceSelection(spaces);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-03-01 00:10:23 +00:00
|
|
|
// Set editor options
|
|
|
|
this._codemirrorSetOptions();
|
2017-02-28 21:32:23 +00:00
|
|
|
|
2017-03-01 21:15:56 +00:00
|
|
|
const setup = () => {
|
2017-02-28 21:32:23 +00:00
|
|
|
// Actually set the value
|
2017-03-01 21:15:56 +00:00
|
|
|
this._codemirrorSetValue(defaultValue || '');
|
2017-02-28 21:32:23 +00:00
|
|
|
|
|
|
|
// Setup nunjucks listeners
|
|
|
|
if (this.props.render) {
|
|
|
|
this.codeMirror.enableNunjucksTags(this.props.render);
|
|
|
|
}
|
2017-03-01 21:15:56 +00:00
|
|
|
};
|
2017-02-28 21:32:23 +00:00
|
|
|
|
2017-03-01 21:15:56 +00:00
|
|
|
// Do this a bit later for big values so we don't block the render process
|
|
|
|
if (defaultValue && defaultValue.length > 10000) {
|
|
|
|
setTimeout(setup, 100);
|
|
|
|
} else {
|
|
|
|
setup();
|
|
|
|
}
|
2017-02-08 00:31:48 +00:00
|
|
|
};
|
|
|
|
|
2016-09-08 22:04:25 +00:00
|
|
|
_isJSON (mode) {
|
|
|
|
if (!mode) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mode.indexOf('json') !== -1
|
|
|
|
}
|
|
|
|
|
2016-09-10 01:51:49 +00:00
|
|
|
_isXML (mode) {
|
|
|
|
if (!mode) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mode.indexOf('xml') !== -1
|
|
|
|
}
|
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
_handleBeautify = () => {
|
2016-11-23 19:33:24 +00:00
|
|
|
trackEvent('Request', 'Beautify');
|
2016-09-13 17:35:49 +00:00
|
|
|
this._prettify(this.codeMirror.getValue());
|
2017-02-27 21:00:13 +00:00
|
|
|
};
|
2016-09-13 17:35:49 +00:00
|
|
|
|
2017-02-07 17:13:59 +00:00
|
|
|
_prettify (code) {
|
2017-02-27 21:00:13 +00:00
|
|
|
this._codemirrorSetValue(code, true);
|
2016-09-13 17:29:09 +00:00
|
|
|
}
|
|
|
|
|
2017-02-07 17:13:59 +00:00
|
|
|
_prettifyJSON (code) {
|
2016-09-10 01:51:49 +00:00
|
|
|
try {
|
2017-02-07 17:13:59 +00:00
|
|
|
let jsonString = code;
|
2016-09-10 01:51:49 +00:00
|
|
|
|
|
|
|
if (this.props.updateFilter && this.state.filter) {
|
2017-02-07 17:13:59 +00:00
|
|
|
let obj = JSON.parse(code);
|
2017-02-01 03:01:27 +00:00
|
|
|
try {
|
2017-02-07 17:13:59 +00:00
|
|
|
jsonString = JSON.stringify(jq.query(obj, this.state.filter));
|
2017-02-01 03:01:27 +00:00
|
|
|
} catch (err) {
|
2017-02-07 17:13:59 +00:00
|
|
|
jsonString = '[]';
|
2017-02-01 03:01:27 +00:00
|
|
|
}
|
2016-09-10 01:51:49 +00:00
|
|
|
}
|
|
|
|
|
2017-02-07 17:13:59 +00:00
|
|
|
return prettifyJson(jsonString, '\t');
|
2016-09-10 01:51:49 +00:00
|
|
|
} catch (e) {
|
|
|
|
// That's Ok, just leave it
|
2016-10-02 20:57:00 +00:00
|
|
|
return code;
|
2016-09-10 01:51:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-07 17:13:59 +00:00
|
|
|
_prettifyXML (code) {
|
2016-09-13 21:18:22 +00:00
|
|
|
if (this.props.updateFilter && this.state.filter) {
|
|
|
|
try {
|
|
|
|
const dom = new DOMParser().parseFromString(code);
|
|
|
|
const nodes = xpath.select(this.state.filter, dom);
|
|
|
|
const inner = nodes.map(n => n.toString()).join('\n');
|
|
|
|
code = `<result>${inner}</result>`
|
|
|
|
} catch (e) {
|
|
|
|
// Failed to parse filter (that's ok)
|
|
|
|
code = `<result></result>`
|
|
|
|
}
|
|
|
|
}
|
2016-09-10 01:51:49 +00:00
|
|
|
|
2016-09-28 21:17:57 +00:00
|
|
|
try {
|
2016-10-02 20:57:00 +00:00
|
|
|
return vkBeautify.xml(code, '\t');
|
2016-09-28 21:17:57 +00:00
|
|
|
} catch (e) {
|
|
|
|
// Failed to parse so just return original
|
2016-10-02 20:57:00 +00:00
|
|
|
return code;
|
2016-09-28 21:17:57 +00:00
|
|
|
}
|
2016-09-10 01:51:49 +00:00
|
|
|
}
|
|
|
|
|
2016-03-20 20:42:27 +00:00
|
|
|
/**
|
2016-03-22 05:01:58 +00:00
|
|
|
* Sets options on the CodeMirror editor while also sanitizing them
|
2016-03-20 20:42:27 +00:00
|
|
|
*/
|
2017-02-28 21:32:23 +00:00
|
|
|
_codemirrorSetOptions = () => {
|
2017-02-27 21:00:13 +00:00
|
|
|
const {
|
|
|
|
mode: rawMode,
|
|
|
|
readOnly,
|
|
|
|
hideLineNumbers,
|
|
|
|
keyMap,
|
|
|
|
lineWrapping,
|
2017-02-28 21:32:23 +00:00
|
|
|
tabIndex,
|
2017-02-27 21:00:13 +00:00
|
|
|
placeholder,
|
|
|
|
noMatchBrackets,
|
2017-02-28 06:26:24 +00:00
|
|
|
noDragDrop,
|
2017-02-27 21:00:13 +00:00
|
|
|
hideScrollbars,
|
2017-03-01 21:15:56 +00:00
|
|
|
noStyleActiveLine,
|
|
|
|
noLint,
|
2017-02-27 21:00:13 +00:00
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
let mode;
|
|
|
|
if (this.props.readOnly) {
|
|
|
|
// Should probably have an actual prop for this, but let's not
|
|
|
|
// enable nunjucks on editors that the user can modify
|
|
|
|
mode = this._normalizeMode(rawMode);
|
|
|
|
} else {
|
|
|
|
mode = {name: 'nunjucks', baseMode: this._normalizeMode(rawMode)};
|
|
|
|
}
|
2017-02-08 00:31:48 +00:00
|
|
|
|
2016-04-29 01:00:12 +00:00
|
|
|
let options = {
|
2016-09-02 17:05:21 +00:00
|
|
|
readOnly,
|
2017-02-27 21:00:13 +00:00
|
|
|
placeholder: placeholder || '',
|
|
|
|
mode: mode,
|
2017-02-28 21:32:23 +00:00
|
|
|
tabIndex: typeof tabIndex === 'number' ? tabIndex : null,
|
2017-02-28 06:26:24 +00:00
|
|
|
dragDrop: !noDragDrop,
|
2017-02-27 21:00:13 +00:00
|
|
|
scrollbarStyle: hideScrollbars ? 'null' : 'native',
|
2017-03-01 21:15:56 +00:00
|
|
|
styleActiveLine: !noStyleActiveLine,
|
2017-02-27 21:00:13 +00:00
|
|
|
lineNumbers: !hideLineNumbers,
|
2017-03-01 21:15:56 +00:00
|
|
|
foldGutter: !hideLineNumbers,
|
2017-02-27 21:00:13 +00:00
|
|
|
lineWrapping: lineWrapping,
|
|
|
|
keyMap: keyMap || 'default',
|
|
|
|
matchBrackets: !noMatchBrackets,
|
2017-03-01 21:15:56 +00:00
|
|
|
lint: !noLint && !readOnly,
|
|
|
|
gutters: [],
|
2016-04-29 01:00:12 +00:00
|
|
|
};
|
2016-04-11 00:40:14 +00:00
|
|
|
|
2017-03-01 21:15:56 +00:00
|
|
|
if (options.lineNumbers) {
|
|
|
|
options.gutters.push('CodeMirror-linenumbers');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.foldGutter) {
|
|
|
|
options.gutters.push('CodeMirror-foldgutter');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.lint) {
|
|
|
|
options.gutters.push('CodeMirror-lint-markers');
|
|
|
|
}
|
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
const cm = this.codeMirror;
|
|
|
|
|
2016-04-11 00:40:14 +00:00
|
|
|
// Strip of charset if there is one
|
2016-03-20 04:00:40 +00:00
|
|
|
Object.keys(options).map(key => {
|
2017-02-08 01:52:05 +00:00
|
|
|
// Don't set the option if it hasn't changed
|
2017-02-27 21:00:13 +00:00
|
|
|
if (options[key] === cm.options[key]) {
|
2017-02-08 01:52:05 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
cm.setOption(key, options[key]);
|
2016-03-20 04:00:40 +00:00
|
|
|
});
|
2017-02-27 21:00:13 +00:00
|
|
|
|
|
|
|
// Add overlays;
|
|
|
|
this.codeMirror.makeLinksClickable(this.props.onClickLink);
|
2017-02-28 21:32:23 +00:00
|
|
|
};
|
2016-03-20 04:00:40 +00:00
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
_normalizeMode (mode) {
|
|
|
|
const mimeType = mode ? mode.split(';')[0] : 'text/plain';
|
|
|
|
|
|
|
|
if (this._isJSON(mimeType)) {
|
|
|
|
return 'application/json';
|
|
|
|
} else if (this._isXML(mimeType)) {
|
|
|
|
return 'application/xml';
|
|
|
|
} else {
|
|
|
|
return mimeType;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_codemirrorKeyDown = (doc, e) => {
|
|
|
|
// Use default tab behaviour if we're told
|
|
|
|
if (this.props.defaultTabBehavior && e.keyCode === TAB_KEY) {
|
|
|
|
e.codemirrorIgnore = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.props.onKeyDown) {
|
|
|
|
this.props.onKeyDown(e, doc.getValue());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_codemirrorFocus = (doc, e) => {
|
|
|
|
if (this.props.onFocus) {
|
|
|
|
this.props.onFocus(e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_codemirrorBlur = (doc, e) => {
|
|
|
|
if (this.props.onBlur) {
|
|
|
|
this.props.onBlur(e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
_codemirrorValueBeforeChange = (doc, change) => {
|
|
|
|
// If we're in single-line mode, merge all changed lines into one
|
|
|
|
if (this.props.singleLine && change.text.length > 1) {
|
|
|
|
const text = change.text
|
|
|
|
.join('') // join all changed lines into one
|
|
|
|
.replace(/\n/g, ' '); // Convert all whitespace to spaces
|
|
|
|
const from = {ch: change.from.ch, line: 0};
|
|
|
|
const to = {ch: from.ch + text.length, line: 0};
|
|
|
|
change.update(from, to, [text]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-03-20 20:42:27 +00:00
|
|
|
/**
|
|
|
|
* Wrapper function to add extra behaviour to our onChange event
|
|
|
|
*/
|
2017-02-28 21:32:23 +00:00
|
|
|
_codemirrorValueChanged = () => {
|
2016-07-29 00:24:05 +00:00
|
|
|
// Don't trigger change event if we're ignoring changes
|
|
|
|
if (this._ignoreNextChange || !this.props.onChange) {
|
|
|
|
this._ignoreNextChange = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:15:56 +00:00
|
|
|
const value = this.codeMirror.getDoc().getValue();
|
|
|
|
this.props.onChange(value);
|
2017-02-27 21:00:13 +00:00
|
|
|
};
|
2016-03-20 20:42:27 +00:00
|
|
|
|
|
|
|
/**
|
2016-03-22 05:01:58 +00:00
|
|
|
* Sets the CodeMirror value without triggering the onChange event
|
2016-03-20 20:42:27 +00:00
|
|
|
* @param code the code to set in the editor
|
2017-02-27 21:00:13 +00:00
|
|
|
* @param forcePrettify
|
2016-03-20 20:42:27 +00:00
|
|
|
*/
|
2017-02-27 21:00:13 +00:00
|
|
|
_codemirrorSetValue (code, forcePrettify = false) {
|
2016-09-08 22:04:25 +00:00
|
|
|
this._originalCode = code;
|
2016-04-17 22:46:17 +00:00
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
// Don't ignore changes from prettify
|
|
|
|
if (!forcePrettify) {
|
|
|
|
this._ignoreNextChange = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const shouldPrettify = forcePrettify || this.props.autoPrettify;
|
|
|
|
|
|
|
|
if (shouldPrettify && this._canPrettify()) {
|
|
|
|
if (this._isXML(this.props.mode)) {
|
|
|
|
code = this._prettifyXML(code);
|
|
|
|
} else {
|
|
|
|
code = this._prettifyJSON(code);
|
|
|
|
}
|
2016-04-10 02:58:48 +00:00
|
|
|
}
|
2017-02-27 21:00:13 +00:00
|
|
|
|
|
|
|
this.codeMirror.setValue(code || '');
|
2016-03-16 20:02:47 +00:00
|
|
|
}
|
|
|
|
|
2017-02-27 21:00:13 +00:00
|
|
|
_handleFilterChange = e => {
|
|
|
|
const filter = e.target.value;
|
|
|
|
|
2016-09-08 22:04:25 +00:00
|
|
|
clearTimeout(this._filterTimeout);
|
|
|
|
this._filterTimeout = setTimeout(() => {
|
|
|
|
this.setState({filter});
|
|
|
|
this._codemirrorSetValue(this._originalCode);
|
2016-09-09 00:32:36 +00:00
|
|
|
if (this.props.updateFilter) {
|
|
|
|
this.props.updateFilter(filter);
|
|
|
|
}
|
2017-02-27 21:00:13 +00:00
|
|
|
}, 200);
|
2016-11-23 23:29:31 +00:00
|
|
|
|
|
|
|
// So we don't track on every keystroke, give analytics a longer timeout
|
|
|
|
clearTimeout(this._analyticsTimeout);
|
|
|
|
const json = this._isJSON(this.props.mode);
|
|
|
|
this._analyticsTimeout = setTimeout(() => {
|
|
|
|
trackEvent(
|
|
|
|
'Response',
|
|
|
|
`Filter ${json ? 'JSONPath' : 'XPath'}`,
|
|
|
|
`${filter ? 'Change' : 'Clear'}`
|
|
|
|
);
|
|
|
|
}, 2000);
|
2017-02-27 21:00:13 +00:00
|
|
|
};
|
2016-09-08 22:04:25 +00:00
|
|
|
|
2016-09-13 17:29:09 +00:00
|
|
|
_canPrettify () {
|
|
|
|
const {mode} = this.props;
|
|
|
|
return this._isJSON(mode) || this._isXML(mode);
|
|
|
|
}
|
|
|
|
|
2016-09-08 22:33:03 +00:00
|
|
|
_showFilterHelp () {
|
2016-09-10 01:51:49 +00:00
|
|
|
const json = this._isJSON(this.props.mode);
|
|
|
|
const link = json ? (
|
2017-01-27 01:00:27 +00:00
|
|
|
<Link href="http://goessner.net/articles/JsonPath/">
|
|
|
|
JSONPath
|
|
|
|
</Link>
|
|
|
|
) : (
|
|
|
|
<Link href="https://www.w3.org/TR/xpath/">
|
|
|
|
XPath
|
|
|
|
</Link>
|
|
|
|
);
|
2016-09-10 01:51:49 +00:00
|
|
|
|
2016-11-23 23:29:31 +00:00
|
|
|
trackEvent('Response', `Filter ${json ? 'JSONPath' : 'XPath'}`, 'Help');
|
|
|
|
|
2016-11-07 20:24:38 +00:00
|
|
|
showModal(AlertModal, {
|
|
|
|
title: 'Response Filtering Help',
|
2016-09-08 22:33:03 +00:00
|
|
|
message: (
|
|
|
|
<div>
|
|
|
|
<p>
|
2016-09-10 01:51:49 +00:00
|
|
|
Use {link} to filter the response body. Here are some examples that
|
|
|
|
you might use on a book store API.
|
2016-09-08 22:33:03 +00:00
|
|
|
</p>
|
|
|
|
<table className="pad-top-sm">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2016-11-23 23:42:10 +00:00
|
|
|
<td>
|
|
|
|
<code className="selectable">
|
|
|
|
{json ? '$.store.books[*].title' : '/store/books/title'}
|
|
|
|
</code>
|
2016-09-09 00:32:36 +00:00
|
|
|
</td>
|
2016-09-08 22:33:03 +00:00
|
|
|
<td>Get titles of all books in the store</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2016-11-23 23:42:10 +00:00
|
|
|
<td>
|
|
|
|
<code className="selectable">
|
|
|
|
{json ? '$.store.books[?(@.price < 10)].title' : '/store/books[price < 10]'}
|
|
|
|
</code>
|
|
|
|
</td>
|
2016-11-16 17:18:39 +00:00
|
|
|
<td>Get books costing less than $10</td>
|
2016-09-08 22:33:03 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2016-11-23 23:42:10 +00:00
|
|
|
<td>
|
|
|
|
<code className="selectable">
|
|
|
|
{json ? '$.store.books[-1:]' : '/store/books[last()]'}
|
|
|
|
</code>
|
|
|
|
</td>
|
2016-09-08 22:33:03 +00:00
|
|
|
<td>Get the last book in the store</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2016-11-23 23:42:10 +00:00
|
|
|
<td>
|
|
|
|
<code className="selectable">
|
|
|
|
{json ? '$.store.books.length' : 'count(/store/books)'}
|
|
|
|
</code>
|
|
|
|
</td>
|
2016-09-08 22:33:03 +00:00
|
|
|
<td>Get the number of books in the store</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-07-14 22:48:56 +00:00
|
|
|
render () {
|
2017-02-13 08:12:02 +00:00
|
|
|
const {readOnly, fontSize, mode, filter} = this.props;
|
2016-07-19 22:28:29 +00:00
|
|
|
|
|
|
|
const classes = classnames(
|
2016-04-17 22:46:17 +00:00
|
|
|
'editor',
|
2016-03-24 05:26:04 +00:00
|
|
|
this.props.className,
|
2017-02-13 08:12:02 +00:00
|
|
|
{'editor--readonly': readOnly}
|
2016-07-19 22:28:29 +00:00
|
|
|
);
|
2016-04-29 05:58:37 +00:00
|
|
|
|
2016-09-13 17:29:09 +00:00
|
|
|
const toolbarChildren = [];
|
2016-09-10 01:51:49 +00:00
|
|
|
if (this.props.updateFilter && (this._isJSON(mode) || this._isXML(mode))) {
|
2016-09-13 17:29:09 +00:00
|
|
|
toolbarChildren.push(
|
|
|
|
<input
|
|
|
|
key="filter"
|
|
|
|
type="text"
|
|
|
|
title="Filter response body"
|
|
|
|
defaultValue={filter || ''}
|
|
|
|
placeholder={this._isJSON(mode) ? '$.store.books[*].author' : '/store/books/author'}
|
2017-02-27 21:00:13 +00:00
|
|
|
onChange={this._handleFilterChange}
|
2016-09-13 17:29:09 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
toolbarChildren.push(
|
|
|
|
<button key="help"
|
|
|
|
className="btn btn--compact"
|
|
|
|
onClick={() => this._showFilterHelp()}>
|
|
|
|
<i className="fa fa-question-circle"></i>
|
|
|
|
</button>
|
2016-09-08 22:04:25 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2016-09-13 17:29:09 +00:00
|
|
|
if (this.props.manualPrettify && this._canPrettify()) {
|
|
|
|
let contentTypeName = '';
|
|
|
|
if (this._isJSON(mode)) {
|
|
|
|
contentTypeName = 'JSON'
|
|
|
|
} else if (this._isXML(mode)) {
|
|
|
|
contentTypeName = 'XML'
|
|
|
|
}
|
|
|
|
|
|
|
|
toolbarChildren.push(
|
|
|
|
<button key="prettify"
|
|
|
|
className="btn btn--compact"
|
|
|
|
title="Auto-format request body whitespace"
|
2017-02-27 21:00:13 +00:00
|
|
|
onClick={this._handleBeautify}>
|
2016-09-13 17:29:09 +00:00
|
|
|
Beautify {contentTypeName}
|
|
|
|
</button>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
let toolbar = null;
|
|
|
|
if (toolbarChildren.length) {
|
|
|
|
toolbar = <div className="editor__toolbar">{toolbarChildren}</div>;
|
|
|
|
}
|
|
|
|
|
2017-03-01 21:15:56 +00:00
|
|
|
const styles = {};
|
|
|
|
if (fontSize) {
|
|
|
|
styles.fontSize = `${fontSize}px`
|
|
|
|
}
|
|
|
|
|
2016-03-16 20:02:47 +00:00
|
|
|
return (
|
2017-02-27 21:00:13 +00:00
|
|
|
<div className={classes}>
|
2017-03-01 21:15:56 +00:00
|
|
|
<div className="editor__container input" style={styles}>
|
2017-03-01 00:10:23 +00:00
|
|
|
<textarea
|
|
|
|
ref={this._handleInitTextarea}
|
|
|
|
style={{display: 'none'}}
|
|
|
|
defaultValue=" "
|
|
|
|
readOnly={readOnly}
|
2017-03-01 21:15:56 +00:00
|
|
|
autoComplete="off"
|
|
|
|
/>
|
2016-09-20 21:17:01 +00:00
|
|
|
</div>
|
2016-09-13 17:29:09 +00:00
|
|
|
{toolbar}
|
2016-03-20 04:00:40 +00:00
|
|
|
</div>
|
2016-03-16 20:02:47 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Editor.propTypes = {
|
|
|
|
onChange: PropTypes.func,
|
2017-02-27 21:00:13 +00:00
|
|
|
onFocus: PropTypes.func,
|
|
|
|
onBlur: PropTypes.func,
|
2017-02-08 00:31:48 +00:00
|
|
|
onClickLink: PropTypes.func,
|
2017-02-13 08:12:02 +00:00
|
|
|
render: PropTypes.func,
|
2017-01-24 22:18:11 +00:00
|
|
|
keyMap: PropTypes.string,
|
2016-04-29 01:00:12 +00:00
|
|
|
mode: PropTypes.string,
|
|
|
|
placeholder: PropTypes.string,
|
2016-07-19 22:28:29 +00:00
|
|
|
lineWrapping: PropTypes.bool,
|
2017-02-27 21:00:13 +00:00
|
|
|
hideLineNumbers: PropTypes.bool,
|
|
|
|
noMatchBrackets: PropTypes.bool,
|
|
|
|
hideScrollbars: PropTypes.bool,
|
2016-07-19 22:28:29 +00:00
|
|
|
fontSize: PropTypes.number,
|
2017-03-01 21:15:56 +00:00
|
|
|
defaultValue: PropTypes.string,
|
2017-02-28 21:32:23 +00:00
|
|
|
tabIndex: PropTypes.number,
|
2016-09-13 17:29:09 +00:00
|
|
|
autoPrettify: PropTypes.bool,
|
|
|
|
manualPrettify: PropTypes.bool,
|
2017-03-01 21:15:56 +00:00
|
|
|
noLint: PropTypes.bool,
|
2017-02-28 06:26:24 +00:00
|
|
|
noDragDrop: PropTypes.bool,
|
2017-03-01 21:15:56 +00:00
|
|
|
noStyleActiveLine: PropTypes.bool,
|
2016-07-22 21:35:49 +00:00
|
|
|
className: PropTypes.any,
|
2016-09-09 00:32:36 +00:00
|
|
|
updateFilter: PropTypes.func,
|
2017-02-27 21:00:13 +00:00
|
|
|
defaultTabBehavior: PropTypes.bool,
|
2017-02-13 08:12:02 +00:00
|
|
|
readOnly: PropTypes.bool,
|
2017-02-27 21:00:13 +00:00
|
|
|
filter: PropTypes.string,
|
|
|
|
singleLine: PropTypes.bool,
|
|
|
|
debounceMillis: PropTypes.number,
|
2016-03-16 20:02:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Editor;
|