@rxap/schematic-angular 16.2.0-dev.14 → 16.2.0-dev.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/package.json +2 -2
- package/src/lib/accordion-item.d.ts +13 -6
- package/src/lib/accordion-item.js +10 -1
- package/src/lib/accordion-item.js.map +1 -1
- package/src/lib/coerce-accordion-component.js +1 -1
- package/src/lib/coerce-accordion-component.js.map +1 -1
- package/src/lib/coerce-accordion-item-table-component.js +1 -1
- package/src/lib/coerce-accordion-item-table-component.js.map +1 -1
- package/src/lib/data-grid-options.d.ts +3 -0
- package/src/lib/data-grid-options.js +2 -0
- package/src/lib/data-grid-options.js.map +1 -1
- package/src/lib/form-control.d.ts +2 -2
- package/src/lib/form-control.js +14 -43
- package/src/lib/form-control.js.map +1 -1
- package/src/lib/minimum-table-component-options.js +2 -2
- package/src/lib/minimum-table-component-options.js.map +1 -1
- package/src/lib/table-column.d.ts +9 -5
- package/src/lib/table-column.js +37 -59
- package/src/lib/table-column.js.map +1 -1
- package/src/schema.json +2347 -0
- package/src/schematic-input.schema.json +607 -0
- package/src/schematics/accordion/accordion-component/index.d.ts +5 -2
- package/src/schematics/accordion/accordion-component/index.js +51 -25
- package/src/schematics/accordion/accordion-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-component/schema.d.ts +6 -0
- package/src/schematics/accordion/accordion-component/schema.json +183 -360
- package/src/schematics/accordion/accordion-component/template.schema.json +22 -25
- package/src/schematics/accordion/accordion-item-component/index.d.ts +7 -2
- package/src/schematics/accordion/accordion-item-component/index.js +70 -49
- package/src/schematics/accordion/accordion-item-component/index.js.map +1 -1
- package/src/schematics/accordion/accordion-item-component/schema.json +167 -336
- package/src/schematics/accordion/accordion-item-component/template.schema.json +8 -15
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js +21 -25
- package/src/schematics/accordion/item/accordion-item-data-grid-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-data-grid-component/schema.json +321 -429
- package/src/schematics/accordion/item/accordion-item-data-grid-component/template.schema.json +9 -15
- package/src/schematics/accordion/item/accordion-item-switch-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-switch-component/index.js +14 -6
- package/src/schematics/accordion/item/accordion-item-switch-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-switch-component/schema.json +174 -346
- package/src/schematics/accordion/item/accordion-item-switch-component/template.schema.json +6 -15
- package/src/schematics/accordion/item/accordion-item-table-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-table-component/index.js +11 -13
- package/src/schematics/accordion/item/accordion-item-table-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-table-component/schema.json +453 -614
- package/src/schematics/accordion/item/accordion-item-table-component/template.schema.json +9 -18
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.d.ts +1 -1
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js +37 -61
- package/src/schematics/accordion/item/accordion-item-tree-table-component/index.js.map +1 -1
- package/src/schematics/accordion/item/accordion-item-tree-table-component/schema.json +431 -592
- package/src/schematics/accordion/item/accordion-item-tree-table-component/template.schema.json +10 -19
- package/src/schematics/accordion-identifier.schema.json +25 -0
- package/src/schematics/accordion-item.schema.json +24 -0
- package/src/schematics/angular.schema.json +11 -3
- package/src/schematics/button.schema.json +1 -1
- package/src/schematics/data-grid-component/index.js +17 -16
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/data-grid-component/schema.json +212 -378
- package/src/schematics/data-grid-component/template.schema.json +6 -15
- package/src/schematics/data-grid-item.schema.json +4 -1
- package/src/schematics/data-grid.schema.json +10 -4
- package/src/schematics/dialog-component/schema.json +72 -158
- package/src/schematics/dialog-component/template.schema.json +3 -6
- package/src/schematics/form/control/input-form-control/schema.json +108 -306
- package/src/schematics/form/control/input-form-control/template.schema.json +6 -9
- package/src/schematics/form/control/select-form-control/schema.json +120 -307
- package/src/schematics/form/control/select-form-control/template.schema.json +6 -9
- package/src/schematics/form/control/table-select-form-control/index.js +1 -1
- package/src/schematics/form/control/table-select-form-control/index.js.map +1 -1
- package/src/schematics/form/control/table-select-form-control/schema.json +93 -296
- package/src/schematics/form/control/table-select-form-control/template.schema.json +3 -6
- package/src/schematics/form/form-component/schema.json +136 -238
- package/src/schematics/form/form-component/template.schema.json +6 -9
- package/src/schematics/form/form-control/schema.json +68 -176
- package/src/schematics/form/form-control/template.schema.json +6 -9
- package/src/schematics/form/form-definition/schema.json +125 -230
- package/src/schematics/form/form-definition/template.schema.json +6 -9
- package/src/schematics/form-component.schema.json +3 -3
- package/src/schematics/form-definition.schema.json +3 -3
- package/src/schematics/general.schema.json +1 -4
- package/src/schematics/input-form-control.schema.json +11 -3
- package/src/schematics/minimum-table.schema.json +11 -5
- package/src/schematics/pipe.schema.json +1 -1
- package/src/schematics/select-form-control.schema.json +15 -4
- package/src/schematics/table/action/dialog-table-action/schema.json +150 -230
- package/src/schematics/table/action/dialog-table-action/template.schema.json +3 -6
- package/src/schematics/table/action/form-table-action/schema.json +283 -321
- package/src/schematics/table/action/form-table-action/template.schema.json +6 -6
- package/src/schematics/table/action/navigation-table-action/schema.json +150 -230
- package/src/schematics/table/action/navigation-table-action/template.schema.json +3 -6
- package/src/schematics/table/action/open-api-table-action/schema.json +150 -230
- package/src/schematics/table/action/open-api-table-action/template.schema.json +3 -6
- package/src/schematics/table/action/operation-table-action/schema.json +138 -218
- package/src/schematics/table/action/operation-table-action/template.schema.json +3 -6
- package/src/schematics/table/header-button/form-table-header-button/schema.json +217 -261
- package/src/schematics/table/header-button/form-table-header-button/template.schema.json +6 -6
- package/src/schematics/table/header-button/navigation-table-header-button/schema.json +131 -211
- package/src/schematics/table/header-button/navigation-table-header-button/template.schema.json +3 -6
- package/src/schematics/table/table-action/schema.json +56 -139
- package/src/schematics/table/table-action/template.schema.json +6 -6
- package/src/schematics/table/table-component/index.d.ts +1 -1
- package/src/schematics/table/table-component/index.js +2 -0
- package/src/schematics/table/table-component/index.js.map +1 -1
- package/src/schematics/table/table-component/schema.json +352 -547
- package/src/schematics/table/table-component/template.schema.json +6 -18
- package/src/schematics/table/table-header-button/schema.json +56 -139
- package/src/schematics/table/table-header-button/template.schema.json +6 -6
- package/src/schematics/table/tree-table-component/files/component/__componentName__.component.html.hbs +6 -0
- package/src/schematics/table/tree-table-component/index.d.ts +3 -0
- package/src/schematics/table/tree-table-component/index.js +11 -3
- package/src/schematics/table/tree-table-component/index.js.map +1 -1
- package/src/schematics/table/tree-table-component/schema.json +352 -547
- package/src/schematics/table/tree-table-component/template.schema.json +6 -18
- package/src/schematics/table-column.schema.json +4 -1
- package/src/schematics/table.schema.json +4 -1
- package/src/schematics/tree-component/schema.json +70 -62
- package/src/schematics/tree-component/template.schema.json +7 -2
- package/src/schematics/tree-table.schema.json +3 -3
- package/src/schematics/value.schema.json +1 -1
- package/src/template.schema.json +173 -0
|
@@ -11,7 +11,6 @@ const path_1 = require("path");
|
|
|
11
11
|
const ts_morph_2 = require("ts-morph");
|
|
12
12
|
const accordion_item_1 = require("../../../../lib/accordion-item");
|
|
13
13
|
const accordion_itme_kinds_1 = require("../../../../lib/accordion-itme-kinds");
|
|
14
|
-
const angular_options_1 = require("../../../../lib/angular-options");
|
|
15
14
|
const backend_types_1 = require("../../../../lib/backend-types");
|
|
16
15
|
const data_grid_mode_1 = require("../../../../lib/data-grid-mode");
|
|
17
16
|
const accordion_item_component_1 = require("../../accordion-item-component");
|
|
@@ -21,23 +20,25 @@ function NormalizeAccordionItemDataGridComponentOptions(options) {
|
|
|
21
20
|
}
|
|
22
21
|
exports.NormalizeAccordionItemDataGridComponentOptions = NormalizeAccordionItemDataGridComponentOptions;
|
|
23
22
|
function printOptions(options) {
|
|
24
|
-
(0,
|
|
23
|
+
(0, accordion_item_component_1.printAccordionItemComponentOptions)(options, 'accordion-item-data-grid-component');
|
|
25
24
|
if (options.dataGrid.itemList.length) {
|
|
26
|
-
console.log(
|
|
25
|
+
console.log(`===== Data Grid Items: \x1b[34m${options.dataGrid.itemList.map((item) => item.name).join(', ')}\x1b[0m`);
|
|
27
26
|
}
|
|
28
27
|
else {
|
|
29
|
-
console.log('
|
|
28
|
+
console.log('===== Data Grid Items: \x1b[31mempty\x1b[0m');
|
|
30
29
|
}
|
|
31
30
|
}
|
|
32
31
|
function componentRule(normalizedOptions) {
|
|
33
32
|
var _a, _b;
|
|
34
|
-
const { name, nestModule, directory, project, feature, overwrite, componentName, shared, backend, dataGrid, controllerName, } = normalizedOptions;
|
|
33
|
+
const { name, nestModule, directory, project, feature, overwrite, componentName, shared, backend, dataGrid, controllerName, upstream, identifier, } = normalizedOptions;
|
|
35
34
|
const { hasSharedModifier, hasCollectionModifier, hasEditModifier, } = (0, accordion_item_component_1.GetItemOptions)(normalizedOptions);
|
|
36
35
|
const templateOptions = Object.assign(Object.assign(Object.assign({}, core_1.strings), normalizedOptions), (0, accordion_item_component_1.GetItemOptions)(normalizedOptions));
|
|
37
36
|
return (0, schematics_1.chain)([
|
|
38
37
|
() => console.log(`Coerce data grid component ...`),
|
|
39
38
|
(0, schematics_utilities_1.ExecuteSchematic)('data-grid-component', Object.assign(Object.assign({}, dataGrid), { project,
|
|
40
|
-
feature, shared: hasSharedModifier, name: name, nestModule: hasSharedModifier ? undefined : nestModule, controllerName, directory: hasSharedModifier ? undefined : directory, collection: hasCollectionModifier || ((_a = dataGrid === null || dataGrid === void 0 ? void 0 : dataGrid.collection) !== null && _a !== void 0 ? _a : false), mode: hasEditModifier ? 'form' : ((_b = dataGrid === null || dataGrid === void 0 ? void 0 : dataGrid.mode) !== null && _b !== void 0 ? _b : 'plain'), backend: backend, overwrite
|
|
39
|
+
feature, shared: hasSharedModifier, name: name, nestModule: hasSharedModifier ? undefined : nestModule, controllerName, directory: hasSharedModifier ? undefined : directory, collection: hasCollectionModifier || ((_a = dataGrid === null || dataGrid === void 0 ? void 0 : dataGrid.collection) !== null && _a !== void 0 ? _a : false), mode: hasEditModifier ? 'form' : ((_b = dataGrid === null || dataGrid === void 0 ? void 0 : dataGrid.mode) !== null && _b !== void 0 ? _b : 'plain'), backend: backend, overwrite,
|
|
40
|
+
upstream,
|
|
41
|
+
identifier })),
|
|
41
42
|
(0, schematics_ts_morph_1.CoerceComponentRule)({
|
|
42
43
|
name: componentName,
|
|
43
44
|
project,
|
|
@@ -79,8 +80,12 @@ function componentRule(normalizedOptions) {
|
|
|
79
80
|
]);
|
|
80
81
|
}
|
|
81
82
|
function nestjsBackendRule(normalizedOptions) {
|
|
82
|
-
const { name,
|
|
83
|
+
const { name, directory, project, feature, shared, identifier, upstream, controllerName, nestModule, } = normalizedOptions;
|
|
83
84
|
const { hasSharedModifier, hasCollectionModifier, hasEditModifier, } = (0, accordion_item_component_1.GetItemOptions)(normalizedOptions);
|
|
85
|
+
const paramList = [];
|
|
86
|
+
if (identifier) {
|
|
87
|
+
paramList.push(Object.assign(Object.assign({}, identifier.property), { fromParent: !hasSharedModifier }));
|
|
88
|
+
}
|
|
84
89
|
const rules = ([
|
|
85
90
|
() => console.log(`Modify the data source class ...`),
|
|
86
91
|
(0, schematics_ts_morph_1.CoerceDataSourceClass)({
|
|
@@ -108,37 +113,28 @@ function nestjsBackendRule(normalizedOptions) {
|
|
|
108
113
|
}),
|
|
109
114
|
() => console.log(`Modify the get data grid operation ...`),
|
|
110
115
|
(0, schematics_ts_morph_1.CoerceGetDataGridOperation)({
|
|
111
|
-
controllerName
|
|
116
|
+
controllerName,
|
|
112
117
|
project,
|
|
113
118
|
feature,
|
|
119
|
+
nestModule,
|
|
114
120
|
shared,
|
|
115
|
-
nestModule: hasSharedModifier ? undefined : nestModule,
|
|
116
121
|
collection: hasCollectionModifier,
|
|
117
|
-
paramList
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
type: 'string',
|
|
121
|
-
fromParent: !hasSharedModifier,
|
|
122
|
-
},
|
|
123
|
-
],
|
|
122
|
+
paramList,
|
|
123
|
+
upstream,
|
|
124
|
+
idProperty: identifier === null || identifier === void 0 ? void 0 : identifier.property,
|
|
124
125
|
skipCoerce: true,
|
|
125
126
|
}),
|
|
126
127
|
]);
|
|
127
128
|
if (hasEditModifier) {
|
|
128
129
|
rules.push(() => console.log(`Modify the submit data grid operation ...`), (0, schematics_ts_morph_1.CoerceSubmitDataGridOperation)({
|
|
129
|
-
controllerName
|
|
130
|
-
nestModule: hasSharedModifier ? undefined : nestModule,
|
|
130
|
+
controllerName,
|
|
131
131
|
project,
|
|
132
132
|
feature,
|
|
133
133
|
shared,
|
|
134
|
+
nestModule,
|
|
134
135
|
collection: hasCollectionModifier,
|
|
135
|
-
paramList
|
|
136
|
-
|
|
137
|
-
name: 'uuid',
|
|
138
|
-
type: 'string',
|
|
139
|
-
fromParent: !hasSharedModifier,
|
|
140
|
-
},
|
|
141
|
-
],
|
|
136
|
+
paramList,
|
|
137
|
+
idProperty: identifier === null || identifier === void 0 ? void 0 : identifier.property,
|
|
142
138
|
skipCoerce: true,
|
|
143
139
|
}));
|
|
144
140
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/accordion/item/accordion-item-data-grid-component/index.ts"],"names":[],"mappings":";;;AAAA,+CAA+C;AAC/C,2DAIoC;AACpC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/accordion/item/accordion-item-data-grid-component/index.ts"],"names":[],"mappings":"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"}
|