@strapi/typescript-utils 0.0.0-next.e9bb5ccdc459f4c6b6717a2d5d86359b7a47d47d → 0.0.0-next.f7babb775ed9a7e18d8351cb7f74c63e016323c4
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/lib/__tests__/generators/schemas/attributes.test.js +52 -52
- package/lib/__tests__/generators/schemas/imports.test.js +18 -16
- package/lib/__tests__/generators/schemas/utils.test.js +5 -57
- package/lib/generators/{schemas → common}/imports.js +8 -6
- package/lib/generators/common/index.js +9 -0
- package/lib/generators/{schemas → common/models}/attributes.js +33 -34
- package/lib/generators/common/models/index.js +15 -0
- package/lib/generators/{schemas → common/models}/mappers.js +24 -24
- package/lib/generators/{schemas → common/models}/schema.js +10 -5
- package/lib/generators/{schemas → common/models}/utils.js +28 -9
- package/lib/generators/components/index.js +58 -0
- package/lib/generators/constants.js +6 -0
- package/lib/generators/content-types/index.js +58 -0
- package/lib/generators/index.js +118 -3
- package/lib/generators/utils.js +211 -0
- package/package.json +5 -5
- package/lib/__tests__/generators/schemas/global.test.js +0 -108
- package/lib/generators/schemas/global.js +0 -67
- package/lib/generators/schemas/index.js +0 -185
|
@@ -3,56 +3,56 @@
|
|
|
3
3
|
const ts = require('typescript');
|
|
4
4
|
const _ = require('lodash/fp');
|
|
5
5
|
|
|
6
|
-
const { toTypeLiteral } = require('./utils');
|
|
6
|
+
const { toTypeLiteral, withAttributeNamespace } = require('./utils');
|
|
7
7
|
|
|
8
8
|
const { factory } = ts;
|
|
9
9
|
|
|
10
10
|
module.exports = {
|
|
11
11
|
string() {
|
|
12
|
-
return ['
|
|
12
|
+
return [withAttributeNamespace('String')];
|
|
13
13
|
},
|
|
14
14
|
text() {
|
|
15
|
-
return ['
|
|
15
|
+
return [withAttributeNamespace('Text')];
|
|
16
16
|
},
|
|
17
17
|
richtext() {
|
|
18
|
-
return ['
|
|
18
|
+
return [withAttributeNamespace('RichText')];
|
|
19
19
|
},
|
|
20
20
|
password() {
|
|
21
|
-
return ['
|
|
21
|
+
return [withAttributeNamespace('Password')];
|
|
22
22
|
},
|
|
23
23
|
email() {
|
|
24
|
-
return ['
|
|
24
|
+
return [withAttributeNamespace('Email')];
|
|
25
25
|
},
|
|
26
26
|
date() {
|
|
27
|
-
return ['
|
|
27
|
+
return [withAttributeNamespace('Date')];
|
|
28
28
|
},
|
|
29
29
|
time() {
|
|
30
|
-
return ['
|
|
30
|
+
return [withAttributeNamespace('Time')];
|
|
31
31
|
},
|
|
32
32
|
datetime() {
|
|
33
|
-
return ['
|
|
33
|
+
return [withAttributeNamespace('DateTime')];
|
|
34
34
|
},
|
|
35
35
|
timestamp() {
|
|
36
|
-
return ['
|
|
36
|
+
return [withAttributeNamespace('Timestamp')];
|
|
37
37
|
},
|
|
38
38
|
integer() {
|
|
39
|
-
return ['
|
|
39
|
+
return [withAttributeNamespace('Integer')];
|
|
40
40
|
},
|
|
41
41
|
biginteger() {
|
|
42
|
-
return ['
|
|
42
|
+
return [withAttributeNamespace('BigInteger')];
|
|
43
43
|
},
|
|
44
44
|
float() {
|
|
45
|
-
return ['
|
|
45
|
+
return [withAttributeNamespace('Float')];
|
|
46
46
|
},
|
|
47
47
|
decimal() {
|
|
48
|
-
return ['
|
|
48
|
+
return [withAttributeNamespace('Decimal')];
|
|
49
49
|
},
|
|
50
50
|
uid({ attribute, uid }) {
|
|
51
51
|
const { targetField, options } = attribute;
|
|
52
52
|
|
|
53
53
|
// If there are no params to compute, then return the attribute type alone
|
|
54
54
|
if (targetField === undefined && options === undefined) {
|
|
55
|
-
return ['
|
|
55
|
+
return [withAttributeNamespace('UID')];
|
|
56
56
|
}
|
|
57
57
|
|
|
58
58
|
const params = [];
|
|
@@ -74,21 +74,21 @@ module.exports = {
|
|
|
74
74
|
params.push(toTypeLiteral(options));
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
return ['
|
|
77
|
+
return [withAttributeNamespace('UID'), params];
|
|
78
78
|
},
|
|
79
79
|
enumeration({ attribute }) {
|
|
80
80
|
const { enum: enumValues } = attribute;
|
|
81
81
|
|
|
82
|
-
return ['
|
|
82
|
+
return [withAttributeNamespace('Enumeration'), [toTypeLiteral(enumValues)]];
|
|
83
83
|
},
|
|
84
84
|
boolean() {
|
|
85
|
-
return ['
|
|
85
|
+
return [withAttributeNamespace('Boolean')];
|
|
86
86
|
},
|
|
87
87
|
json() {
|
|
88
|
-
return ['
|
|
88
|
+
return [withAttributeNamespace('JSON')];
|
|
89
89
|
},
|
|
90
90
|
media() {
|
|
91
|
-
return ['
|
|
91
|
+
return [withAttributeNamespace('Media')];
|
|
92
92
|
},
|
|
93
93
|
relation({ uid, attribute }) {
|
|
94
94
|
const { relation, target } = attribute;
|
|
@@ -97,13 +97,13 @@ module.exports = {
|
|
|
97
97
|
|
|
98
98
|
if (isMorphRelation) {
|
|
99
99
|
return [
|
|
100
|
-
'
|
|
100
|
+
withAttributeNamespace('Relation'),
|
|
101
101
|
[factory.createStringLiteral(uid, true), factory.createStringLiteral(relation, true)],
|
|
102
102
|
];
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
return [
|
|
106
|
-
'
|
|
106
|
+
withAttributeNamespace('Relation'),
|
|
107
107
|
[
|
|
108
108
|
factory.createStringLiteral(uid, true),
|
|
109
109
|
factory.createStringLiteral(relation, true),
|
|
@@ -119,13 +119,13 @@ module.exports = {
|
|
|
119
119
|
params.push(factory.createTrue());
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
return ['
|
|
122
|
+
return [withAttributeNamespace('Component'), params];
|
|
123
123
|
},
|
|
124
124
|
dynamiczone({ attribute }) {
|
|
125
125
|
const componentsParam = factory.createTupleTypeNode(
|
|
126
126
|
attribute.components.map((component) => factory.createStringLiteral(component))
|
|
127
127
|
);
|
|
128
128
|
|
|
129
|
-
return ['
|
|
129
|
+
return [withAttributeNamespace('DynamicZone'), [componentsParam]];
|
|
130
130
|
},
|
|
131
131
|
};
|
|
@@ -4,9 +4,14 @@ const ts = require('typescript');
|
|
|
4
4
|
const { factory } = require('typescript');
|
|
5
5
|
const { isEmpty } = require('lodash/fp');
|
|
6
6
|
|
|
7
|
-
const {
|
|
7
|
+
const {
|
|
8
|
+
getSchemaExtendsTypeName,
|
|
9
|
+
getSchemaInterfaceName,
|
|
10
|
+
toTypeLiteral,
|
|
11
|
+
NAMESPACES,
|
|
12
|
+
} = require('./utils');
|
|
8
13
|
const attributeToPropertySignature = require('./attributes');
|
|
9
|
-
const { addImport } = require('
|
|
14
|
+
const { addImport } = require('../imports');
|
|
10
15
|
|
|
11
16
|
/**
|
|
12
17
|
* Generate a property signature for the schema's `attributes` field
|
|
@@ -51,11 +56,11 @@ const generateSchemaDefinition = (schema) => {
|
|
|
51
56
|
const interfaceName = getSchemaInterfaceName(uid);
|
|
52
57
|
const parentType = getSchemaExtendsTypeName(schema);
|
|
53
58
|
|
|
54
|
-
// Make sure the
|
|
55
|
-
addImport(
|
|
59
|
+
// Make sure the Schema namespace is imported
|
|
60
|
+
addImport(NAMESPACES.schema);
|
|
56
61
|
|
|
57
62
|
// Properties whose values can be mapped to a literal type expression
|
|
58
|
-
const literalPropertiesDefinitions = ['info', 'options', 'pluginOptions']
|
|
63
|
+
const literalPropertiesDefinitions = ['collectionName', 'info', 'options', 'pluginOptions']
|
|
59
64
|
// Ignore non-existent or empty declarations
|
|
60
65
|
.filter((key) => !isEmpty(schema[key]))
|
|
61
66
|
// Generate literal definition for each property
|
|
@@ -17,13 +17,10 @@ const {
|
|
|
17
17
|
propEq,
|
|
18
18
|
} = require('lodash/fp');
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
* @returns {object}
|
|
25
|
-
*/
|
|
26
|
-
const getAllStrapiSchemas = (strapi) => ({ ...strapi.contentTypes, ...strapi.components });
|
|
20
|
+
const NAMESPACES = {
|
|
21
|
+
schema: 'Schema',
|
|
22
|
+
attribute: 'Attribute',
|
|
23
|
+
};
|
|
27
24
|
|
|
28
25
|
/**
|
|
29
26
|
* Extract a valid interface name from a schema uid
|
|
@@ -58,7 +55,11 @@ const getSchemaModelType = (schema) => {
|
|
|
58
55
|
const getSchemaExtendsTypeName = (schema) => {
|
|
59
56
|
const base = getSchemaModelType(schema);
|
|
60
57
|
|
|
61
|
-
|
|
58
|
+
if (base === null) {
|
|
59
|
+
return null;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
return `${NAMESPACES.schema}.${upperFirst(base)}`;
|
|
62
63
|
};
|
|
63
64
|
|
|
64
65
|
/**
|
|
@@ -143,8 +144,26 @@ const getDefinitionAttributesCount = (definition) => {
|
|
|
143
144
|
return attributesNode.type.members.length;
|
|
144
145
|
};
|
|
145
146
|
|
|
147
|
+
/**
|
|
148
|
+
* Add the attribute namespace before the typename
|
|
149
|
+
*
|
|
150
|
+
* @param {string} typeName
|
|
151
|
+
* @returns {string}
|
|
152
|
+
*/
|
|
153
|
+
const withAttributeNamespace = (typeName) => `${NAMESPACES.attribute}.${typeName}`;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Add the schema namespace before the typename
|
|
157
|
+
*
|
|
158
|
+
* @param {string} typeName
|
|
159
|
+
* @returns {string}
|
|
160
|
+
*/
|
|
161
|
+
const withSchemaNamespace = (typeName) => `${NAMESPACES.schema}.${typeName}`;
|
|
162
|
+
|
|
146
163
|
module.exports = {
|
|
147
|
-
|
|
164
|
+
NAMESPACES,
|
|
165
|
+
withAttributeNamespace,
|
|
166
|
+
withSchemaNamespace,
|
|
148
167
|
getSchemaInterfaceName,
|
|
149
168
|
getSchemaExtendsTypeName,
|
|
150
169
|
getSchemaModelType,
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { factory } = require('typescript');
|
|
4
|
+
|
|
5
|
+
const { models } = require('../common');
|
|
6
|
+
const { emitDefinitions, format, generateSharedExtensionDefinition } = require('../utils');
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Generate type definitions for Strapi Components
|
|
10
|
+
*
|
|
11
|
+
* @param {object} [options]
|
|
12
|
+
* @param {object} options.strapi
|
|
13
|
+
* @param {object} options.logger
|
|
14
|
+
* @param {string} options.pwd
|
|
15
|
+
*/
|
|
16
|
+
const generateComponentsDefinitions = async (options = {}) => {
|
|
17
|
+
const { strapi } = options;
|
|
18
|
+
|
|
19
|
+
const { components } = strapi;
|
|
20
|
+
|
|
21
|
+
const componentsDefinitions = Object.values(components).map((contentType) => ({
|
|
22
|
+
uid: contentType.uid,
|
|
23
|
+
definition: models.schema.generateSchemaDefinition(contentType),
|
|
24
|
+
}));
|
|
25
|
+
|
|
26
|
+
const formattedSchemasDefinitions = componentsDefinitions.reduce((acc, def) => {
|
|
27
|
+
acc.push(
|
|
28
|
+
// Definition
|
|
29
|
+
def.definition,
|
|
30
|
+
|
|
31
|
+
// Add a newline between each interface declaration
|
|
32
|
+
factory.createIdentifier('\n')
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
return acc;
|
|
36
|
+
}, []);
|
|
37
|
+
|
|
38
|
+
const allDefinitions = [
|
|
39
|
+
// Imports
|
|
40
|
+
...models.imports.generateImportDefinition(),
|
|
41
|
+
|
|
42
|
+
// Add a newline after the import statement
|
|
43
|
+
factory.createIdentifier('\n'),
|
|
44
|
+
|
|
45
|
+
// Schemas
|
|
46
|
+
...formattedSchemasDefinitions,
|
|
47
|
+
|
|
48
|
+
// Global
|
|
49
|
+
generateSharedExtensionDefinition('Components', componentsDefinitions),
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const output = emitDefinitions(allDefinitions);
|
|
53
|
+
const formattedOutput = await format(output);
|
|
54
|
+
|
|
55
|
+
return { output: formattedOutput, stats: {} };
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
module.exports = generateComponentsDefinitions;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { factory } = require('typescript');
|
|
4
|
+
|
|
5
|
+
const { models } = require('../common');
|
|
6
|
+
const { emitDefinitions, format, generateSharedExtensionDefinition } = require('../utils');
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Generate type definitions for Strapi Content-Types
|
|
10
|
+
*
|
|
11
|
+
* @param {object} [options]
|
|
12
|
+
* @param {object} options.strapi
|
|
13
|
+
* @param {object} options.logger
|
|
14
|
+
* @param {string} options.pwd
|
|
15
|
+
*/
|
|
16
|
+
const generateContentTypesDefinitions = async (options = {}) => {
|
|
17
|
+
const { strapi } = options;
|
|
18
|
+
|
|
19
|
+
const { contentTypes } = strapi;
|
|
20
|
+
|
|
21
|
+
const contentTypesDefinitions = Object.values(contentTypes).map((contentType) => ({
|
|
22
|
+
uid: contentType.uid,
|
|
23
|
+
definition: models.schema.generateSchemaDefinition(contentType),
|
|
24
|
+
}));
|
|
25
|
+
|
|
26
|
+
const formattedSchemasDefinitions = contentTypesDefinitions.reduce((acc, def) => {
|
|
27
|
+
acc.push(
|
|
28
|
+
// Definition
|
|
29
|
+
def.definition,
|
|
30
|
+
|
|
31
|
+
// Add a newline between each interface declaration
|
|
32
|
+
factory.createIdentifier('\n')
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
return acc;
|
|
36
|
+
}, []);
|
|
37
|
+
|
|
38
|
+
const allDefinitions = [
|
|
39
|
+
// Imports
|
|
40
|
+
...models.imports.generateImportDefinition(),
|
|
41
|
+
|
|
42
|
+
// Add a newline after the import statement
|
|
43
|
+
factory.createIdentifier('\n'),
|
|
44
|
+
|
|
45
|
+
// Schemas
|
|
46
|
+
...formattedSchemasDefinitions,
|
|
47
|
+
|
|
48
|
+
// Global
|
|
49
|
+
generateSharedExtensionDefinition('ContentTypes', contentTypesDefinitions),
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const output = emitDefinitions(allDefinitions);
|
|
53
|
+
const formattedOutput = await format(output);
|
|
54
|
+
|
|
55
|
+
return { output: formattedOutput, stats: {} };
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
module.exports = generateContentTypesDefinitions;
|
package/lib/generators/index.js
CHANGED
|
@@ -1,7 +1,122 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const
|
|
3
|
+
const path = require('path');
|
|
4
|
+
const chalk = require('chalk');
|
|
4
5
|
|
|
5
|
-
|
|
6
|
-
|
|
6
|
+
const { TYPES_ROOT_DIR, GENERATED_OUT_DIR } = require('./constants');
|
|
7
|
+
const { saveDefinitionToFileSystem, createLogger, timer } = require('./utils');
|
|
8
|
+
const generateContentTypesDefinitions = require('./content-types');
|
|
9
|
+
const generateComponentsDefinitions = require('./components');
|
|
10
|
+
|
|
11
|
+
const GENERATORS = {
|
|
12
|
+
contentTypes: generateContentTypesDefinitions,
|
|
13
|
+
components: generateComponentsDefinitions,
|
|
7
14
|
};
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* @typedef GenerateConfig
|
|
18
|
+
*
|
|
19
|
+
* @property {object} strapi
|
|
20
|
+
* @property {boolean} pwd
|
|
21
|
+
* @property {object} [artifacts]
|
|
22
|
+
* @property {boolean} [artifacts.contentTypes]
|
|
23
|
+
* @property {boolean} [artifacts.components]
|
|
24
|
+
* @property {boolean} [artifacts.services]
|
|
25
|
+
* @property {boolean} [artifacts.controllers]
|
|
26
|
+
* @property {boolean} [artifacts.policies]
|
|
27
|
+
* @property {boolean} [artifacts.middlewares]
|
|
28
|
+
* @property {object} [logger]
|
|
29
|
+
* @property {boolean} [logger.silent]
|
|
30
|
+
* @property {boolean} [logger.debug]
|
|
31
|
+
* @property {boolean} [logger.verbose]
|
|
32
|
+
*/
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Generate types definitions based on the given configuration
|
|
36
|
+
*
|
|
37
|
+
* @param {GenerateConfig} [config]
|
|
38
|
+
*/
|
|
39
|
+
const generate = async (config = {}) => {
|
|
40
|
+
const { pwd, rootDir = TYPES_ROOT_DIR, strapi, artifacts = {}, logger: loggerConfig } = config;
|
|
41
|
+
const reports = {};
|
|
42
|
+
const logger = createLogger(loggerConfig);
|
|
43
|
+
const psTimer = timer().start();
|
|
44
|
+
|
|
45
|
+
const registryPwd = path.join(pwd, rootDir, GENERATED_OUT_DIR);
|
|
46
|
+
const generatorConfig = { strapi, pwd: registryPwd, logger };
|
|
47
|
+
|
|
48
|
+
const returnWithMessage = () => {
|
|
49
|
+
const nbWarnings = chalk.yellow(`${logger.warnings} warning(s)`);
|
|
50
|
+
const nbErrors = chalk.red(`${logger.errors} error(s)`);
|
|
51
|
+
|
|
52
|
+
const status = logger.errors > 0 ? chalk.red('errored') : chalk.green('completed successfully');
|
|
53
|
+
|
|
54
|
+
psTimer.end();
|
|
55
|
+
|
|
56
|
+
logger.info(`The task ${status} with ${nbWarnings} and ${nbErrors} in ${psTimer.duration}s.`);
|
|
57
|
+
|
|
58
|
+
return reports;
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
const enabledArtifacts = Object.keys(artifacts).filter((p) => artifacts[p] === true);
|
|
62
|
+
|
|
63
|
+
logger.info('Starting the type generation process');
|
|
64
|
+
logger.debug(`Enabled artifacts: ${enabledArtifacts.join(', ')}`);
|
|
65
|
+
|
|
66
|
+
for (const artifact of enabledArtifacts) {
|
|
67
|
+
const boldArtifact = chalk.bold(artifact); // used for log messages
|
|
68
|
+
|
|
69
|
+
logger.info(`Generating types for ${boldArtifact}`);
|
|
70
|
+
|
|
71
|
+
if (artifact in GENERATORS) {
|
|
72
|
+
const generator = GENERATORS[artifact];
|
|
73
|
+
|
|
74
|
+
try {
|
|
75
|
+
const artifactGenTimer = timer().start();
|
|
76
|
+
|
|
77
|
+
reports[artifact] = await generator(generatorConfig);
|
|
78
|
+
|
|
79
|
+
artifactGenTimer.end();
|
|
80
|
+
|
|
81
|
+
logger.debug(`Generated ${boldArtifact} in ${artifactGenTimer.duration}s`);
|
|
82
|
+
} catch (e) {
|
|
83
|
+
logger.error(
|
|
84
|
+
`Failed to generate types for ${boldArtifact}: ${e.message ?? e.toString()}. Exiting`
|
|
85
|
+
);
|
|
86
|
+
return returnWithMessage();
|
|
87
|
+
}
|
|
88
|
+
} else {
|
|
89
|
+
logger.warn(`The types generator for ${boldArtifact} is not implemented, skipping`);
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
for (const artifact of Object.keys(reports)) {
|
|
94
|
+
const boldArtifact = chalk.bold(artifact); // used for log messages
|
|
95
|
+
|
|
96
|
+
const artifactFsTimer = timer().start();
|
|
97
|
+
|
|
98
|
+
const report = reports[artifact];
|
|
99
|
+
const filename = `${artifact}.d.ts`;
|
|
100
|
+
|
|
101
|
+
try {
|
|
102
|
+
const outPath = await saveDefinitionToFileSystem(registryPwd, filename, report.output);
|
|
103
|
+
const relativeOutPath = path.relative(__dirname, outPath);
|
|
104
|
+
|
|
105
|
+
artifactFsTimer.end();
|
|
106
|
+
|
|
107
|
+
logger.info(`Saved ${boldArtifact} types in ${chalk.bold(relativeOutPath)}`);
|
|
108
|
+
logger.debug(`Saved ${boldArtifact} in ${artifactFsTimer.duration}s`);
|
|
109
|
+
} catch (e) {
|
|
110
|
+
logger.error(
|
|
111
|
+
`An error occurred while saving ${boldArtifact} types to the filesystem: ${
|
|
112
|
+
e.message ?? e.toString()
|
|
113
|
+
}. Exiting`
|
|
114
|
+
);
|
|
115
|
+
return returnWithMessage();
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
return returnWithMessage();
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
module.exports = { generate };
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const ts = require('typescript');
|
|
4
|
+
const prettier = require('prettier');
|
|
5
|
+
const fse = require('fs-extra');
|
|
6
|
+
const path = require('path');
|
|
7
|
+
const chalk = require('chalk');
|
|
8
|
+
const assert = require('assert');
|
|
9
|
+
|
|
10
|
+
const { factory } = ts;
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Aggregate the given TypeScript nodes into a single string
|
|
14
|
+
*
|
|
15
|
+
* @param {ts.Node[]} definitions
|
|
16
|
+
* @return {string}
|
|
17
|
+
*/
|
|
18
|
+
const emitDefinitions = (definitions) => {
|
|
19
|
+
const nodeArray = factory.createNodeArray(definitions);
|
|
20
|
+
|
|
21
|
+
const sourceFile = ts.createSourceFile(
|
|
22
|
+
'placeholder.ts',
|
|
23
|
+
'',
|
|
24
|
+
ts.ScriptTarget.ESNext,
|
|
25
|
+
true,
|
|
26
|
+
ts.ScriptKind.TS
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
const printer = ts.createPrinter({ omitTrailingSemicolon: true });
|
|
30
|
+
|
|
31
|
+
return printer.printList(ts.ListFormat.MultiLine, nodeArray, sourceFile);
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Save the given string representation of TS nodes in a file
|
|
36
|
+
* If the given directory doesn't exist, it'll be created automatically
|
|
37
|
+
*
|
|
38
|
+
* @param {string} dir
|
|
39
|
+
* @param {string} file
|
|
40
|
+
* @param {string} content
|
|
41
|
+
*
|
|
42
|
+
* @return {Promise<string>} The path of the created file
|
|
43
|
+
*/
|
|
44
|
+
const saveDefinitionToFileSystem = async (dir, file, content) => {
|
|
45
|
+
const filepath = path.join(dir, file);
|
|
46
|
+
|
|
47
|
+
fse.ensureDirSync(dir);
|
|
48
|
+
await fse.writeFile(filepath, content);
|
|
49
|
+
|
|
50
|
+
return filepath;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Format the given definitions.
|
|
55
|
+
* Uses the existing config if one is defined in the project.
|
|
56
|
+
*
|
|
57
|
+
* @param {string} content
|
|
58
|
+
* @returns {Promise<string>}
|
|
59
|
+
*/
|
|
60
|
+
const format = async (content) => {
|
|
61
|
+
const configFile = await prettier.resolveConfigFile();
|
|
62
|
+
const config = configFile
|
|
63
|
+
? await prettier.resolveConfig(configFile)
|
|
64
|
+
: // Default config
|
|
65
|
+
{
|
|
66
|
+
singleQuote: true,
|
|
67
|
+
useTabs: false,
|
|
68
|
+
tabWidth: 2,
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
Object.assign(config, { parser: 'typescript' });
|
|
72
|
+
|
|
73
|
+
return prettier.format(content, config);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Generate the extension block for a shared component from strapi/strapi
|
|
78
|
+
*
|
|
79
|
+
* @param {string} registry The registry to extend
|
|
80
|
+
* @param {Array<{ uid: string; definition: ts.TypeNode }>} definitions
|
|
81
|
+
* @returns {ts.ModuleDeclaration}
|
|
82
|
+
*/
|
|
83
|
+
const generateSharedExtensionDefinition = (registry, definitions) => {
|
|
84
|
+
const properties = definitions.map(({ uid, definition }) =>
|
|
85
|
+
factory.createPropertySignature(
|
|
86
|
+
undefined,
|
|
87
|
+
factory.createStringLiteral(uid, true),
|
|
88
|
+
undefined,
|
|
89
|
+
factory.createTypeReferenceNode(factory.createIdentifier(definition.name.escapedText))
|
|
90
|
+
)
|
|
91
|
+
);
|
|
92
|
+
|
|
93
|
+
return factory.createModuleDeclaration(
|
|
94
|
+
[factory.createModifier(ts.SyntaxKind.DeclareKeyword)],
|
|
95
|
+
factory.createStringLiteral('@strapi/strapi', true),
|
|
96
|
+
factory.createModuleBlock([
|
|
97
|
+
factory.createModuleDeclaration(
|
|
98
|
+
[factory.createModifier(ts.SyntaxKind.ExportKeyword)],
|
|
99
|
+
factory.createIdentifier('Shared'),
|
|
100
|
+
factory.createModuleBlock(
|
|
101
|
+
properties.length > 0
|
|
102
|
+
? [
|
|
103
|
+
factory.createInterfaceDeclaration(
|
|
104
|
+
[factory.createModifier(ts.SyntaxKind.ExportKeyword)],
|
|
105
|
+
factory.createIdentifier(registry),
|
|
106
|
+
undefined,
|
|
107
|
+
undefined,
|
|
108
|
+
properties
|
|
109
|
+
),
|
|
110
|
+
]
|
|
111
|
+
: []
|
|
112
|
+
)
|
|
113
|
+
),
|
|
114
|
+
]),
|
|
115
|
+
ts.NodeFlags.ExportContext
|
|
116
|
+
);
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
const createLogger = (options = {}) => {
|
|
120
|
+
const { silent = false, debug = false } = options;
|
|
121
|
+
|
|
122
|
+
const state = { errors: 0, warning: 0 };
|
|
123
|
+
|
|
124
|
+
return {
|
|
125
|
+
get warnings() {
|
|
126
|
+
return state.warning;
|
|
127
|
+
},
|
|
128
|
+
|
|
129
|
+
get errors() {
|
|
130
|
+
return state.errors;
|
|
131
|
+
},
|
|
132
|
+
|
|
133
|
+
debug(...args) {
|
|
134
|
+
if (silent || !debug) {
|
|
135
|
+
return;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
console.log(chalk.cyan(`[DEBUG]\t[${new Date().toISOString()}] (Typegen)`), ...args);
|
|
139
|
+
},
|
|
140
|
+
|
|
141
|
+
info(...args) {
|
|
142
|
+
if (silent) {
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
console.info(chalk.blue(`[INFO]\t[${new Date().toISOString()}] (Typegen)`), ...args);
|
|
147
|
+
},
|
|
148
|
+
|
|
149
|
+
warn(...args) {
|
|
150
|
+
state.warning += 1;
|
|
151
|
+
|
|
152
|
+
if (silent) {
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
console.warn(chalk.yellow(`[WARN]\t[${new Date().toISOString()}] (Typegen)`), ...args);
|
|
157
|
+
},
|
|
158
|
+
|
|
159
|
+
error(...args) {
|
|
160
|
+
state.errors += 1;
|
|
161
|
+
|
|
162
|
+
if (silent) {
|
|
163
|
+
return;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
console.error(chalk.red(`[ERROR]\t[${new Date().toISOString()}] (Typegen)`), ...args);
|
|
167
|
+
},
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
const timer = () => {
|
|
172
|
+
const state = {
|
|
173
|
+
start: null,
|
|
174
|
+
end: null,
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
return {
|
|
178
|
+
start() {
|
|
179
|
+
assert(state.start === null, 'The timer has already been started');
|
|
180
|
+
assert(state.end === null, 'The timer has already been ended');
|
|
181
|
+
|
|
182
|
+
state.start = Date.now();
|
|
183
|
+
|
|
184
|
+
return this;
|
|
185
|
+
},
|
|
186
|
+
|
|
187
|
+
end() {
|
|
188
|
+
assert(state.start !== null, 'The timer needs to be started before ending it');
|
|
189
|
+
assert(state.end === null, 'The timer has already been ended');
|
|
190
|
+
|
|
191
|
+
state.end = Date.now();
|
|
192
|
+
|
|
193
|
+
return this;
|
|
194
|
+
},
|
|
195
|
+
|
|
196
|
+
get duration() {
|
|
197
|
+
assert(state.start !== null, 'The timer has not been started');
|
|
198
|
+
|
|
199
|
+
return ((state.end ?? Date.now) - state.start) / 1000;
|
|
200
|
+
},
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
|
|
204
|
+
module.exports = {
|
|
205
|
+
emitDefinitions,
|
|
206
|
+
saveDefinitionToFileSystem,
|
|
207
|
+
format,
|
|
208
|
+
generateSharedExtensionDefinition,
|
|
209
|
+
createLogger,
|
|
210
|
+
timer,
|
|
211
|
+
};
|