UNPKG

@platformos/pos-cli

Version:

Manage your platformOS application

238 lines (194 loc) 7.02 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.VariableEditor = void 0; var _react = _interopRequireDefault(require("react")); var _propTypes = _interopRequireDefault(require("prop-types")); var _onHasCompletion = _interopRequireDefault(require("../utility/onHasCompletion")); var _commonKeys = _interopRequireDefault(require("../utility/commonKeys")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } /** * VariableEditor * * An instance of CodeMirror for editing variables defined in QueryEditor. * * Props: * * - variableToType: A mapping of variable name to GraphQLType. * - value: The text of the editor. * - onEdit: A function called when the editor changes, given the edited text. * - readOnly: Turns the editor to read-only mode. * */ class VariableEditor extends _react.default.Component { constructor(props) { super(); // Keep a cached version of the value, this cache will be updated when the // editor is updated, which can later be used to protect the editor from // unnecessary updates during the update lifecycle. _defineProperty(this, "_onKeyUp", (cm, event) => { const code = event.keyCode; if (code >= 65 && code <= 90 || // letters !event.shiftKey && code >= 48 && code <= 57 || // numbers event.shiftKey && code === 189 || // underscore event.shiftKey && code === 222 // " ) { this.editor.execCommand('autocomplete'); } }); _defineProperty(this, "_onEdit", () => { if (!this.ignoreChangeEvent) { this.cachedValue = this.editor.getValue(); if (this.props.onEdit) { this.props.onEdit(this.cachedValue); } } }); _defineProperty(this, "_onHasCompletion", (cm, data) => { (0, _onHasCompletion.default)(cm, data, this.props.onHintInformationRender); }); this.cachedValue = props.value || ''; } componentDidMount() { // Lazily require to ensure requiring GraphiQL outside of a Browser context // does not produce an error. const CodeMirror = require('codemirror'); require('codemirror/addon/hint/show-hint'); require('codemirror/addon/edit/matchbrackets'); require('codemirror/addon/edit/closebrackets'); require('codemirror/addon/fold/brace-fold'); require('codemirror/addon/fold/foldgutter'); require('codemirror/addon/lint/lint'); require('codemirror/addon/search/searchcursor'); require('codemirror/addon/search/jump-to-line'); require('codemirror/addon/dialog/dialog'); require('codemirror/keymap/sublime'); require('codemirror-graphql/variables/hint'); require('codemirror-graphql/variables/lint'); require('codemirror-graphql/variables/mode'); this.editor = CodeMirror(this._node, { value: this.props.value || '', lineNumbers: true, tabSize: 2, mode: 'graphql-variables', theme: this.props.editorTheme || 'graphiql', keyMap: 'sublime', autoCloseBrackets: true, matchBrackets: true, showCursorWhenSelecting: true, readOnly: this.props.readOnly ? 'nocursor' : false, foldGutter: { minFoldSize: 4 }, lint: { variableToType: this.props.variableToType }, hintOptions: { variableToType: this.props.variableToType, closeOnUnfocus: false, completeSingle: false, container: this._node }, gutters: ['CodeMirror-linenumbers', 'CodeMirror-foldgutter'], extraKeys: { 'Cmd-Space': () => this.editor.showHint({ completeSingle: false, container: this._node }), 'Ctrl-Space': () => this.editor.showHint({ completeSingle: false, container: this._node }), 'Alt-Space': () => this.editor.showHint({ completeSingle: false, container: this._node }), 'Shift-Space': () => this.editor.showHint({ completeSingle: false, container: this._node }), 'Cmd-Enter': () => { if (this.props.onRunQuery) { this.props.onRunQuery(); } }, 'Ctrl-Enter': () => { if (this.props.onRunQuery) { this.props.onRunQuery(); } }, 'Shift-Ctrl-P': () => { if (this.props.onPrettifyQuery) { this.props.onPrettifyQuery(); } }, 'Shift-Ctrl-M': () => { if (this.props.onMergeQuery) { this.props.onMergeQuery(); } }, ..._commonKeys.default } }); this.editor.on('change', this._onEdit); this.editor.on('keyup', this._onKeyUp); this.editor.on('hasCompletion', this._onHasCompletion); } componentDidUpdate(prevProps) { const CodeMirror = require('codemirror'); // Ensure the changes caused by this update are not interpretted as // user-input changes which could otherwise result in an infinite // event loop. this.ignoreChangeEvent = true; if (this.props.variableToType !== prevProps.variableToType) { this.editor.options.lint.variableToType = this.props.variableToType; this.editor.options.hintOptions.variableToType = this.props.variableToType; CodeMirror.signal(this.editor, 'change', this.editor); } if (this.props.value !== prevProps.value && this.props.value !== this.cachedValue) { const thisValue = this.props.value || ''; this.cachedValue = thisValue; this.editor.setValue(thisValue); } this.ignoreChangeEvent = false; } componentWillUnmount() { this.editor.off('change', this._onEdit); this.editor.off('keyup', this._onKeyUp); this.editor.off('hasCompletion', this._onHasCompletion); this.editor = null; } render() { return _react.default.createElement("div", { className: "codemirrorWrap", ref: node => { this._node = node; } }); } /** * Public API for retrieving the CodeMirror instance from this * React component. */ getCodeMirror() { return this.editor; } /** * Public API for retrieving the DOM client height for this component. */ getClientHeight() { return this._node && this._node.clientHeight; } } exports.VariableEditor = VariableEditor; _defineProperty(VariableEditor, "propTypes", { variableToType: _propTypes.default.object, value: _propTypes.default.string, onEdit: _propTypes.default.func, readOnly: _propTypes.default.bool, onHintInformationRender: _propTypes.default.func, onPrettifyQuery: _propTypes.default.func, onMergeQuery: _propTypes.default.func, onRunQuery: _propTypes.default.func, editorTheme: _propTypes.default.string });