@rxap/schematics-ts-morph 16.1.0-dev.12 → 16.1.0-dev.13
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 +6 -0
- package/README.md +1 -1
- package/package.json +4 -4
- package/src/lib/angular/coerce-proxy-remote-method-class.d.ts +2 -0
- package/src/lib/angular/coerce-proxy-remote-method-class.js +41 -19
- package/src/lib/angular/coerce-proxy-remote-method-class.js.map +1 -1
- package/src/lib/angular/coerce-tree-table-root-proxy-remote-method-class.d.ts +1 -0
- package/src/lib/angular/coerce-tree-table-root-proxy-remote-method-class.js +10 -3
- package/src/lib/angular/coerce-tree-table-root-proxy-remote-method-class.js.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [16.1.0-dev.13](https://gitlab.com/rxap/packages/compare/@rxap/schematics-ts-morph@16.1.0-dev.12...@rxap/schematics-ts-morph@16.1.0-dev.13) (2024-03-07)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- use defined identifier property ([fd5fa55](https://gitlab.com/rxap/packages/commit/fd5fa55b7e580475227340ffd8b1d6c39847b626))
|
|
11
|
+
|
|
6
12
|
# [16.1.0-dev.12](https://gitlab.com/rxap/packages/compare/@rxap/schematics-ts-morph@16.1.0-dev.11...@rxap/schematics-ts-morph@16.1.0-dev.12) (2024-03-07)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -17,5 +17,5 @@ yarn add @rxap/schematics-ts-morph
|
|
|
17
17
|
```
|
|
18
18
|
**Install peer dependencies:**
|
|
19
19
|
```bash
|
|
20
|
-
yarn add @angular-devkit/core@^16.1.4 @angular-devkit/schematics@^16.1.4 @rxap/schematics-utilities@^16.0.1-dev.1 @rxap/ts-morph@^1.1.0-dev.
|
|
20
|
+
yarn add @angular-devkit/core@^16.1.4 @angular-devkit/schematics@^16.1.4 @rxap/schematics-utilities@^16.0.1-dev.1 @rxap/ts-morph@^1.1.0-dev.12 @rxap/utilities@^16.1.0-dev.6 @rxap/workspace-ts-morph@^16.0.2-dev.1 colors@^1.4.0 handlebars@^4.7.7 ts-morph@^18.0.0 tslib@2.6.2
|
|
21
21
|
```
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "16.1.0-dev.
|
|
2
|
+
"version": "16.1.0-dev.13",
|
|
3
3
|
"name": "@rxap/schematics-ts-morph",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@angular-devkit/core": "^16.1.4",
|
|
14
14
|
"@angular-devkit/schematics": "^16.1.4",
|
|
15
15
|
"@rxap/schematics-utilities": "^16.0.1-dev.1",
|
|
16
|
-
"@rxap/ts-morph": "^1.1.0-dev.
|
|
16
|
+
"@rxap/ts-morph": "^1.1.0-dev.12",
|
|
17
17
|
"@rxap/utilities": "^16.1.0-dev.6",
|
|
18
18
|
"@rxap/workspace-ts-morph": "^16.0.2-dev.1",
|
|
19
19
|
"colors": "^1.4.0",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
{
|
|
51
51
|
"package": "@rxap/ts-morph",
|
|
52
|
-
"version": "1.1.0-dev.
|
|
52
|
+
"version": "1.1.0-dev.12"
|
|
53
53
|
},
|
|
54
54
|
{
|
|
55
55
|
"package": "@rxap/utilities",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"directory": "packages/schematic/ts-morph"
|
|
72
72
|
},
|
|
73
73
|
"type": "commonjs",
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "86465ff6bf6b3ae2429379c43143a40d2110469b",
|
|
75
75
|
"main": "./src/index.js",
|
|
76
76
|
"types": "./src/index.d.ts"
|
|
77
77
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { NormalizedIdentifierOptions } from '@rxap/ts-morph';
|
|
1
2
|
import { TsMorphAngularProjectTransformOptions } from '@rxap/workspace-ts-morph';
|
|
2
3
|
import { ClassDeclaration, MethodDeclarationStructure, Project, SourceFile, WriterFunction } from 'ts-morph';
|
|
3
4
|
export interface CoerceProxyRemoteMethodClassOptions extends TsMorphAngularProjectTransformOptions {
|
|
@@ -7,5 +8,6 @@ export interface CoerceProxyRemoteMethodClassOptions extends TsMorphAngularProje
|
|
|
7
8
|
sourceType: string | WriterFunction;
|
|
8
9
|
targetType: string | WriterFunction;
|
|
9
10
|
proxyMethod: string | WriterFunction;
|
|
11
|
+
identifier?: NormalizedIdentifierOptions | null;
|
|
10
12
|
}
|
|
11
13
|
export declare function CoerceProxyRemoteMethodClass(options: CoerceProxyRemoteMethodClassOptions): import("@angular-devkit/schematics").Rule;
|
|
@@ -4,9 +4,10 @@ exports.CoerceProxyRemoteMethodClass = void 0;
|
|
|
4
4
|
const schematics_utilities_1 = require("@rxap/schematics-utilities");
|
|
5
5
|
const ts_morph_1 = require("@rxap/ts-morph");
|
|
6
6
|
const utilities_1 = require("@rxap/utilities");
|
|
7
|
+
const ts_morph_2 = require("ts-morph");
|
|
7
8
|
const ts_morph_transform_1 = require("../ts-morph-transform");
|
|
8
9
|
function CoerceProxyRemoteMethodClass(options) {
|
|
9
|
-
const { override, name, tsMorphTransform = utilities_1.noop, sourceType, targetType, proxyMethod, } = options;
|
|
10
|
+
const { override, name, tsMorphTransform = utilities_1.noop, sourceType, targetType, proxyMethod, identifier, } = options;
|
|
10
11
|
const className = (0, schematics_utilities_1.classify)((0, schematics_utilities_1.CoerceSuffix)(name, 'ProxyMethod'));
|
|
11
12
|
const fileName = (0, schematics_utilities_1.CoerceSuffix)(name, '-proxy.method.ts');
|
|
12
13
|
return (0, ts_morph_transform_1.TsMorphAngularProjectTransformRule)(options, (project) => {
|
|
@@ -41,23 +42,23 @@ function CoerceProxyRemoteMethodClass(options) {
|
|
|
41
42
|
statements: ['super(method);'],
|
|
42
43
|
},
|
|
43
44
|
],
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
45
|
+
});
|
|
46
|
+
classDeclaration.setExtends(w => {
|
|
47
|
+
w.write('ProxyRemoteMethod<');
|
|
48
|
+
if (typeof sourceType === 'string') {
|
|
49
|
+
w.write(sourceType);
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
sourceType(w);
|
|
53
|
+
}
|
|
54
|
+
w.write(', ');
|
|
55
|
+
if (typeof targetType === 'string') {
|
|
56
|
+
w.write(targetType);
|
|
57
|
+
}
|
|
58
|
+
else {
|
|
59
|
+
targetType(w);
|
|
60
|
+
}
|
|
61
|
+
w.write('>');
|
|
61
62
|
});
|
|
62
63
|
(0, ts_morph_1.CoerceImports)(sourceFile, {
|
|
63
64
|
moduleSpecifier: '@rxap/pattern',
|
|
@@ -78,7 +79,28 @@ function CoerceProxyRemoteMethodClass(options) {
|
|
|
78
79
|
type: sourceType,
|
|
79
80
|
},
|
|
80
81
|
]);
|
|
81
|
-
(
|
|
82
|
+
if ((identifier === null || identifier === void 0 ? void 0 : identifier.source) === 'route' && !methodStructure.statements) {
|
|
83
|
+
(0, ts_morph_1.CoerceClassProperty)(classDeclaration, 'route', {
|
|
84
|
+
scope: ts_morph_2.Scope.Protected,
|
|
85
|
+
initializer: 'inject(ActivatedRoute)',
|
|
86
|
+
isReadonly: true,
|
|
87
|
+
});
|
|
88
|
+
(0, ts_morph_1.CoerceImports)(sourceFile, {
|
|
89
|
+
moduleSpecifier: '@angular/router',
|
|
90
|
+
namedImports: ['ActivatedRoute'],
|
|
91
|
+
});
|
|
92
|
+
(0, ts_morph_1.CoerceImports)(sourceFile, {
|
|
93
|
+
moduleSpecifier: '@angular/core',
|
|
94
|
+
namedImports: ['inject'],
|
|
95
|
+
});
|
|
96
|
+
methodStructure.statements = [
|
|
97
|
+
`const { ${identifier.property.name} } = this.route.snapshot.params;`,
|
|
98
|
+
`return { parameters: { ${identifier.property.name} } };`,
|
|
99
|
+
];
|
|
100
|
+
}
|
|
101
|
+
else {
|
|
102
|
+
(_c = methodStructure.statements) !== null && _c !== void 0 ? _c : (methodStructure.statements = ['return source as any;']);
|
|
103
|
+
}
|
|
82
104
|
(_d = methodStructure.returnType) !== null && _d !== void 0 ? _d : (methodStructure.returnType = w => {
|
|
83
105
|
w.write('Promise<');
|
|
84
106
|
if (typeof targetType ===
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"coerce-proxy-remote-method-class.js","sourceRoot":"","sources":["../../../../../../../packages/schematic/ts-morph/src/lib/angular/coerce-proxy-remote-method-class.ts"],"names":[],"mappings":";;;AAAA,qEAGoC;AACpC,
|
|
1
|
+
{"version":3,"file":"coerce-proxy-remote-method-class.js","sourceRoot":"","sources":["../../../../../../../packages/schematic/ts-morph/src/lib/angular/coerce-proxy-remote-method-class.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,5 +2,6 @@ import { CoerceProxyRemoteMethodClassOptions } from './coerce-proxy-remote-metho
|
|
|
2
2
|
export interface CoerceTreeTableRootProxyRemoteMethodClassOptions extends Omit<Omit<Omit<Omit<CoerceProxyRemoteMethodClassOptions, 'name'>, 'sourceType'>, 'targetType'>, 'proxyMethod'> {
|
|
3
3
|
getRootOperationId: string;
|
|
4
4
|
scope?: string | null;
|
|
5
|
+
hasParameter?: boolean;
|
|
5
6
|
}
|
|
6
7
|
export declare function CoerceTreeTableRootProxyRemoteMethodClass(options: CoerceTreeTableRootProxyRemoteMethodClassOptions): import("@angular-devkit/schematics").Rule;
|
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CoerceTreeTableRootProxyRemoteMethodClass = void 0;
|
|
4
|
+
const ts_morph_1 = require("@rxap/ts-morph");
|
|
5
|
+
const utilities_1 = require("@rxap/utilities");
|
|
4
6
|
const operation_id_utilities_1 = require("../nest/operation-id-utilities");
|
|
5
7
|
const coerce_imports_1 = require("../ts-morph/coerce-imports");
|
|
6
8
|
const coerce_proxy_remote_method_class_1 = require("./coerce-proxy-remote-method-class");
|
|
7
9
|
function CoerceTreeTableRootProxyRemoteMethodClass(options) {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
10
|
+
const { tsMorphTransform = utilities_1.noop, getRootOperationId, scope, identifier } = options;
|
|
11
|
+
return (0, coerce_proxy_remote_method_class_1.CoerceProxyRemoteMethodClass)(Object.assign(Object.assign({}, options), { name: 'tree-table-root', sourceType: 'Node<unknown>', targetType: `OpenApiRemoteMethodParameter<${identifier ? (0, operation_id_utilities_1.OperationIdToParameterClassName)(getRootOperationId) : 'void'}>`, proxyMethod: (0, operation_id_utilities_1.OperationIdToClassName)(getRootOperationId), tsMorphTransform: (project, sourceFile, classDeclaration) => {
|
|
12
|
+
if (identifier) {
|
|
13
|
+
(0, coerce_imports_1.CoerceImports)(sourceFile, {
|
|
14
|
+
namedImports: [(0, operation_id_utilities_1.OperationIdToParameterClassName)(getRootOperationId)],
|
|
15
|
+
moduleSpecifier: (0, ts_morph_1.OperationIdToParameterClassImportPath)(getRootOperationId, scope),
|
|
16
|
+
});
|
|
17
|
+
}
|
|
11
18
|
(0, coerce_imports_1.CoerceImports)(sourceFile, {
|
|
12
19
|
namedImports: [(0, operation_id_utilities_1.OperationIdToClassName)(getRootOperationId)],
|
|
13
20
|
moduleSpecifier: (0, operation_id_utilities_1.OperationIdToClassImportPath)(getRootOperationId, scope),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"coerce-tree-table-root-proxy-remote-method-class.js","sourceRoot":"","sources":["../../../../../../../packages/schematic/ts-morph/src/lib/angular/coerce-tree-table-root-proxy-remote-method-class.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"coerce-tree-table-root-proxy-remote-method-class.js","sourceRoot":"","sources":["../../../../../../../packages/schematic/ts-morph/src/lib/angular/coerce-tree-table-root-proxy-remote-method-class.ts"],"names":[],"mappings":";;;AAAA,6CAAuE;AACvE,+CAAuC;AAMvC,2EAIwC;AACxC,+DAA2D;AAC3D,yFAG4C;AAS5C,SAAgB,yCAAyC,CAAC,OAAyD;IACjH,MAAM,EACJ,gBAAgB,GAAG,gBAAI,EACvB,kBAAkB,EAClB,KAAK,EACL,UAAU,EACX,GAAG,OAAO,CAAC;IACZ,OAAO,IAAA,+DAA4B,kCAC9B,OAAO,KACV,IAAI,EAAE,iBAAiB,EACvB,UAAU,EAAE,eAAe,EAC3B,UAAU,EAAE,gCAAiC,UAAU,CAAC,CAAC,CAAC,IAAA,wDAA+B,EAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,MAAO,GAAG,EAC1H,WAAW,EAAE,IAAA,+CAAsB,EAAC,kBAAkB,CAAC,EACvD,gBAAgB,EAAE,CAAC,OAAgB,EAAE,UAAsB,EAAE,gBAAkC,EAAE,EAAE;YACjG,IAAI,UAAU,EAAE;gBACd,IAAA,8BAAa,EAAC,UAAU,EAAE;oBACxB,YAAY,EAAE,CAAE,IAAA,wDAA+B,EAAC,kBAAkB,CAAC,CAAE;oBACrE,eAAe,EAAE,IAAA,gDAAqC,EAAC,kBAAkB,EAAE,KAAK,CAAC;iBAClF,CAAC,CAAC;aACJ;YACD,IAAA,8BAAa,EAAC,UAAU,EAAE;gBACxB,YAAY,EAAE,CAAE,IAAA,+CAAsB,EAAC,kBAAkB,CAAC,CAAE;gBAC5D,eAAe,EAAE,IAAA,qDAA4B,EAAC,kBAAkB,EAAE,KAAK,CAAC;aACzE,CAAC,CAAC;YACH,IAAA,8BAAa,EAAC,UAAU,EAAE;gBACxB,YAAY,EAAE,CAAE,MAAM,CAAE;gBACxB,eAAe,EAAE,2BAA2B;aAC7C,CAAC,CAAC;YACH,IAAA,8BAAa,EAAC,UAAU,EAAE;gBACxB,YAAY,EAAE,CAAE,8BAA8B,CAAE;gBAChD,eAAe,EAAE,8BAA8B;aAChD,CAAC,CAAC;YACH,OAAO,gBAAiB,CAAC,OAAO,EAAE,UAAU,EAAE,gBAAgB,CAAC,CAAC;QAClE,CAAC,IACD,CAAC;AACL,CAAC;AAnCD,8FAmCC"}
|