UNPKG

@schematics/schematics

Version:
110 lines (109 loc) 4.88 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ const core_1 = require("@angular-devkit/core"); const schematics_1 = require("@angular-devkit/schematics"); const tasks_1 = require("@angular-devkit/schematics/tasks"); function appendPropertyInAstObject(recorder, node, propertyName, value, indent = 4) { const indentStr = '\n' + new Array(indent + 1).join(' '); if (node.properties.length > 0) { // Insert comma. const last = node.properties[node.properties.length - 1]; recorder.insertRight(last.start.offset + last.text.replace(/\s+$/, '').length, ','); } recorder.insertLeft(node.end.offset - 1, ' ' + `"${propertyName}": ${JSON.stringify(value, null, 2).replace(/\n/g, indentStr)}` + indentStr.slice(0, -2)); } function addSchematicToCollectionJson(collectionPath, schematicName, description) { return (tree) => { const collectionJsonContent = tree.read(collectionPath); if (!collectionJsonContent) { throw new Error('Invalid collection path: ' + collectionPath); } const collectionJsonAst = core_1.parseJsonAst(collectionJsonContent.toString('utf-8')); if (collectionJsonAst.kind !== 'object') { throw new Error('Invalid collection content.'); } for (const property of collectionJsonAst.properties) { if (property.key.value == 'schematics') { if (property.value.kind !== 'object') { throw new Error('Invalid collection.json; schematics needs to be an object.'); } const recorder = tree.beginUpdate(collectionPath); appendPropertyInAstObject(recorder, property.value, schematicName, description); tree.commitUpdate(recorder); return tree; } } throw new Error('Could not find the "schematics" property in collection.json.'); }; } function default_1(options) { const schematicsVersion = require('@angular-devkit/schematics/package.json').version; const coreVersion = require('@angular-devkit/core/package.json').version; // Verify if we need to create a full project, or just add a new schematic. return (tree, context) => { if (!options.name) { throw new schematics_1.SchematicsException('name option is required.'); } let collectionPath; try { const packageJsonContent = tree.read('/package.json'); if (packageJsonContent) { // In google3 the return value of JSON.parse() must be immediately typed, // otherwise it defaults to `any`, which is prohibited. const packageJson = JSON.parse(packageJsonContent.toString('utf-8')); if (typeof packageJson.schematics === 'string') { const p = core_1.normalize(packageJson.schematics); if (tree.exists(p)) { collectionPath = p; } } } } catch (_a) { } let source = schematics_1.apply(schematics_1.url('./schematic-files'), [ schematics_1.applyTemplates({ ...options, coreVersion, schematicsVersion, dot: '.', camelize: core_1.strings.camelize, dasherize: core_1.strings.dasherize, }), ]); // Simply create a new schematic project. if (!collectionPath) { collectionPath = core_1.normalize('/' + options.name + '/src/collection.json'); source = schematics_1.apply(schematics_1.url('./project-files'), [ schematics_1.applyTemplates({ ...options, coreVersion, schematicsVersion, dot: '.', camelize: core_1.strings.camelize, dasherize: core_1.strings.dasherize, }), schematics_1.mergeWith(source), schematics_1.move(options.name), ]); context.addTask(new tasks_1.NodePackageInstallTask(options.name)); } return schematics_1.chain([ schematics_1.mergeWith(source), addSchematicToCollectionJson(collectionPath, core_1.strings.dasherize(options.name), { description: 'A blank schematic.', factory: './' + core_1.strings.dasherize(options.name) + '/index#' + core_1.strings.camelize(options.name), }), ]); }; } exports.default = default_1;