@ionic/cli-plugin-cordova
Version:
Ionic Cordova Plugin for Ionic CLI
84 lines (83 loc) • 3.64 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const chalk = require("chalk");
const cli_utils_1 = require("@ionic/cli-utils");
const cordova_1 = require("../lib/utils/cordova");
const configXml_1 = require("../lib/utils/configXml");
const base_1 = require("./base");
let PluginCommand = class PluginCommand extends base_1.CordovaCommand {
preRun(inputs, options) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
yield this.checkForAssetsFolder();
inputs[0] = (typeof inputs[0] === 'undefined') ? 'ls' : inputs[0];
inputs[0] = (inputs[0] === 'rm') ? 'remove' : inputs[0];
inputs[0] = (inputs[0] === 'list') ? 'ls' : inputs[0];
cli_utils_1.validate(inputs[0], 'action', [cli_utils_1.contains(['add', 'remove', 'ls', 'save'], {})]);
// If the action is list then lets just end here.
if (['ls', 'save'].includes(inputs[0])) {
const response = yield this.runCordova(['plugin', inputs[0]]);
this.env.log.msg(response);
return 0;
}
if (!inputs[1]) {
const plugin = yield this.env.prompt({
message: `What plugin would you like to ${inputs[0]}:`,
type: 'input',
name: 'plugin',
});
inputs[1] = plugin;
}
cli_utils_1.validate(inputs[1], 'plugin', [cli_utils_1.validators.required]);
});
}
run(inputs, options) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
const conf = yield configXml_1.ConfigXml.load(this.env.project.directory);
yield conf.resetContentSrc();
yield conf.save();
const optionList = cordova_1.filterArgumentsForCordova(this.metadata, inputs.splice(0, 2), options);
if (!optionList.includes('--save')) {
optionList.push('--save');
}
// TODO: showExecution and filter out double newlines from cordova
const response = yield this.runCordova(optionList);
this.env.log.msg(response);
});
}
};
PluginCommand = tslib_1.__decorate([
cli_utils_1.CommandMetadata({
name: 'plugin',
type: 'project',
description: 'Manage Cordova plugins',
longDescription: `
Like running ${chalk.green('cordova plugin')} directly, but provides friendly checks.
`,
exampleCommands: ['', 'add cordova-plugin-inappbrowser@latest', 'add phonegap-plugin-push --variable SENDER_ID=XXXXX', 'rm cordova-plugin-camera'],
inputs: [
{
name: 'action',
description: `${chalk.green('add')} or ${chalk.green('remove')} a plugin; ${chalk.green('ls')} or ${chalk.green('save')} all project plugins`,
},
{
name: 'plugin',
description: `The name of the plugin (corresponds to ${chalk.green('add')} and ${chalk.green('remove')})`,
},
],
options: [
{
name: 'force',
description: `Forve overwrite the plugin if it exists (corresponds to ${chalk.green('add')})`,
type: Boolean,
intent: cordova_1.CORDOVA_INTENT,
},
{
name: 'variable',
description: 'Specify plugin variables',
intent: cordova_1.CORDOVA_INTENT,
}
]
})
], PluginCommand);
exports.PluginCommand = PluginCommand;
;