@ngrx/schematics
Version:
NgRx Schematics for Angular
174 lines • 7.97 kB
JavaScript
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __read = (this && this.__read) || function (o, n) {
var m = typeof Symbol === "function" && o[Symbol.iterator];
if (!m) return o;
var i = m.call(o), r, ar = [], e;
try {
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
}
catch (error) { e = { error: error }; }
finally {
try {
if (r && !r.done && (m = i["return"])) m.call(i);
}
finally { if (e) throw e.error; }
}
return ar;
};
var __values = (this && this.__values) || function(o) {
var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
if (m) return m.call(o);
if (o && typeof o.length === "number") return {
next: function () {
if (o && i >= o.length) o = void 0;
return { value: o && o[i++], done: !o };
}
};
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.addComponentStoreProviderToComponent = exports.addComponentStoreProviderToNgModule = void 0;
var schematics_1 = require("@angular-devkit/schematics");
var ts = require("typescript");
var schematics_core_1 = require("../../schematics-core");
function createProvidingContext(options, providingPath) {
var componentStoreName = "".concat(schematics_core_1.stringUtils.classify("".concat(options.name, "Store")));
var componentStorePath = "/".concat(options.path, "/") +
(options.flat ? '' : schematics_core_1.stringUtils.dasherize(options.name) + '/') +
schematics_core_1.stringUtils.dasherize(options.name) +
'.store';
var componentStoreRelativePath = (0, schematics_core_1.buildRelativePath)(providingPath, componentStorePath);
return {
componentStoreRelativePath: componentStoreRelativePath,
componentStoreName: componentStoreName,
};
}
/**
* Add component store to NgModule
*/
function addComponentStoreProviderToNgModule(options) {
return function (host) {
var e_1, _a;
if (!options.module) {
return host;
}
var modulePath = options.module;
if (!host.exists(options.module)) {
throw new Error("Specified module path ".concat(modulePath, " does not exist"));
}
var text = host.read(modulePath);
if (text === null) {
throw new schematics_1.SchematicsException("File ".concat(modulePath, " does not exist."));
}
var sourceText = text.toString('utf-8');
var source = ts.createSourceFile(modulePath, sourceText, ts.ScriptTarget.Latest, true);
var context = createProvidingContext(options, options.module);
var componentStore = (0, schematics_core_1.insertImport)(source, modulePath, context.componentStoreName, context.componentStoreRelativePath);
var _b = __read((0, schematics_core_1.addProviderToModule)(source, modulePath, context.componentStoreName, context.componentStoreRelativePath), 1), storeNgModuleProvider = _b[0];
var changes = [componentStore, storeNgModuleProvider];
var recorder = host.beginUpdate(modulePath);
try {
for (var changes_1 = __values(changes), changes_1_1 = changes_1.next(); !changes_1_1.done; changes_1_1 = changes_1.next()) {
var change = changes_1_1.value;
if (change instanceof schematics_core_1.InsertChange) {
recorder.insertLeft(change.pos, change.toAdd);
}
}
}
catch (e_1_1) { e_1 = { error: e_1_1 }; }
finally {
try {
if (changes_1_1 && !changes_1_1.done && (_a = changes_1.return)) _a.call(changes_1);
}
finally { if (e_1) throw e_1.error; }
}
host.commitUpdate(recorder);
return host;
};
}
exports.addComponentStoreProviderToNgModule = addComponentStoreProviderToNgModule;
/**
* Add component store to Component
*/
function addComponentStoreProviderToComponent(options) {
return function (host) {
var e_2, _a;
if (!options.component) {
return host;
}
var componentPath = options.component;
if (!host.exists(options.component)) {
throw new Error("Specified component path ".concat(componentPath, " does not exist"));
}
var text = host.read(componentPath);
if (text === null) {
throw new schematics_1.SchematicsException("File ".concat(componentPath, " does not exist."));
}
var sourceText = text.toString('utf-8');
var source = ts.createSourceFile(componentPath, sourceText, ts.ScriptTarget.Latest, true);
var context = createProvidingContext(options, options.component);
var componentStore = (0, schematics_core_1.insertImport)(source, componentPath, context.componentStoreName, context.componentStoreRelativePath);
var _b = __read((0, schematics_core_1.addProviderToComponent)(source, componentPath, context.componentStoreName, context.componentStoreRelativePath), 1), storeNgModuleProvider = _b[0];
var changes = [componentStore, storeNgModuleProvider];
var recorder = host.beginUpdate(componentPath);
try {
for (var changes_2 = __values(changes), changes_2_1 = changes_2.next(); !changes_2_1.done; changes_2_1 = changes_2.next()) {
var change = changes_2_1.value;
if (change instanceof schematics_core_1.InsertChange) {
recorder.insertLeft(change.pos, change.toAdd);
}
}
}
catch (e_2_1) { e_2 = { error: e_2_1 }; }
finally {
try {
if (changes_2_1 && !changes_2_1.done && (_a = changes_2.return)) _a.call(changes_2);
}
finally { if (e_2) throw e_2.error; }
}
host.commitUpdate(recorder);
return host;
};
}
exports.addComponentStoreProviderToComponent = addComponentStoreProviderToComponent;
function default_1(options) {
return function (host, context) {
options.path = (0, schematics_core_1.getProjectPath)(host, options);
if (options.module) {
options.module = (0, schematics_core_1.findModuleFromOptions)(host, options);
}
if (options.component) {
options.component = (0, schematics_core_1.findComponentFromOptions)(host, options);
}
var parsedPath = (0, schematics_core_1.parseName)(options.path, options.name);
options.name = parsedPath.name;
options.path = parsedPath.path;
var templateSource = (0, schematics_1.apply)((0, schematics_1.url)('./files'), [
options.skipTests
? (0, schematics_1.filter)(function (path) { return !path.endsWith('.spec.ts.template'); })
: (0, schematics_1.noop)(),
(0, schematics_1.applyTemplates)(__assign(__assign(__assign({}, schematics_core_1.stringUtils), { 'if-flat': function (s) { return (options.flat ? '' : s); } }), options)),
(0, schematics_1.move)(parsedPath.path),
]);
return (0, schematics_1.chain)([
(0, schematics_1.branchAndMerge)((0, schematics_1.chain)([
addComponentStoreProviderToNgModule(options),
addComponentStoreProviderToComponent(options),
(0, schematics_1.mergeWith)(templateSource),
])),
])(host, context);
};
}
exports.default = default_1;
//# sourceMappingURL=index.js.map
;