ionic
Version:
A tool for creating and developing Ionic Framework mobile apps.
58 lines (57 loc) • 2.31 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
const color_1 = require("../lib/color");
const command_1 = require("../lib/command");
const errors_1 = require("../lib/errors");
const project_1 = require("../lib/project");
class GenerateCommand extends command_1.Command {
async getMetadata() {
const inputs = [];
const options = [];
const exampleCommands = [''];
const footnotes = [];
const groups = [];
let description = this.project
? color_1.failure(`Generators are not supported in this project type (${color_1.strong(project_1.prettyProjectName(this.project.type))}).`)
: color_1.failure('Generators help is available within an Ionic project directory.');
const runner = this.project && await this.project.getGenerateRunner();
if (runner) {
const libmetadata = await runner.getCommandMetadata();
groups.push(...libmetadata.groups || []);
inputs.push(...libmetadata.inputs || []);
options.push(...libmetadata.options || []);
description = (libmetadata.description || '').trim();
footnotes.push(...libmetadata.footnotes || []);
exampleCommands.push(...libmetadata.exampleCommands || []);
}
else {
groups.push("hidden" /* HIDDEN */);
}
return {
name: 'generate',
type: 'project',
summary: 'Automatically create framework features',
description,
footnotes,
inputs,
options,
groups,
exampleCommands,
};
}
async preRun(inputs, options) {
const runner = this.project && await this.project.getGenerateRunner();
if (runner) {
await runner.ensureCommandLine(inputs, options);
}
}
async run(inputs, options) {
if (!this.project) {
throw new errors_1.FatalException(`Cannot run ${color_1.input('ionic generate')} outside a project directory.`);
}
const runner = await this.project.requireGenerateRunner();
const opts = runner.createOptionsFromCommandLine(inputs, options);
await runner.run(opts);
}
}
exports.GenerateCommand = GenerateCommand;
;