@strapi/typescript-utils 0.0.0-next.f45143c5e2a8a9d85691d0abf79a3f42024a0c71 → 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.
@@ -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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/typescript-utils",
3
- "version": "0.0.0-next.f45143c5e2a8a9d85691d0abf79a3f42024a0c71",
3
+ "version": "0.0.0-next.f7babb775ed9a7e18d8351cb7f74c63e016323c4",
4
4
  "description": "Typescript support for Strapi",
5
5
  "keywords": [
6
6
  "strapi",
@@ -20,6 +20,7 @@
20
20
  }
21
21
  ],
22
22
  "main": "./lib/index.js",
23
+ "types": "index.d.ts",
23
24
  "directories": {
24
25
  "lib": "./lib"
25
26
  },
@@ -31,14 +32,14 @@
31
32
  "dependencies": {
32
33
  "chalk": "4.1.2",
33
34
  "cli-table3": "0.6.2",
34
- "fs-extra": "10.0.1",
35
+ "fs-extra": "10.0.0",
35
36
  "lodash": "4.17.21",
36
37
  "prettier": "2.8.4",
37
- "typescript": "4.6.2"
38
+ "typescript": "5.1.3"
38
39
  },
39
40
  "engines": {
40
- "node": ">=14.19.1 <=18.x.x",
41
+ "node": ">=16.0.0 <=20.x.x",
41
42
  "npm": ">=6.0.0"
42
43
  },
43
- "gitHead": "f45143c5e2a8a9d85691d0abf79a3f42024a0c71"
44
+ "gitHead": "f7babb775ed9a7e18d8351cb7f74c63e016323c4"
44
45
  }
