* Replace the following global variables with named imports: - Gerrit._pluginLoader - Gerrit._endpoints * Update gr-app-global-var-init.js * Move reset plugins function to test-utils.js Note: This is not a recommended approach. pluginLoader and endpoints must be moved to appContext (see todo in the files gr-plugin-loader.js and gr-plugin-endpoints.js) Change-Id: Ifc3454c293fc19830f12088168e83748f67d7cff
173 lines
5.1 KiB
JavaScript
173 lines
5.1 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright (C) 2019 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.
|
|
*/
|
|
|
|
/**
|
|
* This defines the Gerrit instance. All methods directly attached to Gerrit
|
|
* should be defined or linked here.
|
|
*/
|
|
|
|
import {pluginLoader} from './gr-plugin-loader.js';
|
|
import {EventEmitter} from '../gr-event-interface/gr-event-interface.js';
|
|
import {getRestAPI, send} from './gr-api-utils.js';
|
|
|
|
/**
|
|
* Trigger the preinstalls for bundled plugins.
|
|
* This needs to happen before Gerrit as plugin bundle overrides the Gerrit.
|
|
*/
|
|
function flushPreinstalls() {
|
|
if (window.Gerrit.flushPreinstalls) {
|
|
window.Gerrit.flushPreinstalls();
|
|
}
|
|
}
|
|
flushPreinstalls();
|
|
export const _testOnly_flushPreinstalls = flushPreinstalls;
|
|
|
|
window.Gerrit = window.Gerrit || {};
|
|
const Gerrit = window.Gerrit;
|
|
|
|
/**
|
|
* @deprecated Use plugin.styles().css(rulesStr) instead. Please, consult
|
|
* the documentation how to replace it accordingly.
|
|
*/
|
|
Gerrit.css = function(rulesStr) {
|
|
console.warn('Gerrit.css(rulesStr) is deprecated!',
|
|
'Use plugin.styles().css(rulesStr)');
|
|
if (!Gerrit._customStyleSheet) {
|
|
const styleEl = document.createElement('style');
|
|
document.head.appendChild(styleEl);
|
|
Gerrit._customStyleSheet = styleEl.sheet;
|
|
}
|
|
|
|
const name = '__pg_js_api_class_' +
|
|
Gerrit._customStyleSheet.cssRules.length;
|
|
Gerrit._customStyleSheet.insertRule('.' + name + '{' + rulesStr + '}', 0);
|
|
return name;
|
|
};
|
|
|
|
Gerrit.install = function(callback, opt_version, opt_src) {
|
|
pluginLoader.install(callback, opt_version, opt_src);
|
|
};
|
|
|
|
Gerrit.getLoggedIn = function() {
|
|
console.warn('Gerrit.getLoggedIn() is deprecated! ' +
|
|
'Use plugin.restApi().getLoggedIn()');
|
|
return document.createElement('gr-rest-api-interface').getLoggedIn();
|
|
};
|
|
|
|
Gerrit.get = function(url, callback) {
|
|
console.warn('.get() is deprecated! Use plugin.restApi().get()');
|
|
send('GET', url, callback);
|
|
};
|
|
|
|
Gerrit.post = function(url, payload, callback) {
|
|
console.warn('.post() is deprecated! Use plugin.restApi().post()');
|
|
send('POST', url, callback, payload);
|
|
};
|
|
|
|
Gerrit.put = function(url, payload, callback) {
|
|
console.warn('.put() is deprecated! Use plugin.restApi().put()');
|
|
send('PUT', url, callback, payload);
|
|
};
|
|
|
|
Gerrit.delete = function(url, opt_callback) {
|
|
console.warn('.delete() is deprecated! Use plugin.restApi().delete()');
|
|
return getRestAPI().send('DELETE', url)
|
|
.then(response => {
|
|
if (response.status !== 204) {
|
|
return response.text().then(text => {
|
|
if (text) {
|
|
return Promise.reject(new Error(text));
|
|
} else {
|
|
return Promise.reject(new Error(response.status));
|
|
}
|
|
});
|
|
}
|
|
if (opt_callback) {
|
|
opt_callback(response);
|
|
}
|
|
return response;
|
|
});
|
|
};
|
|
|
|
Gerrit.awaitPluginsLoaded = function() {
|
|
return pluginLoader.awaitPluginsLoaded();
|
|
};
|
|
|
|
// TODO(taoalpha): consider removing these proxy methods
|
|
// and using _pluginLoader directly
|
|
|
|
Gerrit._loadPlugins = function(plugins, opt_option) {
|
|
pluginLoader.loadPlugins(plugins, opt_option);
|
|
};
|
|
|
|
Gerrit._arePluginsLoaded = function() {
|
|
return pluginLoader.arePluginsLoaded();
|
|
};
|
|
|
|
Gerrit._isPluginPreloaded = function(url) {
|
|
return pluginLoader.isPluginPreloaded(url);
|
|
};
|
|
|
|
Gerrit._isPluginEnabled = function(pathOrUrl) {
|
|
return pluginLoader.isPluginEnabled(pathOrUrl);
|
|
};
|
|
|
|
Gerrit._isPluginLoaded = function(pathOrUrl) {
|
|
return pluginLoader.isPluginLoaded(pathOrUrl);
|
|
};
|
|
|
|
// Preloaded plugins should be installed after Gerrit.install() is set,
|
|
// since plugin preloader substitutes Gerrit.install() temporarily.
|
|
pluginLoader.installPreloadedPlugins();
|
|
|
|
// TODO(taoalpha): List all internal supported event names.
|
|
// Also convert this to inherited class once we move Gerrit to class.
|
|
Gerrit._eventEmitter = new EventEmitter();
|
|
['addListener',
|
|
'dispatch',
|
|
'emit',
|
|
'off',
|
|
'on',
|
|
'once',
|
|
'removeAllListeners',
|
|
'removeListener',
|
|
].forEach(method => {
|
|
/**
|
|
* Enabling EventEmitter interface on Gerrit.
|
|
*
|
|
* This will enable to signal across different parts of js code without relying on DOM,
|
|
* including core to core, plugin to plugin and also core to plugin.
|
|
*
|
|
* @example
|
|
*
|
|
* // Emit this event from pluginA
|
|
* Gerrit.install(pluginA => {
|
|
* fetch("some-api").then(() => {
|
|
* Gerrit.on("your-special-event", {plugin: pluginA});
|
|
* });
|
|
* });
|
|
*
|
|
* // Listen on your-special-event from pluignB
|
|
* Gerrit.install(pluginB => {
|
|
* Gerrit.on("your-special-event", ({plugin}) => {
|
|
* // do something, plugin is pluginA
|
|
* });
|
|
* });
|
|
*/
|
|
Gerrit[method] = Gerrit._eventEmitter[method].bind(Gerrit._eventEmitter);
|
|
});
|