aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/action.js
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
committerNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
commit6555fb80fdd8f6a5d201efadec3189d1244830a0 (patch)
treec1aa1c5aedc634ad1ea7fad4847884d559b51290 /sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/action.js
parent7d3640f824f46490b47bd95f1c5a16644f712068 (diff)
Izbrisala bin, obj i node-modules.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/action.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/action.js140
1 files changed, 0 insertions, 140 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/action.js b/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/action.js
deleted file mode 100644
index b5815892..00000000
--- a/sandbox/testAppNevena/Front/node_modules/@angular-devkit/schematics/src/tree/action.js
+++ /dev/null
@@ -1,140 +0,0 @@
-"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
- */
-Object.defineProperty(exports, "__esModule", { value: true });
-exports.isContentAction = exports.ActionList = exports.UnknownActionException = void 0;
-const core_1 = require("@angular-devkit/core");
-class UnknownActionException extends core_1.BaseException {
- constructor(action) {
- super(`Unknown action: "${action.kind}".`);
- }
-}
-exports.UnknownActionException = UnknownActionException;
-let _id = 1;
-class ActionList {
- constructor() {
- this._actions = [];
- }
- _action(action) {
- var _a, _b;
- this._actions.push({
- ...action,
- id: _id++,
- parent: (_b = (_a = this._actions[this._actions.length - 1]) === null || _a === void 0 ? void 0 : _a.id) !== null && _b !== void 0 ? _b : 0,
- });
- }
- create(path, content) {
- this._action({ kind: 'c', path, content });
- }
- overwrite(path, content) {
- this._action({ kind: 'o', path, content });
- }
- rename(path, to) {
- this._action({ kind: 'r', path, to });
- }
- delete(path) {
- this._action({ kind: 'd', path });
- }
- optimize() {
- const toCreate = new Map();
- const toRename = new Map();
- const toOverwrite = new Map();
- const toDelete = new Set();
- for (const action of this._actions) {
- switch (action.kind) {
- case 'c':
- toCreate.set(action.path, action.content);
- break;
- case 'o':
- if (toCreate.has(action.path)) {
- toCreate.set(action.path, action.content);
- }
- else {
- toOverwrite.set(action.path, action.content);
- }
- break;
- case 'd':
- toDelete.add(action.path);
- break;
- case 'r':
- const maybeCreate = toCreate.get(action.path);
- const maybeOverwrite = toOverwrite.get(action.path);
- if (maybeCreate) {
- toCreate.delete(action.path);
- toCreate.set(action.to, maybeCreate);
- }
- if (maybeOverwrite) {
- toOverwrite.delete(action.path);
- toOverwrite.set(action.to, maybeOverwrite);
- }
- let maybeRename = undefined;
- for (const [from, to] of toRename.entries()) {
- if (to == action.path) {
- maybeRename = from;
- break;
- }
- }
- if (maybeRename) {
- toRename.set(maybeRename, action.to);
- }
- if (!maybeCreate && !maybeOverwrite && !maybeRename) {
- toRename.set(action.path, action.to);
- }
- break;
- }
- }
- this._actions = [];
- toDelete.forEach((x) => {
- this.delete(x);
- });
- toRename.forEach((to, from) => {
- this.rename(from, to);
- });
- toCreate.forEach((content, path) => {
- this.create(path, content);
- });
- toOverwrite.forEach((content, path) => {
- this.overwrite(path, content);
- });
- }
- push(action) {
- this._actions.push(action);
- }
- get(i) {
- return this._actions[i];
- }
- has(action) {
- for (let i = 0; i < this._actions.length; i++) {
- const a = this._actions[i];
- if (a.id == action.id) {
- return true;
- }
- if (a.id > action.id) {
- return false;
- }
- }
- return false;
- }
- find(predicate) {
- return this._actions.find(predicate) || null;
- }
- forEach(fn, thisArg) {
- this._actions.forEach(fn, thisArg);
- }
- get length() {
- return this._actions.length;
- }
- [Symbol.iterator]() {
- return this._actions[Symbol.iterator]();
- }
-}
-exports.ActionList = ActionList;
-function isContentAction(action) {
- return action.kind == 'c' || action.kind == 'o';
-}
-exports.isContentAction = isContentAction;