@@ -1,108 +0,0 @@
1
- 'use strict';
2
-
3
- jest.mock('../../../generators/schemas/utils', () => ({
4
- getSchemaInterfaceName: jest.fn(),
5
- }));
6
-
7
- const ts = require('typescript');
8
- const { get } = require('lodash/fp');
9
-
10
- const { generateGlobalDefinition } = require('../../../generators/schemas/global');
11
- const { getSchemaInterfaceName } = require('../../../generators/schemas/utils');
12
-
13
- const getSchemasInterfaceNode = get('body.statements[0].body.statements[0]');
14
-
15
- describe('Global', () => {
16
- afterAll(() => {
17
- jest.resetAllMocks();
18
- });
19
-
20
- const assertGlobalNodeStructure = (node) => {
21
- // "declare global"
22
- expect(node.kind).toBe(ts.SyntaxKind.ModuleDeclaration);
23
- expect(node.modifiers).toHaveLength(1);
24
- expect(node.modifiers[0].kind).toBe(ts.SyntaxKind.DeclareKeyword);
25
- expect(node.name.originalKeywordKind).toBe(ts.SyntaxKind.GlobalKeyword);
26
- expect(node.name.escapedText).toBe('global');
27
-
28
- // "namespace Strapi"
29
- const [strapiNamespace] = node.body.statements;
30
-
31
- expect(strapiNamespace.kind).toBe(ts.SyntaxKind.ModuleDeclaration);
32
- expect(strapiNamespace.name.kind).toBe(ts.SyntaxKind.Identifier);
33
- expect(strapiNamespace.name.escapedText).toBe('Strapi');
34
-
35
- // "interface Schemas"
36
- const [schemasInterface] = strapiNamespace.body.statements;
37
-
38
- expect(schemasInterface.kind).toBe(ts.SyntaxKind.InterfaceDeclaration);
39
- expect(schemasInterface.name.escapedText).toBe('Schemas');
40
- };
41
-
42
- describe('Generate Global Definition', () => {
43
- beforeEach(() => {
44
- jest.resetAllMocks();
45
- });
46
-
47
- test('With empty definition', () => {
48
- const definitions = [];
49
-
50
- const globalNode = generateGlobalDefinition(definitions);
51
-
52
- assertGlobalNodeStructure(globalNode);
53
-
54
- expect(getSchemaInterfaceName).not.toHaveBeenCalled();
55
-
56
- const schemasNode = getSchemasInterfaceNode(globalNode);
57
-
58
- expect(schemasNode.members).toHaveLength(0);
59
- });
60
-
61
- test('With no definition', () => {
62
- const globalNode = generateGlobalDefinition();
63
-
64
- assertGlobalNodeStructure(globalNode);
65
-
66
- expect(getSchemaInterfaceName).not.toHaveBeenCalled();
67
-
68
- const schemasNode = getSchemasInterfaceNode(globalNode);
69
-
70
- expect(schemasNode.members).toHaveLength(0);
71
- });
72
-
73
- test('With multiple definitions', () => {
74
- const definitions = [
75
- { schema: { uid: 'api::foo.foo' } },
76
- { schema: { uid: 'api::bar.bar' } },
77
- { schema: { uid: 'api::foobar.foobar' } },
78
- { schema: { uid: 'default.barfoo' } },
79
- ];
80
-
81
- getSchemaInterfaceName.mockReturnValue('Placeholder');
82
-
83
- const globalNode = generateGlobalDefinition(definitions);
84
-
85
- assertGlobalNodeStructure(globalNode);
86
-
87
- const schemasNode = getSchemasInterfaceNode(globalNode);
88
-
89
- expect(schemasNode.members).toHaveLength(definitions.length);
90
-
91
- definitions.forEach(({ schema }, index) => {
92
- const { uid } = schema;
93
- const node = schemasNode.members[index];
94
-
95
- expect(node.kind).toBe(ts.SyntaxKind.PropertySignature);
96
-
97
- expect(getSchemaInterfaceName).toHaveBeenCalledWith(uid);
98
-
99
- expect(node.name.kind).toBe(ts.SyntaxKind.StringLiteral);
100
- expect(node.name.text).toBe(uid);
101
- expect(node.name.singleQuote).toBeTruthy();
102
-
103
- expect(node.type.kind).toBe(ts.SyntaxKind.TypeReference);
104
- expect(node.type.typeName.escapedText).toBe('Placeholder');
105
- });
106
- });
107
- });
108
- });
@@ -1,70 +0,0 @@
1
- 'use strict';
2
-
3
- /* eslint-disable no-bitwise */
4
-
5
- const ts = require('typescript');
6
- const { factory } = require('typescript');
7
-
8
- const { getSchemaInterfaceName } = require('./utils');
9
-
10
- /**
11
- *
12
- * @param {object} schemaDefinition
13
- * @param {ts.InterfaceDeclaration} schemaDefinition.definition
14
- * @param {object} schemaDefinition.schema
15
- */
16
- const schemaDefinitionToPropertySignature = ({ schema }) => {
17
- const { uid } = schema;
18
-
19
- const interfaceTypeName = getSchemaInterfaceName(uid);
20
-
21
- return factory.createPropertySignature(
22
- undefined,
23
- factory.createStringLiteral(uid, true),
24
- undefined,
25
- factory.createTypeReferenceNode(factory.createIdentifier(interfaceTypeName))
26
- );
27
- };
28
-
29
- /**
30
- * Generate the global module augmentation block
31
- *
32
- * @param {Array<{ schema: object; definition: ts.TypeNode }>} schemasDefinitions
33
- * @returns {ts.ModuleDeclaration}
34
- */
35
- const generateGlobalDefinition = (schemasDefinitions = []) => {
36
- const properties = schemasDefinitions.map(schemaDefinitionToPropertySignature);
37
-
38
- return factory.createModuleDeclaration(
39
- undefined,
40
- [factory.createModifier(ts.SyntaxKind.DeclareKeyword)],
41
- factory.createIdentifier('global'),
42
- factory.createModuleBlock([
43
- factory.createModuleDeclaration(
44
- undefined,
45
- undefined,
46
- factory.createIdentifier('Strapi'),
47
- factory.createModuleBlock([
48
- factory.createInterfaceDeclaration(
49
- undefined,
50
- undefined,
51
- factory.createIdentifier('Schemas'),
52
- undefined,
53
- undefined,
54
- properties
55
- ),
56
- ]),
57
- ts.NodeFlags.Namespace |
58
- ts.NodeFlags.ExportContext |
59
- ts.NodeFlags.Ambient |
60
- ts.NodeFlags.ContextFlags
61
- ),
62
- ]),
63
- ts.NodeFlags.ExportContext |
64
- ts.NodeFlags.GlobalAugmentation |
65
- ts.NodeFlags.Ambient |
66
- ts.NodeFlags.ContextFlags
67
- );
68
- };
69
-
70
- module.exports = { generateGlobalDefinition };
@@ -1,185 +0,0 @@
1
- 'use strict';
2
-
3
- const path = require('path');
4
-
5
- const ts = require('typescript');
6
- const { factory } = require('typescript');
7
-
8
- const fp = require('lodash/fp');
9
- const fse = require('fs-extra');
10
- const prettier = require('prettier');
11
- const chalk = require('chalk');
12
- const CLITable = require('cli-table3');
13
-
14
- const { generateImportDefinition } = require('./imports');
15
- const { generateSchemaDefinition } = require('./schema');
16
- const { generateGlobalDefinition } = require('./global');
17
- const {
18
- getAllStrapiSchemas,
19
- getSchemaInterfaceName,
20
- getSchemaModelType,
21
- getDefinitionAttributesCount,
22
- } = require('./utils');
23
-
24
- const DEFAULT_OUT_FILENAME = 'schemas.d.ts';
25
-
26
- const emitDefinitions = (definitions) => {
27
- const nodeArray = factory.createNodeArray(definitions);
28
-
29
- const sourceFile = ts.createSourceFile(
30
- 'placeholder.ts',
31
- '',
32
- ts.ScriptTarget.ESNext,
33
- true,
34
- ts.ScriptKind.TS
35
- );
36
-
37
- const printer = ts.createPrinter({ newLine: true, omitTrailingSemicolon: true });
38
-
39
- return printer.printList(ts.ListFormat.MultiLine, nodeArray, sourceFile);
40
- };
41
-
42
- const saveDefinitionToFileSystem = async (dir, file, content) => {
43
- const filepath = path.join(dir, file);
44
-
45
- await fse.writeFile(filepath, content);
46
-
47
- return filepath;
48
- };
49
-
50
- /**
51
- * Format the given definitions.
52
- * Uses the existing config if one is defined in the project.
53
- *
54
- * @param {string} content
55
- * @returns {Promise<string>}
56
- */
57
- const format = async (content) => {
58
- const configFile = await prettier.resolveConfigFile();
59
- const config = configFile
60
- ? await prettier.resolveConfig(configFile)
61
- : // Default config
62
- {
63
- singleQuote: true,
64
- useTabs: false,
65
- tabWidth: 2,
66
- };
67
-
68
- Object.assign(config, { parser: 'typescript' });
69
-
70
- return prettier.format(content, config);
71
- };
72
-
73
- const logDebugInformation = (definitions, options = {}) => {
74
- const { filepath, verbose, silent } = options;
75
-
76
- if (verbose) {
77
- const table = new CLITable({
78
- head: [
79
- chalk.bold(chalk.green('Model Type')),
80
- chalk.bold(chalk.blue('UID')),
81
- chalk.bold(chalk.blue('Type')),
82
- chalk.bold(chalk.gray('Attributes Count')),
83
- ],
84
- colAligns: ['center', 'left', 'left', 'center'],
85
- });
86
-
87
- const sortedDefinitions = definitions.map((def) => ({
88
- ...def,
89
- attributesCount: getDefinitionAttributesCount(def.definition),
90
- }));
91
-
92
- for (const { schema, attributesCount } of sortedDefinitions) {
93
- const modelType = fp.upperFirst(getSchemaModelType(schema));
94
- const interfaceType = getSchemaInterfaceName(schema.uid);
95
-
96
- table.push([
97
- chalk.greenBright(modelType),
98
- chalk.blue(schema.uid),
99
- chalk.blue(interfaceType),
100
- chalk.grey(fp.isNil(attributesCount) ? 'N/A' : attributesCount),
101
- ]);
102
- }
103
-
104
- // Table
105
- console.log(table.toString());
106
- }
107
-
108
- if (!silent) {
109
- // Metrics
110
- console.log(
111
- chalk.greenBright(
112
- `Generated ${definitions.length} type definition for your Strapi application's schemas.`
113
- )
114
- );
115
-
116
- // Filepath
117
- const relativePath = path.relative(process.cwd(), filepath);
118
-
119
- console.log(
120
- chalk.grey(`The definitions file has been generated here: ${chalk.bold(relativePath)}`)
121
- );
122
- }
123
- };
124
-
125
- /**
126
- * Generate type definitions for Strapi schemas
127
- *
128
- * @param {object} options
129
- * @param {Strapi} options.strapi
130
- * @param {{ distDir: string; appDir: string; }} options.dirs
131
- * @param {string} [options.outDir]
132
- * @param {string} [options.file]
133
- * @param {boolean} [options.verbose]
134
- */
135
- const generateSchemasDefinitions = async (options = {}) => {
136
- const {
137
- strapi,
138
- outDir = process.cwd(),
139
- file = DEFAULT_OUT_FILENAME,
140
- verbose = false,
141
- silent = false,
142
- } = options;
143
-
144
- const schemas = getAllStrapiSchemas(strapi);
145
-
146
- const schemasDefinitions = Object.values(schemas).map((schema) => ({
147
- schema,
148
- definition: generateSchemaDefinition(schema),
149
- }));
150
-
151
- const formattedSchemasDefinitions = schemasDefinitions.reduce((acc, def) => {
152
- acc.push(
153
- // Definition
154
- def.definition,
155
-
156
- // Add a newline between each interface declaration
157
- factory.createIdentifier('\n')
158
- );
159
-
160
- return acc;
161
- }, []);
162
-
163
- const allDefinitions = [
164
- // Imports
165
- generateImportDefinition(),
166
-
167
- // Add a newline after the import statement
168
- factory.createIdentifier('\n'),
169
-
170
- // Schemas
171
- ...formattedSchemasDefinitions,
172
-
173
- // Global
174
- generateGlobalDefinition(schemasDefinitions),
175
- ];
176
-
177
- const output = emitDefinitions(allDefinitions);
178
- const formattedOutput = await format(output);
179
-
180
- const definitionFilepath = await saveDefinitionToFileSystem(outDir, file, formattedOutput);
181
-
182
- logDebugInformation(schemasDefinitions, { filepath: definitionFilepath, verbose, silent });
183
- };
184
-
185
- module.exports = generateSchemasDefinitions;