mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.9 KiB
42 lines
1.9 KiB
"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.dev/license
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = default_1;
|
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
const schematics_2 = require("@angular/cdk/schematics");
|
|
/**
|
|
* Scaffolds a new dashboard component.
|
|
* Internally it bootstraps the base component schematic
|
|
*/
|
|
function default_1(options) {
|
|
return (0, schematics_1.chain)([
|
|
(0, schematics_2.buildComponent)({ ...options }, {
|
|
template: './__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html.template',
|
|
stylesheet: './__path__/__name@dasherize@if-flat__/__name@dasherize__.component.__style__.template',
|
|
}),
|
|
options.skipImport ? (0, schematics_1.noop)() : addNavModulesToModule(options),
|
|
]);
|
|
}
|
|
/**
|
|
* Adds the required modules to the relative module.
|
|
*/
|
|
function addNavModulesToModule(options) {
|
|
return async (host) => {
|
|
const isStandalone = await (0, schematics_2.isStandaloneSchematic)(host, options);
|
|
if (!isStandalone) {
|
|
const modulePath = (await (0, schematics_2.findModuleFromOptions)(host, options));
|
|
(0, schematics_2.addModuleImportToModule)(host, modulePath, 'MatGridListModule', '@angular/material/grid-list');
|
|
(0, schematics_2.addModuleImportToModule)(host, modulePath, 'MatCardModule', '@angular/material/card');
|
|
(0, schematics_2.addModuleImportToModule)(host, modulePath, 'MatMenuModule', '@angular/material/menu');
|
|
(0, schematics_2.addModuleImportToModule)(host, modulePath, 'MatIconModule', '@angular/material/icon');
|
|
(0, schematics_2.addModuleImportToModule)(host, modulePath, 'MatButtonModule', '@angular/material/button');
|
|
}
|
|
};
|
|
}
|
|
//# sourceMappingURL=index.js.map
|