@dedot/codegen 0.0.1-next.c3d95ac1.3 → 0.0.1-next.cb041b89.17
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/{generator → chaintypes/generator}/ApiGen.d.ts +4 -4
- package/{generator → chaintypes/generator}/ConstsGen.d.ts +1 -1
- package/{generator → chaintypes/generator}/ConstsGen.js +5 -5
- package/{generator → chaintypes/generator}/ErrorsGen.d.ts +1 -1
- package/{generator → chaintypes/generator}/ErrorsGen.js +8 -8
- package/{generator → chaintypes/generator}/EventsGen.d.ts +1 -1
- package/{generator → chaintypes/generator}/EventsGen.js +8 -8
- package/{generator → chaintypes/generator}/IndexGen.d.ts +1 -1
- package/chaintypes/generator/IndexGen.js +17 -0
- package/{generator → chaintypes/generator}/JsonRpcGen.d.ts +3 -2
- package/{generator → chaintypes/generator}/JsonRpcGen.js +8 -8
- package/{generator → chaintypes/generator}/QueryGen.d.ts +1 -1
- package/{generator → chaintypes/generator}/QueryGen.js +21 -12
- package/{generator → chaintypes/generator}/RuntimeApisGen.d.ts +2 -2
- package/{generator → chaintypes/generator}/RuntimeApisGen.js +11 -11
- package/{generator → chaintypes/generator}/TxGen.d.ts +1 -1
- package/{generator → chaintypes/generator}/TxGen.js +13 -11
- package/chaintypes/generator/TypesGen.d.ts +11 -0
- package/chaintypes/generator/TypesGen.js +55 -0
- package/chaintypes/index.d.ts +3 -0
- package/chaintypes/index.js +49 -0
- package/chaintypes/templates/consts.hbs +7 -0
- package/chaintypes/templates/errors.hbs +7 -0
- package/chaintypes/templates/events.hbs +7 -0
- package/chaintypes/templates/index.hbs +27 -0
- package/chaintypes/templates/json-rpc.hbs +5 -0
- package/chaintypes/templates/query.hbs +7 -0
- package/chaintypes/templates/runtime.hbs +8 -0
- package/chaintypes/templates/tx.hbs +9 -0
- package/{templates → chaintypes/templates}/types.hbs +1 -1
- package/cjs/{generator → chaintypes/generator}/ConstsGen.js +5 -5
- package/cjs/{generator → chaintypes/generator}/ErrorsGen.js +8 -8
- package/cjs/{generator → chaintypes/generator}/EventsGen.js +8 -8
- package/cjs/chaintypes/generator/IndexGen.js +21 -0
- package/cjs/{generator → chaintypes/generator}/JsonRpcGen.js +10 -10
- package/cjs/{generator → chaintypes/generator}/QueryGen.js +21 -12
- package/cjs/{generator → chaintypes/generator}/RuntimeApisGen.js +14 -14
- package/cjs/{generator → chaintypes/generator}/TxGen.js +13 -11
- package/cjs/chaintypes/generator/TypesGen.js +59 -0
- package/cjs/chaintypes/index.js +77 -0
- package/cjs/chaintypes/templates/consts.hbs +7 -0
- package/cjs/chaintypes/templates/errors.hbs +7 -0
- package/cjs/chaintypes/templates/events.hbs +7 -0
- package/cjs/chaintypes/templates/index.hbs +27 -0
- package/cjs/chaintypes/templates/json-rpc.hbs +5 -0
- package/cjs/chaintypes/templates/query.hbs +7 -0
- package/cjs/chaintypes/templates/runtime.hbs +8 -0
- package/cjs/chaintypes/templates/tx.hbs +9 -0
- package/cjs/{templates → chaintypes/templates}/types.hbs +1 -1
- package/cjs/index.js +4 -62
- package/cjs/{generator/TypesGen.js → shared/BaseTypesGen.js} +88 -140
- package/cjs/{generator → shared}/TypeImports.js +27 -9
- package/cjs/shared/index.js +19 -0
- package/cjs/{generator → shared}/known-codecs.js +24 -5
- package/cjs/typink/generator/ConstructorQueryGen.js +24 -0
- package/cjs/typink/generator/ConstructorTxGen.js +24 -0
- package/cjs/typink/generator/IndexGen.js +24 -0
- package/cjs/typink/generator/QueryGen.js +72 -0
- package/cjs/typink/generator/TxGen.js +25 -0
- package/cjs/typink/generator/TypesGen.js +35 -0
- package/cjs/typink/generator/index.js +22 -0
- package/cjs/typink/index.js +37 -0
- package/cjs/typink/templates/constructor-query.hbs +7 -0
- package/cjs/typink/templates/constructor-tx.hbs +7 -0
- package/cjs/typink/templates/index.hbs +14 -0
- package/cjs/typink/templates/query.hbs +7 -0
- package/cjs/typink/templates/tx.hbs +7 -0
- package/cjs/typink/templates/types.hbs +5 -0
- package/cjs/{generator/utils.js → utils.js} +3 -3
- package/index.d.ts +2 -3
- package/index.js +2 -48
- package/package.json +16 -18
- package/{generator/TypesGen.d.ts → shared/BaseTypesGen.d.ts} +12 -11
- package/{generator/TypesGen.js → shared/BaseTypesGen.js} +85 -137
- package/{generator → shared}/TypeImports.d.ts +12 -3
- package/{generator → shared}/TypeImports.js +27 -9
- package/shared/index.d.ts +3 -0
- package/shared/index.js +3 -0
- package/{generator → shared}/known-codecs.d.ts +1 -1
- package/{generator → shared}/known-codecs.js +22 -3
- package/typink/generator/ConstructorQueryGen.d.ts +6 -0
- package/typink/generator/ConstructorQueryGen.js +20 -0
- package/typink/generator/ConstructorTxGen.d.ts +6 -0
- package/typink/generator/ConstructorTxGen.js +20 -0
- package/typink/generator/IndexGen.d.ts +6 -0
- package/typink/generator/IndexGen.js +20 -0
- package/typink/generator/QueryGen.d.ts +12 -0
- package/typink/generator/QueryGen.js +68 -0
- package/typink/generator/TxGen.d.ts +6 -0
- package/typink/generator/TxGen.js +21 -0
- package/typink/generator/TypesGen.d.ts +8 -0
- package/typink/generator/TypesGen.js +31 -0
- package/typink/generator/index.d.ts +6 -0
- package/typink/generator/index.js +6 -0
- package/typink/index.d.ts +2 -0
- package/typink/index.js +30 -0
- package/typink/templates/constructor-query.hbs +7 -0
- package/typink/templates/constructor-tx.hbs +7 -0
- package/typink/templates/index.hbs +14 -0
- package/typink/templates/query.hbs +7 -0
- package/typink/templates/tx.hbs +7 -0
- package/typink/templates/types.hbs +5 -0
- package/{generator/utils.d.ts → utils.d.ts} +1 -1
- package/{generator/utils.js → utils.js} +3 -3
- package/cjs/generator/IndexGen.js +0 -17
- package/cjs/templates/consts.hbs +0 -7
- package/cjs/templates/errors.hbs +0 -7
- package/cjs/templates/events.hbs +0 -7
- package/cjs/templates/index.hbs +0 -22
- package/cjs/templates/json-rpc.hbs +0 -5
- package/cjs/templates/query.hbs +0 -7
- package/cjs/templates/runtime.hbs +0 -8
- package/cjs/templates/tx.hbs +0 -9
- package/generator/IndexGen.js +0 -13
- package/templates/consts.hbs +0 -7
- package/templates/errors.hbs +0 -7
- package/templates/events.hbs +0 -7
- package/templates/index.hbs +0 -22
- package/templates/json-rpc.hbs +0 -5
- package/templates/query.hbs +0 -7
- package/templates/runtime.hbs +0 -8
- package/templates/tx.hbs +0 -9
- /package/{generator → chaintypes/generator}/ApiGen.js +0 -0
- /package/{generator → chaintypes/generator}/index.d.ts +0 -0
- /package/{generator → chaintypes/generator}/index.js +0 -0
- /package/cjs/{generator → chaintypes/generator}/ApiGen.js +0 -0
- /package/cjs/{generator → chaintypes/generator}/index.js +0 -0
- /package/cjs/{generator/dirname.js → dirname.js} +0 -0
- /package/{generator/dirname.d.ts → dirname.d.ts} +0 -0
- /package/{generator/dirname.js → dirname.js} +0 -0
|
@@ -1,65 +1,90 @@
|
|
|
1
|
-
import { PortableRegistry } from '@dedot/codecs';
|
|
2
1
|
import { normalizeName, stringPascalCase } from '@dedot/utils';
|
|
3
|
-
import {
|
|
2
|
+
import { commentBlock, isNativeType, WRAPPER_TYPE_REGEX } from '../utils.js';
|
|
4
3
|
import { TypeImports } from './TypeImports.js';
|
|
5
|
-
import { findKnownCodec, findKnownCodecType
|
|
6
|
-
// Skip generate types for these
|
|
7
|
-
// as we do have native types for them
|
|
8
|
-
const SKIP_TYPES = [
|
|
9
|
-
'BoundedBTreeMap',
|
|
10
|
-
'BoundedBTreeSet',
|
|
11
|
-
'BoundedVec',
|
|
12
|
-
'Box',
|
|
13
|
-
'BTreeMap',
|
|
14
|
-
'BTreeSet',
|
|
15
|
-
'Cow',
|
|
16
|
-
'Option',
|
|
17
|
-
'Range',
|
|
18
|
-
'RangeInclusive',
|
|
19
|
-
'Result',
|
|
20
|
-
'WeakBoundedVec',
|
|
21
|
-
'WrapperKeepOpaque',
|
|
22
|
-
'WrapperOpaque',
|
|
23
|
-
];
|
|
4
|
+
import { checkKnownCodecType, findKnownCodec, findKnownCodecType } from './known-codecs.js';
|
|
24
5
|
// These are common & generic types, so we'll remove these from all paths at index 1
|
|
25
6
|
// This helps make the type name shorter
|
|
26
7
|
const PATH_RM_INDEX_1 = ['generic', 'misc', 'pallet', 'traits', 'types'];
|
|
27
8
|
export const BASIC_KNOWN_TYPES = ['BitSequence', 'Bytes', 'BytesLike', 'FixedBytes', 'FixedArray', 'Result'];
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
metadata;
|
|
31
|
-
/**
|
|
32
|
-
* Types will be generated its definition out.
|
|
33
|
-
*/
|
|
9
|
+
export class BaseTypesGen {
|
|
10
|
+
types;
|
|
34
11
|
includedTypes;
|
|
35
|
-
registry;
|
|
36
12
|
typeImports;
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
this.
|
|
40
|
-
this.includedTypes =
|
|
13
|
+
skipTypes;
|
|
14
|
+
constructor(types) {
|
|
15
|
+
this.types = types;
|
|
16
|
+
this.includedTypes = {};
|
|
41
17
|
this.typeImports = new TypeImports();
|
|
42
|
-
|
|
43
|
-
generate() {
|
|
44
|
-
this.clearCache();
|
|
45
|
-
let defTypeOut = '';
|
|
46
|
-
Object.values(this.includedTypes)
|
|
47
|
-
.filter(({ skip, knownType }) => !(skip || knownType))
|
|
48
|
-
.forEach(({ name, nameOut, id, docs }) => {
|
|
49
|
-
defTypeOut += `${commentBlock(docs)}export type ${nameOut} = ${this.generateType(id, 0, true)};\n\n`;
|
|
50
|
-
if (this.#shouldGenerateTypeIn(id)) {
|
|
51
|
-
defTypeOut += `export type ${name} = ${this.generateType(id)};\n\n`;
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
const importTypes = this.typeImports.toImports('./types');
|
|
55
|
-
const template = compileTemplate('types.hbs');
|
|
56
|
-
return beautifySourceCode(template({ importTypes, defTypeOut }));
|
|
18
|
+
this.skipTypes = [];
|
|
57
19
|
}
|
|
58
20
|
typeCache = {};
|
|
59
21
|
clearCache() {
|
|
60
22
|
this.typeCache = {};
|
|
61
23
|
this.typeImports.clear();
|
|
62
24
|
}
|
|
25
|
+
includeTypes() {
|
|
26
|
+
const pathsCount = new Map();
|
|
27
|
+
const typesWithPath = this.types.filter((one) => one.path.length > 0);
|
|
28
|
+
const skipIds = [];
|
|
29
|
+
const typeSuffixes = new Map();
|
|
30
|
+
typesWithPath.forEach(({ path, id }) => {
|
|
31
|
+
const joinedPath = path.join('::');
|
|
32
|
+
if (pathsCount.has(joinedPath)) {
|
|
33
|
+
// We compare 2 types with the same path here,
|
|
34
|
+
// if they are the same type -> skip the current one, keep the first occurrence
|
|
35
|
+
// if they are not the same type but has the same path -> we'll try to calculate & add a suffix for the current type name
|
|
36
|
+
const firstOccurrenceTypeId = pathsCount.get(joinedPath)[0];
|
|
37
|
+
const sameType = this.typeEql(firstOccurrenceTypeId, id);
|
|
38
|
+
if (sameType) {
|
|
39
|
+
skipIds.push(id);
|
|
40
|
+
}
|
|
41
|
+
else {
|
|
42
|
+
pathsCount.get(joinedPath).push(id);
|
|
43
|
+
typeSuffixes.set(id, this.extractDupTypeSuffix(id, firstOccurrenceTypeId, pathsCount.get(joinedPath).length));
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
else {
|
|
47
|
+
pathsCount.set(joinedPath, [id]);
|
|
48
|
+
}
|
|
49
|
+
});
|
|
50
|
+
return typesWithPath.reduce((o, type) => {
|
|
51
|
+
const { path, id } = type;
|
|
52
|
+
const joinedPath = path.join('::');
|
|
53
|
+
if (this.skipTypes.includes(joinedPath) || this.skipTypes.includes(path.at(-1))) {
|
|
54
|
+
return o;
|
|
55
|
+
}
|
|
56
|
+
const suffix = typeSuffixes.get(id) || '';
|
|
57
|
+
let knownType = false;
|
|
58
|
+
let name, nameOut;
|
|
59
|
+
const [isKnownCodecType, codecName] = checkKnownCodecType(joinedPath);
|
|
60
|
+
if (isKnownCodecType) {
|
|
61
|
+
const codecType = findKnownCodecType(codecName);
|
|
62
|
+
name = codecType.typeIn;
|
|
63
|
+
nameOut = codecType.typeOut;
|
|
64
|
+
knownType = true;
|
|
65
|
+
}
|
|
66
|
+
else if (PATH_RM_INDEX_1.includes(path[1])) {
|
|
67
|
+
const newPath = path.slice();
|
|
68
|
+
newPath.splice(1, 1);
|
|
69
|
+
name = this.cleanPath(newPath);
|
|
70
|
+
}
|
|
71
|
+
else {
|
|
72
|
+
name = this.cleanPath(path);
|
|
73
|
+
}
|
|
74
|
+
if (this.shouldGenerateTypeIn(id)) {
|
|
75
|
+
nameOut = name;
|
|
76
|
+
name = name.endsWith('Like') ? name : `${name}Like`;
|
|
77
|
+
}
|
|
78
|
+
o[id] = {
|
|
79
|
+
name: `${name}${suffix}`,
|
|
80
|
+
nameOut: nameOut ? `${nameOut}${suffix}` : `${name}${suffix}`,
|
|
81
|
+
knownType,
|
|
82
|
+
skip: skipIds.includes(id),
|
|
83
|
+
...type,
|
|
84
|
+
};
|
|
85
|
+
return o;
|
|
86
|
+
}, {});
|
|
87
|
+
}
|
|
63
88
|
generateType(typeId, nestedLevel = 0, typeOut = false) {
|
|
64
89
|
if (nestedLevel > 0) {
|
|
65
90
|
const includedDef = this.includedTypes[typeId];
|
|
@@ -90,7 +115,7 @@ export class TypesGen {
|
|
|
90
115
|
return type;
|
|
91
116
|
}
|
|
92
117
|
#generateType(typeId, nestedLevel = 0, typeOut = false) {
|
|
93
|
-
const def = this.
|
|
118
|
+
const def = this.types[typeId];
|
|
94
119
|
if (!def) {
|
|
95
120
|
throw new Error(`Type def not found ${JSON.stringify(def)}`);
|
|
96
121
|
}
|
|
@@ -167,7 +192,7 @@ export class TypesGen {
|
|
|
167
192
|
membersType.push([keyName, this.generateObjectType(fields, nestedLevel + 1, typeOut), docs]);
|
|
168
193
|
}
|
|
169
194
|
}
|
|
170
|
-
const { tagKey, valueKey } = this.
|
|
195
|
+
const { tagKey, valueKey } = this.getEnumOptions(typeId);
|
|
171
196
|
return membersType
|
|
172
197
|
.map(([keyName, valueType, docs]) => ({
|
|
173
198
|
tag: `${tagKey}: '${keyName}'`,
|
|
@@ -197,7 +222,7 @@ export class TypesGen {
|
|
|
197
222
|
case 'Sequence':
|
|
198
223
|
case 'SizedVec': {
|
|
199
224
|
const fixedSize = tag === 'SizedVec' ? `${value.len}` : null;
|
|
200
|
-
const $innerType = this.
|
|
225
|
+
const $innerType = this.types[value.typeParam].type;
|
|
201
226
|
if ($innerType.tag === 'Primitive' && $innerType.value.kind === 'u8') {
|
|
202
227
|
return fixedSize ? `FixedBytes<${fixedSize}>` : typeOut ? 'Bytes' : 'BytesLike';
|
|
203
228
|
}
|
|
@@ -227,69 +252,6 @@ export class TypesGen {
|
|
|
227
252
|
#isOptionalType(type) {
|
|
228
253
|
return type.endsWith('| undefined');
|
|
229
254
|
}
|
|
230
|
-
#includedTypes() {
|
|
231
|
-
const { types } = this.metadata;
|
|
232
|
-
const pathsCount = new Map();
|
|
233
|
-
const typesWithPath = types.filter((one) => one.path.length > 0);
|
|
234
|
-
const skipIds = [];
|
|
235
|
-
const typeSuffixes = new Map();
|
|
236
|
-
typesWithPath.forEach(({ path, id }) => {
|
|
237
|
-
const joinedPath = path.join('::');
|
|
238
|
-
if (pathsCount.has(joinedPath)) {
|
|
239
|
-
// We compare 2 types with the same path here,
|
|
240
|
-
// if they are the same type -> skip the current one, keep the first occurrence
|
|
241
|
-
// if they are not the same type but has the same path -> we'll try to calculate & add a suffix for the current type name
|
|
242
|
-
const firstOccurrenceTypeId = pathsCount.get(joinedPath)[0];
|
|
243
|
-
const sameType = this.typeEql(firstOccurrenceTypeId, id);
|
|
244
|
-
if (sameType) {
|
|
245
|
-
skipIds.push(id);
|
|
246
|
-
}
|
|
247
|
-
else {
|
|
248
|
-
pathsCount.get(joinedPath).push(id);
|
|
249
|
-
typeSuffixes.set(id, this.#extractDupTypeSuffix(id, firstOccurrenceTypeId, pathsCount.get(joinedPath).length));
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
else {
|
|
253
|
-
pathsCount.set(joinedPath, [id]);
|
|
254
|
-
}
|
|
255
|
-
});
|
|
256
|
-
return typesWithPath.reduce((o, type) => {
|
|
257
|
-
const { path, id } = type;
|
|
258
|
-
const joinedPath = path.join('::');
|
|
259
|
-
if (SKIP_TYPES.includes(joinedPath) || SKIP_TYPES.includes(path.at(-1))) {
|
|
260
|
-
return o;
|
|
261
|
-
}
|
|
262
|
-
const suffix = typeSuffixes.get(id) || '';
|
|
263
|
-
let knownType = false;
|
|
264
|
-
let name, nameOut;
|
|
265
|
-
if (isKnownCodecType(joinedPath)) {
|
|
266
|
-
const codecType = findKnownCodecType(path.at(-1));
|
|
267
|
-
name = codecType.typeIn;
|
|
268
|
-
nameOut = codecType.typeOut;
|
|
269
|
-
knownType = true;
|
|
270
|
-
}
|
|
271
|
-
else if (PATH_RM_INDEX_1.includes(path[1])) {
|
|
272
|
-
const newPath = path.slice();
|
|
273
|
-
newPath.splice(1, 1);
|
|
274
|
-
name = this.#cleanPath(newPath);
|
|
275
|
-
}
|
|
276
|
-
else {
|
|
277
|
-
name = this.#cleanPath(path);
|
|
278
|
-
}
|
|
279
|
-
if (this.#shouldGenerateTypeIn(id)) {
|
|
280
|
-
nameOut = name;
|
|
281
|
-
name = name.endsWith('Like') ? name : `${name}Like`;
|
|
282
|
-
}
|
|
283
|
-
o[id] = {
|
|
284
|
-
name: `${name}${suffix}`,
|
|
285
|
-
nameOut: nameOut ? `${nameOut}${suffix}` : `${name}${suffix}`,
|
|
286
|
-
knownType,
|
|
287
|
-
skip: skipIds.includes(id),
|
|
288
|
-
...type,
|
|
289
|
-
};
|
|
290
|
-
return o;
|
|
291
|
-
}, {});
|
|
292
|
-
}
|
|
293
255
|
#removeGenericPart(typeName) {
|
|
294
256
|
if (typeName.match(WRAPPER_TYPE_REGEX)) {
|
|
295
257
|
return typeName.replace(WRAPPER_TYPE_REGEX, (_, $1) => $1);
|
|
@@ -298,27 +260,12 @@ export class TypesGen {
|
|
|
298
260
|
return typeName;
|
|
299
261
|
}
|
|
300
262
|
}
|
|
301
|
-
|
|
302
|
-
* @description Remove duplicated part of the path
|
|
303
|
-
*
|
|
304
|
-
* Example:
|
|
305
|
-
* ["pallet_staking", "pallet", "pallet", "Event"]
|
|
306
|
-
* => ["pallet_staking", "pallet", "Event"]
|
|
307
|
-
*
|
|
308
|
-
* @param path
|
|
309
|
-
* @private
|
|
310
|
-
*/
|
|
311
|
-
#cleanPath(path) {
|
|
263
|
+
cleanPath(path) {
|
|
312
264
|
return path
|
|
313
265
|
.map((one) => stringPascalCase(one))
|
|
314
266
|
.filter((one, idx, currentPath) => idx === 0 || one !== currentPath[idx - 1])
|
|
315
267
|
.join('');
|
|
316
268
|
}
|
|
317
|
-
#shouldGenerateTypeIn(id) {
|
|
318
|
-
const { callTypeId } = this.metadata.extrinsic;
|
|
319
|
-
const palletCallTypeIds = this.registry.getPalletCallTypeIds();
|
|
320
|
-
return callTypeId === id || palletCallTypeIds.includes(id);
|
|
321
|
-
}
|
|
322
269
|
eqlCache = new Map();
|
|
323
270
|
typeEql(idA, idB, level = 0) {
|
|
324
271
|
const cacheKey = `${idA}==${idB}`;
|
|
@@ -331,9 +278,8 @@ export class TypesGen {
|
|
|
331
278
|
#typeEql(idA, idB, lvl = 0) {
|
|
332
279
|
if (idA === idB)
|
|
333
280
|
return true;
|
|
334
|
-
const
|
|
335
|
-
const
|
|
336
|
-
const typeB = types[idB];
|
|
281
|
+
const typeA = this.types[idA];
|
|
282
|
+
const typeB = this.types[idB];
|
|
337
283
|
if (typeA.path.join('::') !== typeB.path.join('::'))
|
|
338
284
|
return false;
|
|
339
285
|
const { type: defA, params: paramsA } = typeA;
|
|
@@ -376,14 +322,13 @@ export class TypesGen {
|
|
|
376
322
|
(param1.typeId === undefined) === (param2.typeId === undefined) &&
|
|
377
323
|
(param1.typeId === undefined || this.#typeEql(param1.typeId, param2.typeId)));
|
|
378
324
|
}
|
|
379
|
-
|
|
380
|
-
const
|
|
381
|
-
const
|
|
382
|
-
const dupTypeParams = types[dupTypeId].params;
|
|
325
|
+
extractDupTypeSuffix(dupTypeId, originalTypeId, dupCount) {
|
|
326
|
+
const originalTypeParams = this.types[originalTypeId].params;
|
|
327
|
+
const dupTypeParams = this.types[dupTypeId].params;
|
|
383
328
|
const diffParam = dupTypeParams.find((one, idx) => !this.#eqlTypeParam(one, originalTypeParams[idx]));
|
|
384
329
|
// TODO make sure these suffix is unique if a type is duplicated more than 2 times
|
|
385
330
|
if (diffParam?.typeId) {
|
|
386
|
-
const diffType = types[diffParam.typeId];
|
|
331
|
+
const diffType = this.types[diffParam.typeId];
|
|
387
332
|
if (diffType.path.length > 0) {
|
|
388
333
|
return stringPascalCase(diffType.path.at(-1));
|
|
389
334
|
}
|
|
@@ -423,4 +368,7 @@ export class TypesGen {
|
|
|
423
368
|
}
|
|
424
369
|
this.typeImports.addOutType(typeName);
|
|
425
370
|
}
|
|
371
|
+
getEnumOptions(_typeId) {
|
|
372
|
+
return { tagKey: 'tag', valueKey: 'value' };
|
|
373
|
+
}
|
|
426
374
|
}
|
|
@@ -1,16 +1,25 @@
|
|
|
1
|
+
type ImportConfig = {
|
|
2
|
+
excludeModules?: string[];
|
|
3
|
+
useSubPaths?: boolean;
|
|
4
|
+
};
|
|
1
5
|
export declare class TypeImports {
|
|
2
6
|
#private;
|
|
3
7
|
portableTypes: Set<string>;
|
|
4
8
|
codecTypes: Set<string>;
|
|
5
9
|
knownTypes: Set<string>;
|
|
6
|
-
|
|
10
|
+
knownJsonRpcTypes: Set<string>;
|
|
7
11
|
outTypes: Set<string>;
|
|
12
|
+
contractTypes: Set<string>;
|
|
13
|
+
chainTypes: Set<string>;
|
|
8
14
|
constructor();
|
|
9
15
|
clear(): void;
|
|
10
|
-
toImports(
|
|
16
|
+
toImports(config?: ImportConfig): string;
|
|
11
17
|
addPortableType(...types: string[]): void;
|
|
12
18
|
addCodecType(...types: string[]): void;
|
|
13
19
|
addKnownType(...types: string[]): void;
|
|
14
|
-
|
|
20
|
+
addKnownJsonRpcType(...types: string[]): void;
|
|
15
21
|
addOutType(...types: string[]): void;
|
|
22
|
+
addContractType(...types: string[]): void;
|
|
23
|
+
addChainType(...types: string[]): void;
|
|
16
24
|
}
|
|
25
|
+
export {};
|
|
@@ -5,29 +5,41 @@ export class TypeImports {
|
|
|
5
5
|
codecTypes;
|
|
6
6
|
// Known types that're not codecs or chain/portable types defined in @dedot/types
|
|
7
7
|
knownTypes;
|
|
8
|
-
|
|
8
|
+
knownJsonRpcTypes;
|
|
9
9
|
// External types to define explicitly
|
|
10
10
|
outTypes;
|
|
11
|
+
// Know types defined in @dedot/contracts
|
|
12
|
+
contractTypes;
|
|
13
|
+
// Know types defined in @dedot/api/chaintypes or dedot/chaintypes
|
|
14
|
+
chainTypes;
|
|
11
15
|
constructor() {
|
|
12
16
|
this.portableTypes = new Set();
|
|
13
17
|
this.codecTypes = new Set();
|
|
14
18
|
this.knownTypes = new Set();
|
|
15
|
-
this.
|
|
19
|
+
this.knownJsonRpcTypes = new Set();
|
|
16
20
|
this.outTypes = new Set();
|
|
21
|
+
this.contractTypes = new Set();
|
|
22
|
+
this.chainTypes = new Set();
|
|
17
23
|
}
|
|
18
24
|
clear() {
|
|
19
25
|
this.portableTypes.clear();
|
|
20
26
|
this.codecTypes.clear();
|
|
21
27
|
this.knownTypes.clear();
|
|
22
|
-
this.
|
|
28
|
+
this.knownJsonRpcTypes.clear();
|
|
23
29
|
this.outTypes.clear();
|
|
30
|
+
this.contractTypes.clear();
|
|
31
|
+
this.chainTypes.clear();
|
|
24
32
|
}
|
|
25
|
-
toImports(
|
|
33
|
+
toImports(config) {
|
|
34
|
+
const { excludeModules = [], useSubPaths = false } = config || {};
|
|
26
35
|
// TODO generate outTypes!
|
|
36
|
+
const prefix = useSubPaths ? '' : '@';
|
|
27
37
|
const toImports = [
|
|
28
|
-
[this.knownTypes,
|
|
29
|
-
[this.
|
|
30
|
-
[this.codecTypes,
|
|
38
|
+
[this.knownTypes, `${prefix}dedot/types`],
|
|
39
|
+
[this.knownJsonRpcTypes, `${prefix}dedot/types/json-rpc`],
|
|
40
|
+
[this.codecTypes, `${prefix}dedot/codecs`],
|
|
41
|
+
[this.contractTypes, `${prefix}dedot/contracts`],
|
|
42
|
+
[this.chainTypes, prefix ? '@dedot/api/chaintypes' : 'dedot/contracts'],
|
|
31
43
|
[this.portableTypes, './types'],
|
|
32
44
|
];
|
|
33
45
|
return toImports
|
|
@@ -51,10 +63,16 @@ export class TypeImports {
|
|
|
51
63
|
addKnownType(...types) {
|
|
52
64
|
types.forEach((one) => this.knownTypes.add(one));
|
|
53
65
|
}
|
|
54
|
-
|
|
55
|
-
types.forEach((one) => this.
|
|
66
|
+
addKnownJsonRpcType(...types) {
|
|
67
|
+
types.forEach((one) => this.knownJsonRpcTypes.add(one));
|
|
56
68
|
}
|
|
57
69
|
addOutType(...types) {
|
|
58
70
|
types.forEach((one) => this.outTypes.add(one));
|
|
59
71
|
}
|
|
72
|
+
addContractType(...types) {
|
|
73
|
+
types.forEach((one) => this.contractTypes.add(one));
|
|
74
|
+
}
|
|
75
|
+
addChainType(...types) {
|
|
76
|
+
types.forEach((one) => this.chainTypes.add(one));
|
|
77
|
+
}
|
|
60
78
|
}
|
package/shared/index.js
ADDED
|
@@ -20,4 +20,4 @@ export declare const looseTypeCodecs: Record<string, AnyShape>;
|
|
|
20
20
|
export declare function findKnownCodecType(name: string): CodecType;
|
|
21
21
|
export declare function findKnownCodec<I = unknown, O = I>(typeName: string): $.Shape<I, O>;
|
|
22
22
|
export declare function findKnownWrapperCodec(typeName: string): $.AnyShape | undefined;
|
|
23
|
-
export declare function
|
|
23
|
+
export declare function checkKnownCodecType(path: string | string[]): [boolean, string];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as $ from '@dedot/shape';
|
|
2
1
|
import * as Codecs from '@dedot/codecs';
|
|
3
2
|
import { $AccountId20, $AccountId32, $Bytes, $ConsensusEngineId, $Era, $EthereumAddress, $MultiAddress, $OpaqueExtrinsic, $PrefixedStorageKey, $RawBytes, $StorageData, $StorageKey, $UncheckedExtrinsic, } from '@dedot/codecs';
|
|
3
|
+
import * as $ from '@dedot/shape';
|
|
4
4
|
import { assert } from '@dedot/utils';
|
|
5
5
|
export const normalizeCodecName = (name) => {
|
|
6
6
|
return name.startsWith('$') ? name : `$${name}`;
|
|
@@ -30,6 +30,8 @@ const KNOWN_PATHS = [
|
|
|
30
30
|
/^primitive_types::\w+$/,
|
|
31
31
|
/^sp_arithmetic::per_things::\w+$/,
|
|
32
32
|
/^sp_arithmetic::fixed_point::\w+$/,
|
|
33
|
+
'ink_primitives::types::Hash',
|
|
34
|
+
{ path: 'ink_primitives::types::AccountId', codec: 'AccountId32' },
|
|
33
35
|
];
|
|
34
36
|
const WRAPPER_TYPE_REGEX = /^(\w+)<(.*)>$/;
|
|
35
37
|
const TUPLE_TYPE_REGEX = /^\[(.*)]$/;
|
|
@@ -114,7 +116,24 @@ export function findKnownWrapperCodec(typeName) {
|
|
|
114
116
|
return $.Tuple(...$inner);
|
|
115
117
|
}
|
|
116
118
|
}
|
|
117
|
-
export function
|
|
119
|
+
export function checkKnownCodecType(path) {
|
|
118
120
|
const joinedPath = Array.isArray(path) ? path.join('::') : path;
|
|
119
|
-
|
|
121
|
+
const knownPath = KNOWN_PATHS.find((one) => {
|
|
122
|
+
if (typeof one === 'string') {
|
|
123
|
+
return one === joinedPath;
|
|
124
|
+
}
|
|
125
|
+
else if (one instanceof RegExp) {
|
|
126
|
+
return one.test(joinedPath);
|
|
127
|
+
}
|
|
128
|
+
else {
|
|
129
|
+
return one.path === joinedPath;
|
|
130
|
+
}
|
|
131
|
+
});
|
|
132
|
+
if (!knownPath) {
|
|
133
|
+
return [false, ''];
|
|
134
|
+
}
|
|
135
|
+
if (typeof knownPath === 'string' || knownPath instanceof RegExp) {
|
|
136
|
+
return [true, joinedPath.split('::').at(-1)];
|
|
137
|
+
}
|
|
138
|
+
return [true, knownPath.codec];
|
|
120
139
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ContractConstructorMessage } from '@dedot/contracts';
|
|
2
|
+
import { QueryGen } from './QueryGen.js';
|
|
3
|
+
export declare class ConstructorQueryGen extends QueryGen {
|
|
4
|
+
generate(useSubPaths?: boolean): Promise<string>;
|
|
5
|
+
generateMethodDef(def: ContractConstructorMessage): string;
|
|
6
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { beautifySourceCode, compileTemplate } from '../../utils.js';
|
|
2
|
+
import { QueryGen } from './QueryGen.js';
|
|
3
|
+
export class ConstructorQueryGen extends QueryGen {
|
|
4
|
+
generate(useSubPaths = false) {
|
|
5
|
+
this.typesGen.clearCache();
|
|
6
|
+
this.typesGen.typeImports.addKnownType('GenericSubstrateApi');
|
|
7
|
+
this.typesGen.typeImports.addContractType('GenericConstructorQuery', 'GenericConstructorQueryCall', 'ConstructorCallOptions', 'ConstructorResult');
|
|
8
|
+
const { constructors } = this.contractMetadata.spec;
|
|
9
|
+
const constructorsOut = this.doGenerate(constructors);
|
|
10
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
11
|
+
const template = compileTemplate('typink/templates/constructor-query.hbs');
|
|
12
|
+
return beautifySourceCode(template({ importTypes, constructorsOut }));
|
|
13
|
+
}
|
|
14
|
+
generateMethodDef(def) {
|
|
15
|
+
const { args } = def;
|
|
16
|
+
args.forEach(({ type: { type } }) => this.importType(type));
|
|
17
|
+
const paramsOut = this.generateParamsOut(args);
|
|
18
|
+
return `GenericConstructorQueryCall<ChainApi, (${paramsOut && `${paramsOut},`} options: ConstructorCallOptions) => Promise<ConstructorResult<ChainApi>>>`;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ContractConstructorMessage } from '@dedot/contracts';
|
|
2
|
+
import { QueryGen } from './QueryGen.js';
|
|
3
|
+
export declare class ConstructorTxGen extends QueryGen {
|
|
4
|
+
generate(useSubPaths?: boolean): Promise<string>;
|
|
5
|
+
generateMethodDef(def: ContractConstructorMessage): string;
|
|
6
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { beautifySourceCode, compileTemplate } from '../../utils.js';
|
|
2
|
+
import { QueryGen } from './QueryGen.js';
|
|
3
|
+
export class ConstructorTxGen extends QueryGen {
|
|
4
|
+
generate(useSubPaths = false) {
|
|
5
|
+
this.typesGen.clearCache();
|
|
6
|
+
this.typesGen.typeImports.addKnownType('GenericSubstrateApi');
|
|
7
|
+
this.typesGen.typeImports.addContractType('GenericConstructorTx', 'GenericConstructorTxCall', 'ConstructorTxOptions', 'GenericConstructorSubmittableExtrinsic');
|
|
8
|
+
const { constructors } = this.contractMetadata.spec;
|
|
9
|
+
const constructorsOut = this.doGenerate(constructors);
|
|
10
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
11
|
+
const template = compileTemplate('typink/templates/constructor-tx.hbs');
|
|
12
|
+
return beautifySourceCode(template({ importTypes, constructorsOut }));
|
|
13
|
+
}
|
|
14
|
+
generateMethodDef(def) {
|
|
15
|
+
const { args } = def;
|
|
16
|
+
args.forEach(({ type: { type } }) => this.importType(type));
|
|
17
|
+
const paramsOut = this.generateParamsOut(args);
|
|
18
|
+
return `GenericConstructorTxCall<ChainApi, (${paramsOut && `${paramsOut},`} options: ConstructorTxOptions) => GenericConstructorSubmittableExtrinsic<ChainApi>>`;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { stringPascalCase } from '@dedot/utils';
|
|
2
|
+
import { TypeImports } from '../../shared/index.js';
|
|
3
|
+
import { beautifySourceCode, compileTemplate } from '../../utils.js';
|
|
4
|
+
const SUFFIX = 'contract_api';
|
|
5
|
+
export class IndexGen {
|
|
6
|
+
contractMetadata;
|
|
7
|
+
constructor(contractMetadata) {
|
|
8
|
+
this.contractMetadata = contractMetadata;
|
|
9
|
+
}
|
|
10
|
+
generate(useSubPaths = false) {
|
|
11
|
+
const contractName = stringPascalCase(`${this.contractMetadata.contract.name}_${SUFFIX}`);
|
|
12
|
+
const typeImports = new TypeImports();
|
|
13
|
+
typeImports.addKnownType('VersionedGenericSubstrateApi', 'RpcVersion');
|
|
14
|
+
typeImports.addContractType('GenericContractApi');
|
|
15
|
+
typeImports.addChainType('SubstrateApi');
|
|
16
|
+
const importTypes = typeImports.toImports({ useSubPaths });
|
|
17
|
+
const template = compileTemplate('typink/templates/index.hbs');
|
|
18
|
+
return beautifySourceCode(template({ contractName, importTypes }));
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ContractMetadata, Message, ContractMessageArg } from '@dedot/contracts';
|
|
2
|
+
import { TypesGen } from './TypesGen.js';
|
|
3
|
+
export declare class QueryGen {
|
|
4
|
+
contractMetadata: ContractMetadata;
|
|
5
|
+
typesGen: TypesGen;
|
|
6
|
+
constructor(contractMetadata: ContractMetadata, typeGen: TypesGen);
|
|
7
|
+
generate(useSubPaths?: boolean): Promise<string>;
|
|
8
|
+
doGenerate(messages: Message[]): string;
|
|
9
|
+
generateMethodDef(def: Message): string;
|
|
10
|
+
generateParamsOut(args: ContractMessageArg[]): string;
|
|
11
|
+
importType(typeId: number): any;
|
|
12
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { normalizeContractTypeDef, normalizeLabel, } from '@dedot/contracts';
|
|
2
|
+
import { stringCamelCase } from '@dedot/utils';
|
|
3
|
+
import { beautifySourceCode, commentBlock, compileTemplate } from '../../utils.js';
|
|
4
|
+
export class QueryGen {
|
|
5
|
+
contractMetadata;
|
|
6
|
+
typesGen;
|
|
7
|
+
constructor(contractMetadata, typeGen) {
|
|
8
|
+
this.contractMetadata = contractMetadata;
|
|
9
|
+
this.typesGen = typeGen;
|
|
10
|
+
}
|
|
11
|
+
generate(useSubPaths = false) {
|
|
12
|
+
this.typesGen.clearCache();
|
|
13
|
+
this.typesGen.typeImports.addKnownType('GenericSubstrateApi');
|
|
14
|
+
this.typesGen.typeImports.addContractType('GenericContractQuery', 'GenericContractQueryCall', 'ContractCallOptions', 'GenericContractCallResult', 'ContractResult');
|
|
15
|
+
const { messages } = this.contractMetadata.spec;
|
|
16
|
+
const queryCallsOut = this.doGenerate(messages);
|
|
17
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
18
|
+
const template = compileTemplate('typink/templates/query.hbs');
|
|
19
|
+
return beautifySourceCode(template({ importTypes, queryCallsOut }));
|
|
20
|
+
}
|
|
21
|
+
doGenerate(messages) {
|
|
22
|
+
let callsOut = '';
|
|
23
|
+
messages.forEach((messageDef) => {
|
|
24
|
+
const { label, docs, selector, args } = messageDef;
|
|
25
|
+
callsOut += `${commentBlock(docs, '\n', args.map((arg) => `@param {${this.typesGen.generateType(arg.type.type, 1)}} ${stringCamelCase(arg.label)}`), '\n', `@selector {${selector}}`)}`;
|
|
26
|
+
callsOut += `${normalizeLabel(label)}: ${this.generateMethodDef(messageDef)};\n\n`;
|
|
27
|
+
});
|
|
28
|
+
return callsOut;
|
|
29
|
+
}
|
|
30
|
+
generateMethodDef(def) {
|
|
31
|
+
const { args, returnType } = def;
|
|
32
|
+
this.importType(returnType.type);
|
|
33
|
+
args.forEach(({ type: { type } }) => this.importType(type));
|
|
34
|
+
const paramsOut = this.generateParamsOut(args);
|
|
35
|
+
const typeOut = this.typesGen.generateType(returnType.type, 0, true);
|
|
36
|
+
return `GenericContractQueryCall<ChainApi, (${paramsOut && `${paramsOut},`} options: ContractCallOptions) => Promise<GenericContractCallResult<${typeOut}, ContractResult<ChainApi>>>>`;
|
|
37
|
+
}
|
|
38
|
+
generateParamsOut(args) {
|
|
39
|
+
return args
|
|
40
|
+
.map(({ type: { type }, label }) => `${stringCamelCase(label)}: ${this.typesGen.generateType(type, 1)}`)
|
|
41
|
+
.join(', ');
|
|
42
|
+
}
|
|
43
|
+
importType(typeId) {
|
|
44
|
+
const type = this.contractMetadata.types[typeId];
|
|
45
|
+
const def = normalizeContractTypeDef(this.contractMetadata.types[typeId].type.def);
|
|
46
|
+
if (this.typesGen.includedTypes[type.id]) {
|
|
47
|
+
this.typesGen.addTypeImport(this.typesGen.includedTypes[type.id].name);
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
const { tag, value } = def;
|
|
51
|
+
switch (tag) {
|
|
52
|
+
case 'Compact':
|
|
53
|
+
case 'Primitive':
|
|
54
|
+
case 'BitSequence':
|
|
55
|
+
return;
|
|
56
|
+
case 'Struct':
|
|
57
|
+
return value.fields.forEach(({ typeId }) => this.importType(typeId));
|
|
58
|
+
case 'Enum':
|
|
59
|
+
return value.members.forEach(({ fields }) => fields.map(({ typeId }) => this.importType(typeId)).flat());
|
|
60
|
+
case 'Tuple':
|
|
61
|
+
return value.fields.forEach((typeId) => this.importType(typeId));
|
|
62
|
+
case 'SizedVec':
|
|
63
|
+
return this.importType(value.typeParam);
|
|
64
|
+
case 'Sequence':
|
|
65
|
+
return this.importType(value.typeParam);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { beautifySourceCode, compileTemplate } from '../../utils.js';
|
|
2
|
+
import { QueryGen } from './QueryGen.js';
|
|
3
|
+
export class TxGen extends QueryGen {
|
|
4
|
+
generate(useSubPaths = false) {
|
|
5
|
+
this.typesGen.clearCache();
|
|
6
|
+
this.typesGen.typeImports.addKnownType('GenericSubstrateApi');
|
|
7
|
+
this.typesGen.typeImports.addContractType('GenericContractTx', 'GenericContractTxCall', 'ContractTxOptions', 'ChainSubmittableExtrinsic');
|
|
8
|
+
const { messages } = this.contractMetadata.spec;
|
|
9
|
+
const txMessages = messages.filter((one) => one.mutates);
|
|
10
|
+
const txCallsOut = this.doGenerate(txMessages);
|
|
11
|
+
const importTypes = this.typesGen.typeImports.toImports({ useSubPaths });
|
|
12
|
+
const template = compileTemplate('typink/templates/tx.hbs');
|
|
13
|
+
return beautifySourceCode(template({ importTypes, txCallsOut }));
|
|
14
|
+
}
|
|
15
|
+
generateMethodDef(def) {
|
|
16
|
+
const { args } = def;
|
|
17
|
+
args.forEach(({ type: { type } }) => this.importType(type));
|
|
18
|
+
const paramsOut = this.generateParamsOut(args);
|
|
19
|
+
return `GenericContractTxCall<ChainApi, (${paramsOut && `${paramsOut},`} options: ContractTxOptions) => ChainSubmittableExtrinsic<ChainApi>>`;
|
|
20
|
+
}
|
|
21
|
+
}
|