@rxap/schematic-angular 16.2.0-dev.14 → 16.2.0-dev.16
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 +27 -0
- package/README.md +1 -1
- package/package.json +8 -8
- package/src/lib/accordion-identifier.d.ts +4 -0
- package/src/lib/accordion-identifier.js.map +1 -1
- package/src/lib/accordion-item.d.ts +13 -6
- package/src/lib/accordion-item.js +19 -4
- 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 +9 -1
- package/src/lib/data-grid-options.js +36 -6
- package/src/lib/data-grid-options.js.map +1 -1
- package/src/lib/form-control.d.ts +9 -3
- package/src/lib/form-control.js +19 -54
- package/src/lib/form-control.js.map +1 -1
- package/src/lib/merge-with-column-list.js +3 -1
- package/src/lib/merge-with-column-list.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/pipe-option.js +0 -2
- package/src/lib/pipe-option.js.map +1 -1
- package/src/lib/table-column.d.ts +9 -5
- package/src/lib/table-column.js +36 -60
- package/src/lib/table-column.js.map +1 -1
- package/src/schema.json +2368 -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 +331 -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.d.ts +2 -3
- package/src/schematics/data-grid-component/index.js +42 -45
- package/src/schematics/data-grid-component/index.js.map +1 -1
- package/src/schematics/data-grid-component/schema.json +261 -375
- 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 +26 -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.d.ts +7 -1
- package/src/schematics/form/control/table-select-form-control/index.js +195 -149
- 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 +101 -296
- package/src/schematics/form/control/table-select-form-control/template.schema.json +11 -6
- package/src/schematics/form/form-component/index.d.ts +2 -0
- package/src/schematics/form/form-component/index.js +6 -4
- package/src/schematics/form/form-component/index.js.map +1 -1
- package/src/schematics/form/form-component/schema.d.ts +3 -1
- package/src/schematics/form/form-component/schema.json +176 -233
- 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 +9 -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 +317 -310
- 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 +10 -2
- package/src/schematics/table/table-component/index.js +13 -1
- 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
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"$id": "accordion-item-table-component-schematic",
|
|
4
4
|
"allOf": [
|
|
5
5
|
{
|
|
6
|
-
"$ref": "
|
|
6
|
+
"$ref": "#/definitions/angular"
|
|
7
7
|
},
|
|
8
8
|
{
|
|
9
|
-
"$ref": "
|
|
9
|
+
"$ref": "#/definitions/accordionItem"
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"type": "object",
|
|
@@ -24,29 +24,20 @@
|
|
|
24
24
|
"description": "The table modifiers"
|
|
25
25
|
},
|
|
26
26
|
"table": {
|
|
27
|
-
"$ref": "
|
|
27
|
+
"$ref": "#/definitions/table"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
],
|
|
32
32
|
"definitions": {
|
|
33
|
-
"
|
|
34
|
-
"$ref": "../../../
|
|
35
|
-
},
|
|
36
|
-
"property": {
|
|
37
|
-
"$ref": "../../../property.schema.json"
|
|
38
|
-
},
|
|
39
|
-
"button": {
|
|
40
|
-
"$ref": "../../../button.schema.json"
|
|
41
|
-
},
|
|
42
|
-
"upstream": {
|
|
43
|
-
"$ref": "../../../upstream.schema.json"
|
|
33
|
+
"accordionItem": {
|
|
34
|
+
"$ref": "../../../accordion-item.schema.json"
|
|
44
35
|
},
|
|
45
|
-
"
|
|
46
|
-
"$ref": "../../../
|
|
36
|
+
"angular": {
|
|
37
|
+
"$ref": "../../../angular.schema.json"
|
|
47
38
|
},
|
|
48
|
-
"
|
|
49
|
-
"$ref": "../../../
|
|
39
|
+
"table": {
|
|
40
|
+
"$ref": "../../../table.schema.json"
|
|
50
41
|
}
|
|
51
42
|
}
|
|
52
43
|
}
|
|
@@ -3,7 +3,7 @@ import { NormalizedTreeTableAccordionItem } from '../../../../lib/accordion-item
|
|
|
3
3
|
import { NormalizedAngularOptions } from '../../../../lib/angular-options';
|
|
4
4
|
import { NormalizedAccordionItemStandaloneComponentOptions } from '../../accordion-item-component';
|
|
5
5
|
import { AccordionItemTreeTableComponentOptions } from './schema';
|
|
6
|
-
export interface NormalizedAccordionItemTreeTableComponentOptions extends Omit<Readonly<Normalized<AccordionItemTreeTableComponentOptions> & NormalizedAngularOptions & NormalizedAccordionItemStandaloneComponentOptions>, 'table' | 'importList'>, Omit<NormalizedTreeTableAccordionItem, 'kind'> {
|
|
6
|
+
export interface NormalizedAccordionItemTreeTableComponentOptions extends Omit<Readonly<Normalized<AccordionItemTreeTableComponentOptions> & NormalizedAngularOptions & NormalizedAccordionItemStandaloneComponentOptions>, 'table' | 'importList' | 'propertyList'>, Omit<NormalizedTreeTableAccordionItem, 'kind'> {
|
|
7
7
|
}
|
|
8
8
|
export declare function NormalizeAccordionItemTreeTableComponentOptions(options: Readonly<AccordionItemTreeTableComponentOptions>): Readonly<NormalizedAccordionItemTreeTableComponentOptions>;
|
|
9
9
|
export default function (options: AccordionItemTreeTableComponentOptions): () => import("@angular-devkit/schematics").Rule;
|
|
@@ -5,13 +5,14 @@ const core_1 = require("@angular-devkit/core");
|
|
|
5
5
|
const schematics_1 = require("@angular-devkit/schematics");
|
|
6
6
|
const schematics_ts_morph_1 = require("@rxap/schematics-ts-morph");
|
|
7
7
|
const schematics_utilities_1 = require("@rxap/schematics-utilities");
|
|
8
|
-
const ts_morph_1 = require("ts-morph");
|
|
8
|
+
const ts_morph_1 = require("@rxap/ts-morph");
|
|
9
|
+
const ts_morph_2 = require("ts-morph");
|
|
9
10
|
const accordion_item_1 = require("../../../../lib/accordion-item");
|
|
10
11
|
const accordion_itme_kinds_1 = require("../../../../lib/accordion-itme-kinds");
|
|
11
|
-
const angular_options_1 = require("../../../../lib/angular-options");
|
|
12
12
|
const backend_types_1 = require("../../../../lib/backend-types");
|
|
13
13
|
const coerce_accordion_item_table_component_1 = require("../../../../lib/coerce-accordion-item-table-component");
|
|
14
14
|
const tree_table_options_1 = require("../../../../lib/tree-table-options");
|
|
15
|
+
const tree_table_component_1 = require("../../../table/tree-table-component");
|
|
15
16
|
const accordion_item_component_1 = require("../../accordion-item-component");
|
|
16
17
|
function NormalizeAccordionItemTreeTableComponentOptions(options) {
|
|
17
18
|
const normalizedAccordionItemComponentOptions = (0, accordion_item_component_1.NormalizeAccordionItemStandaloneComponentOptions)(options);
|
|
@@ -19,7 +20,7 @@ function NormalizeAccordionItemTreeTableComponentOptions(options) {
|
|
|
19
20
|
}
|
|
20
21
|
exports.NormalizeAccordionItemTreeTableComponentOptions = NormalizeAccordionItemTreeTableComponentOptions;
|
|
21
22
|
function printOptions(options) {
|
|
22
|
-
(0,
|
|
23
|
+
(0, accordion_item_component_1.printAccordionItemComponentOptions)(options, 'accordion-item-tree-table-component');
|
|
23
24
|
}
|
|
24
25
|
function componentRule(normalizedOptions) {
|
|
25
26
|
const { componentName, project, feature, directory, shared, overwrite, name, } = normalizedOptions;
|
|
@@ -67,28 +68,43 @@ function treeTableComponentSchematicRule(normalizedOptions) {
|
|
|
67
68
|
}),
|
|
68
69
|
]);
|
|
69
70
|
}
|
|
71
|
+
function coerceIdentifierParameterResolver({ identifier }) {
|
|
72
|
+
return (project, sourceFile, classDeclaration) => {
|
|
73
|
+
if ((identifier === null || identifier === void 0 ? void 0 : identifier.source) === 'route') {
|
|
74
|
+
(0, ts_morph_1.CoerceImports)(sourceFile, {
|
|
75
|
+
moduleSpecifier: '@angular/router',
|
|
76
|
+
namedImports: ['ActivatedRoute'],
|
|
77
|
+
});
|
|
78
|
+
const [constructorDeclaration] = (0, ts_morph_1.CoerceClassConstructor)(classDeclaration);
|
|
79
|
+
(0, schematics_ts_morph_1.CoerceParameterDeclaration)(constructorDeclaration, 'route').set({
|
|
80
|
+
type: 'ActivatedRoute',
|
|
81
|
+
isReadonly: true,
|
|
82
|
+
scope: ts_morph_2.Scope.Private,
|
|
83
|
+
});
|
|
84
|
+
return {
|
|
85
|
+
statements: [
|
|
86
|
+
`const { ${identifier.property.name} } = this.route.snapshot.params;`,
|
|
87
|
+
`return { parameters: { ${identifier.property.name} } };`,
|
|
88
|
+
],
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
return {};
|
|
92
|
+
};
|
|
93
|
+
}
|
|
70
94
|
function nestjsBackendRule(normalizedOptions) {
|
|
71
|
-
const {
|
|
95
|
+
const { nestModule, directory, project, feature, shared, scope, identifier, controllerName, } = normalizedOptions;
|
|
72
96
|
const { hasSharedModifier, } = (0, accordion_item_component_1.GetItemOptions)(normalizedOptions);
|
|
73
|
-
const
|
|
74
|
-
|
|
75
|
-
nestModule: hasSharedModifier ? undefined : nestModule,
|
|
76
|
-
});
|
|
97
|
+
const getRootOperationId = (0, tree_table_component_1.BuildTreeTableGetRootOperationId)(normalizedOptions);
|
|
98
|
+
const getChildrenOperationId = (0, tree_table_component_1.BuildTreeTableGeChildrenOperationId)(normalizedOptions);
|
|
77
99
|
return (0, schematics_1.chain)([
|
|
78
100
|
() => console.log(`Modify the get root operation ...`),
|
|
79
101
|
(0, schematics_ts_morph_1.CoerceGetRootOperation)({
|
|
80
102
|
controllerName,
|
|
81
|
-
nestModule: hasSharedModifier ? undefined : nestModule,
|
|
82
103
|
project,
|
|
104
|
+
nestModule,
|
|
83
105
|
feature,
|
|
84
106
|
shared: hasSharedModifier,
|
|
85
|
-
|
|
86
|
-
{
|
|
87
|
-
name: 'uuid',
|
|
88
|
-
type: 'string',
|
|
89
|
-
fromParent: !hasSharedModifier,
|
|
90
|
-
},
|
|
91
|
-
],
|
|
107
|
+
idProperty: identifier === null || identifier === void 0 ? void 0 : identifier.property,
|
|
92
108
|
skipCoerce: true,
|
|
93
109
|
}),
|
|
94
110
|
() => console.log(`Modify the get children operation ...`),
|
|
@@ -98,13 +114,7 @@ function nestjsBackendRule(normalizedOptions) {
|
|
|
98
114
|
project,
|
|
99
115
|
feature,
|
|
100
116
|
shared: hasSharedModifier,
|
|
101
|
-
|
|
102
|
-
{
|
|
103
|
-
name: 'uuid',
|
|
104
|
-
type: 'string',
|
|
105
|
-
fromParent: !hasSharedModifier,
|
|
106
|
-
},
|
|
107
|
-
],
|
|
117
|
+
idProperty: identifier === null || identifier === void 0 ? void 0 : identifier.property,
|
|
108
118
|
skipCoerce: true,
|
|
109
119
|
}),
|
|
110
120
|
() => console.log(`Modify the get root proxy method ...`),
|
|
@@ -114,25 +124,8 @@ function nestjsBackendRule(normalizedOptions) {
|
|
|
114
124
|
shared,
|
|
115
125
|
directory,
|
|
116
126
|
scope,
|
|
117
|
-
getRootOperationId
|
|
118
|
-
tsMorphTransform: (
|
|
119
|
-
(0, schematics_ts_morph_1.CoerceImports)(sourceFile, {
|
|
120
|
-
moduleSpecifier: '@angular/router',
|
|
121
|
-
namedImports: ['ActivatedRoute'],
|
|
122
|
-
});
|
|
123
|
-
const [constructorDeclaration] = (0, schematics_ts_morph_1.CoerceClassConstructor)(classDeclaration);
|
|
124
|
-
(0, schematics_ts_morph_1.CoerceParameterDeclaration)(constructorDeclaration, 'route').set({
|
|
125
|
-
type: 'ActivatedRoute',
|
|
126
|
-
isReadonly: true,
|
|
127
|
-
scope: ts_morph_1.Scope.Private,
|
|
128
|
-
});
|
|
129
|
-
return {
|
|
130
|
-
statements: [
|
|
131
|
-
'const { uuid } = this.route.snapshot.params;',
|
|
132
|
-
'return { parameters: { uuid } };',
|
|
133
|
-
],
|
|
134
|
-
};
|
|
135
|
-
},
|
|
127
|
+
getRootOperationId,
|
|
128
|
+
tsMorphTransform: coerceIdentifierParameterResolver(normalizedOptions),
|
|
136
129
|
}),
|
|
137
130
|
() => console.log(`Modify the get children proxy method ...`),
|
|
138
131
|
(0, schematics_ts_morph_1.CoerceTreeTableChildrenProxyRemoteMethodClass)({
|
|
@@ -141,25 +134,8 @@ function nestjsBackendRule(normalizedOptions) {
|
|
|
141
134
|
shared,
|
|
142
135
|
directory,
|
|
143
136
|
scope,
|
|
144
|
-
getChildrenOperationId
|
|
145
|
-
tsMorphTransform: (
|
|
146
|
-
(0, schematics_ts_morph_1.CoerceImports)(sourceFile, {
|
|
147
|
-
moduleSpecifier: '@angular/router',
|
|
148
|
-
namedImports: ['ActivatedRoute'],
|
|
149
|
-
});
|
|
150
|
-
const [constructorDeclaration] = (0, schematics_ts_morph_1.CoerceClassConstructor)(classDeclaration);
|
|
151
|
-
(0, schematics_ts_morph_1.CoerceParameterDeclaration)(constructorDeclaration, 'route').set({
|
|
152
|
-
type: 'ActivatedRoute',
|
|
153
|
-
isReadonly: true,
|
|
154
|
-
scope: ts_morph_1.Scope.Private,
|
|
155
|
-
});
|
|
156
|
-
return {
|
|
157
|
-
statements: [
|
|
158
|
-
'const { uuid } = this.route.snapshot.params;',
|
|
159
|
-
'return { parameters: { uuid, parentUuid: source.id } };',
|
|
160
|
-
],
|
|
161
|
-
};
|
|
162
|
-
},
|
|
137
|
+
getChildrenOperationId,
|
|
138
|
+
tsMorphTransform: coerceIdentifierParameterResolver(normalizedOptions),
|
|
163
139
|
}),
|
|
164
140
|
]);
|
|
165
141
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/accordion/item/accordion-item-tree-table-component/index.ts"],"names":[],"mappings":";;;AAAA,+CAA+C;AAC/C,2DAGoC;AACpC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../packages/schematic/angular/src/schematics/accordion/item/accordion-item-tree-table-component/index.ts"],"names":[],"mappings":"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"}
|