mavensmate
Version:
Core APIs that drive MavensMate IDEs for Salesforce1/Force.com
64 lines (58 loc) • 1.77 kB
JavaScript
/**
* @file Executes anonymous Apex
* @author Joseph Ferraro <@joeferraro>
*/
;
var Promise = require('bluebird');
var util = require('../../util');
var BaseCommand = require('../../command');
var inherits = require('inherits');
var EditorService = require('../../services/editor');
function Command() {
Command.super_.call(this, Array.prototype.slice.call(arguments, 0));
}
inherits(Command, BaseCommand);
Command.prototype.execute = function() {
var self = this;
return new Promise(function(resolve, reject) {
if (self.isUICommand()) {
self.editorService.launchUI('apex/new', { pid: self.getProject().settings.id });
resolve('Success');
} else {
self.getProject().sfdcClient.executeApex(self.payload)
.then(function(result) {
resolve(result);
})
.catch(function(error) {
reject(error);
})
.done();
}
});
};
exports.command = Command;
exports.addSubCommand = function(program) {
program
.command('execute-apex')
.option('--ui', 'Launches the Apex execute anonymous UI.')
.description('Execute Apex code anonymously')
.action(function(/* Args here */){
if (this.ui) {
program.commandExecutor.execute({
name: this._name,
body: { args: { ui: true } },
editor: this.parent.editor
});
} else {
var self = this;
util.getPayload()
.then(function(payload) {
program.commandExecutor.execute({
name: self._name,
body: payload,
editor: self.parent.editor
});
});
}
});
};