ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
76 lines • 4.29 kB
JavaScript
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
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) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = default_1;
const schematics_1 = require("@angular/cdk/schematics");
const core_1 = require("@angular-devkit/core");
const schematics_2 = require("@angular-devkit/schematics");
const utility_1 = require("@schematics/angular/utility");
const app_config_1 = require("@schematics/angular/utility/standalone/app_config");
const util_1 = require("@schematics/angular/utility/standalone/util");
const workspace_1 = require("@schematics/angular/utility/workspace");
const apply_changes_1 = require("../../utils/apply-changes");
const root_module_1 = require("../../utils/root-module");
function default_1(options) {
return (host) => __awaiter(this, void 0, void 0, function* () {
const workspace = (yield (0, workspace_1.getWorkspace)(host));
const project = (0, schematics_1.getProjectFromWorkspace)(workspace, options.project);
const mainFile = (0, schematics_1.getProjectMainFile)(project);
const prefix = options.prefix || project.prefix;
const isStandalone = (0, schematics_1.isStandaloneApp)(host, mainFile);
const templateSourcePath = isStandalone ? './standalone' : './files';
return (0, schematics_2.chain)([
(0, schematics_2.mergeWith)((0, schematics_2.apply)((0, schematics_2.url)(`${templateSourcePath}/src`), [
(0, schematics_2.applyTemplates)(Object.assign(Object.assign(Object.assign({}, core_1.strings), options), { prefix })),
(0, schematics_2.move)(project.sourceRoot),
(0, schematics_2.forEach)((fileEntry) => {
if (host.exists(fileEntry.path)) {
host.overwrite(fileEntry.path, fileEntry.content);
}
return fileEntry;
})
]), schematics_2.MergeStrategy.Overwrite),
isStandalone ? addIconsProvider(options.project, mainFile) : addModules(options.project)
]);
});
}
function addModules(project) {
return (0, schematics_2.chain)([
(0, root_module_1.addModule)('AppRoutingModule', './app-routing.module', project),
(0, root_module_1.addModule)('IconsProviderModule', './icons-provider.module', project),
(0, root_module_1.addModule)('NzLayoutModule', 'ng-zorro-antd/layout', project),
(0, root_module_1.addModule)('NzMenuModule', 'ng-zorro-antd/menu', project)
]);
}
function addIconsProvider(project, mainFile) {
return (0, schematics_2.chain)([
importIconDefinitions(mainFile),
(0, utility_1.addRootProvider)(project, ({ code, external }) => {
return code `${external('provideNzIcons', 'ng-zorro-antd/icon')}(icons)`;
})
]);
}
function importIconDefinitions(mainFile) {
return (host) => __awaiter(this, void 0, void 0, function* () {
const bootstrapCall = (0, util_1.findBootstrapApplicationCall)(host, mainFile);
const appConfig = (0, app_config_1.findAppConfig)(bootstrapCall, host, mainFile);
const appConfigFile = appConfig.filePath;
const appConfigSource = (0, schematics_1.parseSourceFile)(host, appConfig.filePath);
(0, apply_changes_1.applyChangesToFile)(host, appConfigFile, [
(0, schematics_1.insertImport)(appConfigSource, appConfigFile, 'icons', './icons-provider')
]);
});
}
//# sourceMappingURL=index.js.map
;