polymer-cli
Version:
A commandline tool for Polymer projects
149 lines • 7.26 kB
JavaScript
;
/*
* Copyright (c) 2016 The Polymer Project Authors. All rights reserved.
* This code may only be used under the BSD style license found at
* http://polymer.github.io/LICENSE.txt
* The complete set of authors may be found at
* http://polymer.github.io/AUTHORS.txt
* The complete set of contributors may be found at
* http://polymer.github.io/CONTRIBUTORS.txt
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at
* http://polymer.github.io/PATENTS.txt
*/
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const chalk_1 = require("chalk");
const path = require("path");
const Generator = require("yeoman-generator");
/**
* Returns a Yeoman Generator constructor that can be passed to yeoman to be
* run. A "template name" argument is required to choose the correct
* `/templates` directory name to generate from.
* (Ex: "polymer-2.x" to generate the `templates/polymer-2x` template directory)
*/
function createApplicationGenerator(templateName) {
class ApplicationGenerator extends Generator {
constructor(args, options) {
super(args, options);
this.sourceRoot(path.join(__dirname, '../../../templates/application', templateName));
}
// This is necessary to prevent an exception in Yeoman when creating
// storage for generators registered as a stub and used in a folder
// with a package.json but with no name property.
// https://github.com/Polymer/polymer-cli/issues/186
rootGeneratorName() {
return 'ApplicationGenerator';
}
initializing() {
// Yeoman replaces dashes with spaces. We want dashes.
this.appname = this.appname.replace(/\s+/g, '-');
}
prompting() {
return __awaiter(this, void 0, void 0, function* () {
const prompts = [
{
name: 'name',
type: 'input',
message: `Application name`,
default: this.appname,
},
{
type: 'input',
name: 'elementName',
message: `Main element name`,
default: (answers) => `${answers.name}-app`,
validate: (name) => {
const nameContainsHyphen = name.includes('-');
if (!nameContainsHyphen) {
this.log('\nUh oh, custom elements must include a hyphen in ' +
'their name. Please try again.');
}
return nameContainsHyphen;
},
},
{
type: 'input',
name: 'description',
message: 'Brief description of the application',
},
];
this.props = (yield this.prompt(prompts));
this.props.elementClassName = this.props.elementName.replace(/(^|-)(\w)/g, (_match, _p0, p1) => p1.toUpperCase());
});
}
writing() {
const elementName = this.props.elementName;
this.fs.copyTpl(`${this.templatePath()}/**/?(.)*`, this.destinationPath(), this.props, undefined, { globOptions: { ignore: ['**/_*'] } });
this.fs.copyTpl(this.templatePath('src/_element/_element.html'), `src/${elementName}/${elementName}.html`, this.props);
this.fs.copyTpl(this.templatePath('test/_element/_element_test.html'), `test/${elementName}/${elementName}_test.html`, this.props);
this.fs.move(this.destinationPath('gitignore'), this.destinationPath('.gitignore'));
}
install() {
this.log(chalk_1.default.bold('\nProject generated!'));
this.log('Installing dependencies...');
this.installDependencies({
npm: false,
});
}
end() {
this.log(chalk_1.default.bold('\nSetup Complete!'));
this.log('Check out your new project README for information about what to do next.\n');
}
}
class Polymer3ApplicationGenerator extends ApplicationGenerator {
// TODO(yeoman/generator#1065): This function is not a no-op: Yeoman only
// checks the object's prototype's own properties for generator task
// methods. http://yeoman.io/authoring/running-context.html
initializing() {
return super.initializing();
}
// TODO(yeoman/generator#1065): This function is not a no-op: Yeoman only
// checks the object's prototype's own properties for generator task
// methods. http://yeoman.io/authoring/running-context.html
prompting() {
const _super = Object.create(null, {
prompting: { get: () => super.prompting }
});
return __awaiter(this, void 0, void 0, function* () {
return _super.prompting.call(this);
});
}
writing() {
const elementName = this.props.elementName;
this.fs.copyTpl(`${this.templatePath()}/**/?(.)*`, this.destinationPath(), this.props, undefined, { globOptions: { ignore: ['**/_*'] } });
this.fs.copyTpl(this.templatePath('src/_element/_element.js'), `src/${elementName}/${elementName}.js`, this.props);
this.fs.copyTpl(this.templatePath('test/_element/_element_test.html'), `test/${elementName}/${elementName}_test.html`, this.props);
this.fs.move(this.destinationPath('gitignore'), this.destinationPath('.gitignore'));
}
install() {
this.log(chalk_1.default.bold('\nProject generated!'));
this.log('Installing dependencies...');
this.installDependencies({
bower: false,
npm: true,
});
}
// TODO(yeoman/generator#1065): This function is not a no-op: Yeoman only
// checks the object's prototype's own properties for generator task
// methods. http://yeoman.io/authoring/running-context.html
end() {
return super.end();
}
}
switch (templateName) {
case 'polymer-3.x':
return Polymer3ApplicationGenerator;
default:
return ApplicationGenerator;
}
}
exports.createApplicationGenerator = createApplicationGenerator;
//# sourceMappingURL=application.js.map