blob: d7297ad51c78bc0628ce1d01427b97d89b516819 [file] [log] [blame]
/**
* @license
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// we need to be on codemirror 5.33.0+ to get the support for
// text/x-php in CodeMirror.findModeByMIME
const LANGUAGE_MAP = {
'text/x-php': 'php',
};
class GrEditor extends Polymer.Element {
/**
* Fired when the content of the editor changes.
*
* @event content-change
*/
/** @returns {string} name of the component */
static get is() {
return 'gr-editor';
}
/**
* Defines properties of the component
*
* @returns {?}
*/
static get properties() {
return {
fileContent: String,
fileType: String,
lineNum: Number,
mirror: Object,
prefs: Object,
plugin: Object,
};
}
/** @returns {?} template for this component */
static get template() {
return Polymer.html`
<codemirror-element
id="codemirror"
line-num="[[lineNum]]">
</codemirror-element>
`;
}
/** Hook on connectedCallback */
connectedCallback() {
super.connectedCallback();
this._initializeMirror();
}
/** @returns {!Promise} Initialize code mirror editor */
_initializeMirror() {
return new Promise((resolve, reject) => {
this._importCodeMirror().then(() => {
const params = this.getCodeMirrorParams(
this.fileType,
this.fileContent,
this.prefs
);
this.mirror = this.$.codemirror;
this.mirror.setParams(params);
this._addEventListeners();
resolve();
});
});
}
/** @returns {!Promise} Lazy load the actual codemirror editor */
_importCodeMirror() {
const codemirrorElementFile = '/static/codemirror-element.html';
const url = this.plugin.url(codemirrorElementFile);
return new Promise((resolve, reject) => {
Polymer.importHref(url, resolve, reject);
});
}
/** Set up content listeners */
_addEventListeners() {
this.mirror.addEventListener('content-change', e => {
this.dispatchEvent(
new CustomEvent('content-change', {
detail: {value: e.detail.value},
bubbles: true,
composed: true,
})
);
});
}
/**
* Retrieve params for the editor
*
* @param {string} type
* @param {string} value
* @param {Object} prefs
* @returns {Object}
*/
getCodeMirrorParams(type, value, prefs) {
const params = {value, viewportMargin: Infinity};
if (prefs) {
// TODO: Add gerrit's customizations from java codemirror to javascript
// gerrit-gwtui/src/main/java/net/codemirror/lib/Extras.java
params.autoCloseBrackets = prefs.auto_close_brackets;
params.cursorHeight = 0.85;
params.indentUnit = prefs.indent_unit;
params.indentWithTabs = prefs.indent_with_tabs;
// TODO(kaspern): Add support for keymaps.
// params.keyMap = prefs.key_map_type.toLowerCase();
params.lineNumbers = true;
params.lineWrapping = prefs.line_wrapping;
params.matchBrackets = prefs.match_brackets;
// TODO: Add support for a new commit msg MIME type
// Support for this is somewhere in gerrit's codebase
// needs backporting to javascript
params.mode = prefs.syntax_highlighting ? this._mapFileType(type) : '';
params.showTabs = prefs.show_tabs;
params.showTrailingSpace = prefs.show_whitespace_errors;
params.tabSize = prefs.tab_size;
// TODO(kaspern): Add support for themes.
// params.theme = prefs.theme.toLowerCase();
params.rulers = [{column: prefs.line_length}];
if (value && value.includes('\r\n')) {
params.lineSeparator = '\r\n';
}
}
return params;
}
/**
* Determine file type with local overrides
*
* @param {string} type
* @returns {string}
*/
_mapFileType(type) {
return LANGUAGE_MAP[type] || type || '';
}
}
customElements.define(GrEditor.is, GrEditor);
// Install the plugin
if (window.Gerrit) {
Gerrit.install(plugin => {
plugin.registerCustomComponent('editor', 'gr-editor', {replace: true});
});
}