aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@schematics/angular/component/index.js
diff options
context:
space:
mode:
authorDanijel Andjelkovic <adanijel99@gmail.com>2022-03-01 20:21:29 +0000
committerDanijel Andjelkovic <adanijel99@gmail.com>2022-03-01 20:21:29 +0000
commit61cb1570a3410c85a4489b97c172e3a50715f36c (patch)
tree8fe4a5b77ea54bba80abc817ce2c9ef0e79e7e66 /sandbox/testAppNevena/Front/node_modules/@schematics/angular/component/index.js
parent21a53d349788c99d2007cba91a923db982353b31 (diff)
parenta9ee9e0a500a4a15bd0b5dcaf041f827228ed309 (diff)
Merge branch 'researchML' into 'dev'
Research ml See merge request igrannonica/neuronstellar!6
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@schematics/angular/component/index.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@schematics/angular/component/index.js137
1 files changed, 137 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@schematics/angular/component/index.js b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/component/index.js
new file mode 100644
index 00000000..d8d5ff20
--- /dev/null
+++ b/sandbox/testAppNevena/Front/node_modules/@schematics/angular/component/index.js
@@ -0,0 +1,137 @@
+"use strict";
+/**
+ * @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
+ */
+var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
+ if (k2 === undefined) k2 = k;
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
+}) : (function(o, m, k, k2) {
+ if (k2 === undefined) k2 = k;
+ o[k2] = m[k];
+}));
+var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
+}) : function(o, v) {
+ o["default"] = v;
+});
+var __importStar = (this && this.__importStar) || function (mod) {
+ if (mod && mod.__esModule) return mod;
+ var result = {};
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
+ __setModuleDefault(result, mod);
+ return result;
+};
+Object.defineProperty(exports, "__esModule", { value: true });
+const core_1 = require("@angular-devkit/core");
+const schematics_1 = require("@angular-devkit/schematics");
+const ts = __importStar(require("../third_party/github.com/Microsoft/TypeScript/lib/typescript"));
+const ast_utils_1 = require("../utility/ast-utils");
+const change_1 = require("../utility/change");
+const find_module_1 = require("../utility/find-module");
+const parse_name_1 = require("../utility/parse-name");
+const validation_1 = require("../utility/validation");
+const workspace_1 = require("../utility/workspace");
+const schema_1 = require("./schema");
+function readIntoSourceFile(host, modulePath) {
+ const text = host.read(modulePath);
+ if (text === null) {
+ throw new schematics_1.SchematicsException(`File ${modulePath} does not exist.`);
+ }
+ const sourceText = text.toString('utf-8');
+ return ts.createSourceFile(modulePath, sourceText, ts.ScriptTarget.Latest, true);
+}
+function addDeclarationToNgModule(options) {
+ return (host) => {
+ if (options.skipImport || !options.module) {
+ return host;
+ }
+ options.type = options.type != null ? options.type : 'Component';
+ const modulePath = options.module;
+ const source = readIntoSourceFile(host, modulePath);
+ const componentPath = `/${options.path}/` +
+ (options.flat ? '' : core_1.strings.dasherize(options.name) + '/') +
+ core_1.strings.dasherize(options.name) +
+ (options.type ? '.' : '') +
+ core_1.strings.dasherize(options.type);
+ const relativePath = (0, find_module_1.buildRelativePath)(modulePath, componentPath);
+ const classifiedName = core_1.strings.classify(options.name) + core_1.strings.classify(options.type);
+ const declarationChanges = (0, ast_utils_1.addDeclarationToModule)(source, modulePath, classifiedName, relativePath);
+ const declarationRecorder = host.beginUpdate(modulePath);
+ for (const change of declarationChanges) {
+ if (change instanceof change_1.InsertChange) {
+ declarationRecorder.insertLeft(change.pos, change.toAdd);
+ }
+ }
+ host.commitUpdate(declarationRecorder);
+ if (options.export) {
+ // Need to refresh the AST because we overwrote the file in the host.
+ const source = readIntoSourceFile(host, modulePath);
+ const exportRecorder = host.beginUpdate(modulePath);
+ const exportChanges = (0, ast_utils_1.addExportToModule)(source, modulePath, core_1.strings.classify(options.name) + core_1.strings.classify(options.type), relativePath);
+ for (const change of exportChanges) {
+ if (change instanceof change_1.InsertChange) {
+ exportRecorder.insertLeft(change.pos, change.toAdd);
+ }
+ }
+ host.commitUpdate(exportRecorder);
+ }
+ return host;
+ };
+}
+function buildSelector(options, projectPrefix) {
+ let selector = core_1.strings.dasherize(options.name);
+ if (options.prefix) {
+ selector = `${options.prefix}-${selector}`;
+ }
+ else if (options.prefix === undefined && projectPrefix) {
+ selector = `${projectPrefix}-${selector}`;
+ }
+ return selector;
+}
+function default_1(options) {
+ return async (host) => {
+ const workspace = await (0, workspace_1.getWorkspace)(host);
+ const project = workspace.projects.get(options.project);
+ if (!project) {
+ throw new schematics_1.SchematicsException(`Project "${options.project}" does not exist.`);
+ }
+ if (options.path === undefined) {
+ options.path = (0, workspace_1.buildDefaultPath)(project);
+ }
+ options.module = (0, find_module_1.findModuleFromOptions)(host, options);
+ const parsedPath = (0, parse_name_1.parseName)(options.path, options.name);
+ options.name = parsedPath.name;
+ options.path = parsedPath.path;
+ options.selector =
+ options.selector || buildSelector(options, (project && project.prefix) || '');
+ (0, validation_1.validateHtmlSelector)(options.selector);
+ const skipStyleFile = options.inlineStyle || options.style === schema_1.Style.None;
+ const templateSource = (0, schematics_1.apply)((0, schematics_1.url)('./files'), [
+ options.skipTests ? (0, schematics_1.filter)((path) => !path.endsWith('.spec.ts.template')) : (0, schematics_1.noop)(),
+ skipStyleFile ? (0, schematics_1.filter)((path) => !path.endsWith('.__style__.template')) : (0, schematics_1.noop)(),
+ options.inlineTemplate ? (0, schematics_1.filter)((path) => !path.endsWith('.html.template')) : (0, schematics_1.noop)(),
+ (0, schematics_1.applyTemplates)({
+ ...core_1.strings,
+ 'if-flat': (s) => (options.flat ? '' : s),
+ ...options,
+ }),
+ !options.type
+ ? (0, schematics_1.forEach)(((file) => {
+ return file.path.includes('..')
+ ? {
+ content: file.content,
+ path: file.path.replace('..', '.'),
+ }
+ : file;
+ }))
+ : (0, schematics_1.noop)(),
+ (0, schematics_1.move)(parsedPath.path),
+ ]);
+ return (0, schematics_1.chain)([addDeclarationToNgModule(options), (0, schematics_1.mergeWith)(templateSource)]);
+ };
+}
+exports.default = default_1;