@ui5/webcomponents-tools 0.0.0-fb61e9889 → 0.0.0-fca1107e7
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 +980 -0
- package/README.md +6 -6
- package/assets-meta.js +16 -3
- package/bin/dev.js +1 -5
- package/components-package/eslint.js +36 -0
- package/components-package/nps.js +108 -70
- package/components-package/postcss.components.js +1 -21
- package/components-package/postcss.themes.js +1 -23
- package/components-package/vite.config.js +13 -0
- package/components-package/wdio.js +405 -353
- package/components-package/wdio.sync.js +26 -2
- package/icons-collection/nps.js +51 -18
- package/lib/amd-to-es6/index.js +102 -0
- package/lib/amd-to-es6/no-remaining-require.js +33 -0
- package/lib/cem/custom-elements-manifest.config.mjs +501 -0
- package/lib/cem/event.mjs +131 -0
- package/lib/cem/schema-internal.json +1357 -0
- package/lib/cem/schema.json +1098 -0
- package/lib/cem/types-internal.d.ts +796 -0
- package/lib/cem/types.d.ts +736 -0
- package/lib/cem/utils.mjs +384 -0
- package/lib/cem/validate.js +70 -0
- package/lib/copy-and-watch/index.js +24 -1
- package/lib/copy-list/index.js +17 -17
- package/lib/create-icons/index.js +124 -58
- package/lib/create-illustrations/index.js +153 -66
- package/lib/create-new-component/index.js +71 -104
- package/lib/create-new-component/jsFileContentTemplate.js +73 -0
- package/lib/create-new-component/tsFileContentTemplate.js +71 -0
- package/lib/css-processors/css-processor-component-styles.mjs +47 -0
- package/lib/css-processors/css-processor-components.mjs +77 -0
- package/lib/css-processors/css-processor-themes.mjs +79 -0
- package/lib/css-processors/scope-variables.mjs +49 -0
- package/lib/css-processors/shared.mjs +76 -0
- package/lib/dev-server/custom-hot-update-plugin.js +39 -0
- package/lib/dev-server/dev-server.js +66 -0
- package/lib/dev-server/virtual-index-html-plugin.js +52 -0
- package/lib/generate-custom-elements-manifest/index.js +271 -0
- package/lib/generate-js-imports/illustrations.js +86 -0
- package/lib/generate-json-imports/i18n.js +43 -31
- package/lib/generate-json-imports/themes.js +36 -24
- package/lib/hbs2lit/src/compiler.js +24 -4
- package/lib/hbs2lit/src/includesReplacer.js +5 -5
- package/lib/hbs2lit/src/litVisitor2.js +95 -24
- package/lib/hbs2lit/src/svgProcessor.js +12 -5
- package/lib/hbs2ui5/RenderTemplates/LitRenderer.js +32 -4
- package/lib/hbs2ui5/index.js +56 -23
- package/lib/i18n/defaults.js +65 -57
- package/lib/i18n/toJSON.js +12 -11
- package/lib/jsdoc/configTypescript.json +29 -0
- package/lib/jsdoc/plugin.js +41 -0
- package/lib/jsdoc/preprocess.js +146 -0
- package/lib/jsdoc/template/publish.js +21 -2
- package/lib/postcss-combine-duplicated-selectors/index.js +185 -0
- package/lib/scoping/get-all-tags.js +2 -9
- package/lib/scoping/missing-dependencies.js +65 -0
- package/lib/scoping/report-tags-usage.js +28 -0
- package/lib/scoping/scope-test-pages.js +2 -1
- package/lib/test-runner/test-runner.js +71 -0
- package/package.json +32 -29
- package/components-package/rollup-plugins/empty-module.js +0 -15
- package/components-package/rollup.js +0 -237
- package/lib/documentation/index.js +0 -165
- package/lib/documentation/templates/api-component-since.js +0 -3
- package/lib/documentation/templates/api-css-variables-section.js +0 -24
- package/lib/documentation/templates/api-events-section.js +0 -35
- package/lib/documentation/templates/api-methods-section.js +0 -26
- package/lib/documentation/templates/api-properties-section.js +0 -40
- package/lib/documentation/templates/api-slots-section.js +0 -28
- package/lib/documentation/templates/template.js +0 -38
- package/lib/esm-abs-to-rel/index.js +0 -54
- package/lib/hash/config.js +0 -10
- package/lib/hash/generate.js +0 -19
- package/lib/hash/upToDate.js +0 -31
- package/lib/polyfill-placeholder/index.js +0 -5
- package/lib/postcss-css-to-esm/index.js +0 -45
- package/lib/postcss-css-to-json/index.js +0 -31
- package/lib/postcss-new-files/index.js +0 -36
- package/lib/replace-global-core/index.js +0 -20
- package/lib/serve/index.js +0 -46
- package/lib/serve/serve.json +0 -3
- package/package-lock.json +0 -48
@@ -0,0 +1,271 @@
|
|
1
|
+
const fs = require("fs").promises;
|
2
|
+
const path = require("path");
|
3
|
+
// https://github.com/webcomponents/custom-elements-manifest/blob/main/schema.json
|
4
|
+
|
5
|
+
const inputDir = process.argv[2];
|
6
|
+
const outputDir = process.argv[3];
|
7
|
+
|
8
|
+
const moduleDeclarations = new Map();
|
9
|
+
|
10
|
+
const generateJavaScriptExport = entity => {
|
11
|
+
return {
|
12
|
+
declaration: {
|
13
|
+
name: entity.basename,
|
14
|
+
module: `dist/${entity.resource}`,
|
15
|
+
},
|
16
|
+
kind: "js",
|
17
|
+
name: "default",
|
18
|
+
};
|
19
|
+
};
|
20
|
+
|
21
|
+
const generateCustomElementExport = entity => {
|
22
|
+
if (!entity.tagname) return;
|
23
|
+
|
24
|
+
return {
|
25
|
+
declaration: {
|
26
|
+
name: entity.basename,
|
27
|
+
module: `dist/${entity.resource}`,
|
28
|
+
},
|
29
|
+
kind: "custom-element-definition",
|
30
|
+
name: entity.basename,
|
31
|
+
};
|
32
|
+
};
|
33
|
+
|
34
|
+
const generateSingleClassField = classField => {
|
35
|
+
let generatedClassField = {
|
36
|
+
kind: "field",
|
37
|
+
name: classField.name,
|
38
|
+
type: generateType(classField.type),
|
39
|
+
privacy: classField.visibility,
|
40
|
+
deprecated: !!classField.deprecated || undefined,
|
41
|
+
static: !!classField.static || undefined,
|
42
|
+
};
|
43
|
+
|
44
|
+
if (classField.defaultValue) {
|
45
|
+
generatedClassField.default = classField.defaultValue;
|
46
|
+
}
|
47
|
+
|
48
|
+
if (classField.description) {
|
49
|
+
generatedClassField.description = classField.description;
|
50
|
+
}
|
51
|
+
|
52
|
+
return generatedClassField;
|
53
|
+
};
|
54
|
+
|
55
|
+
const generateSingleParameter = parameter => {
|
56
|
+
let generatedParameter = {
|
57
|
+
deprecated: !!parameter.deprecated || undefined,
|
58
|
+
name: parameter.name,
|
59
|
+
type: generateType(parameter.type),
|
60
|
+
};
|
61
|
+
|
62
|
+
if (parameter.description) {
|
63
|
+
generatedParameter.description = parameter.description;
|
64
|
+
}
|
65
|
+
|
66
|
+
if (parameter.optional) {
|
67
|
+
generatedParameter.optional = parameter.optional;
|
68
|
+
generatedParameter.default = parameter.defaultValue;
|
69
|
+
}
|
70
|
+
|
71
|
+
return generatedParameter;
|
72
|
+
};
|
73
|
+
|
74
|
+
const generateParameters = (parameters) => {
|
75
|
+
return parameters.reduce((newParametersArray, parameter) => {
|
76
|
+
newParametersArray.push(generateSingleParameter(parameter));
|
77
|
+
|
78
|
+
return newParametersArray;
|
79
|
+
}, []);
|
80
|
+
};
|
81
|
+
|
82
|
+
const generateSingleClassMethod = classMethod => {
|
83
|
+
let generatedClassMethod = {
|
84
|
+
deprecated: !!classMethod.deprecated || undefined,
|
85
|
+
kind: "method",
|
86
|
+
name: classMethod.name,
|
87
|
+
privacy: classMethod.visibility,
|
88
|
+
static: classMethod.static,
|
89
|
+
};
|
90
|
+
|
91
|
+
if (classMethod.description) {
|
92
|
+
generatedClassMethod.description = classMethod.description;
|
93
|
+
}
|
94
|
+
|
95
|
+
if (classMethod.parameters && classMethod.parameters.length) {
|
96
|
+
generatedClassMethod.parameters = generateParameters(classMethod.parameters);
|
97
|
+
}
|
98
|
+
|
99
|
+
if (classMethod.returnValue) {
|
100
|
+
generatedClassMethod.return = {
|
101
|
+
type: generateType(classMethod.returnValue.type),
|
102
|
+
};
|
103
|
+
|
104
|
+
if (classMethod.returnValue.description) {
|
105
|
+
generatedClassMethod.return.description = classMethod.returnValue.description;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
return generatedClassMethod;
|
110
|
+
};
|
111
|
+
|
112
|
+
const generateClassFields = classFields => {
|
113
|
+
return classFields.reduce((newClassFieldsArray, classField) => {
|
114
|
+
newClassFieldsArray.push(generateSingleClassField(classField));
|
115
|
+
|
116
|
+
return newClassFieldsArray;
|
117
|
+
}, []);
|
118
|
+
};
|
119
|
+
|
120
|
+
const generateClassMethods = classMethods => {
|
121
|
+
return classMethods.reduce((newClassMethodsArray, classMethod) => {
|
122
|
+
newClassMethodsArray.push(generateSingleClassMethod(classMethod));
|
123
|
+
|
124
|
+
return newClassMethodsArray;
|
125
|
+
}, []);
|
126
|
+
};
|
127
|
+
|
128
|
+
const generateMembers = (classFields, classMethods) => {
|
129
|
+
return [...generateClassFields(classFields), ...generateClassMethods(classMethods)];
|
130
|
+
};
|
131
|
+
|
132
|
+
const generateType = type => {
|
133
|
+
return {
|
134
|
+
text: type,
|
135
|
+
};
|
136
|
+
};
|
137
|
+
|
138
|
+
const generateSingleEvent = event => {
|
139
|
+
let generatedEvent = {
|
140
|
+
deprecated: !!event.deprecated || undefined,
|
141
|
+
name: event.name,
|
142
|
+
type: generateType(event.native === "true" ? "NativeEvent" : "CustomEvent")
|
143
|
+
};
|
144
|
+
|
145
|
+
if (event.description) {
|
146
|
+
generatedEvent.description = event.description;
|
147
|
+
}
|
148
|
+
|
149
|
+
return generatedEvent;
|
150
|
+
};
|
151
|
+
|
152
|
+
const generateEvents = events => {
|
153
|
+
events = events.reduce((newEventsArray, event) => {
|
154
|
+
newEventsArray.push(generateSingleEvent(event));
|
155
|
+
|
156
|
+
return newEventsArray;
|
157
|
+
}, []);
|
158
|
+
|
159
|
+
return events;
|
160
|
+
};
|
161
|
+
|
162
|
+
const generateSingleSlot = slot => {
|
163
|
+
return {
|
164
|
+
deprecated: !!slot.deprecated || undefined,
|
165
|
+
description: slot.description,
|
166
|
+
name: slot.name,
|
167
|
+
};
|
168
|
+
};
|
169
|
+
|
170
|
+
const generateSlots = slots => {
|
171
|
+
slots = slots.reduce((newSlotsArray, event) => {
|
172
|
+
newSlotsArray.push(generateSingleSlot(event));
|
173
|
+
|
174
|
+
return newSlotsArray;
|
175
|
+
}, []);
|
176
|
+
|
177
|
+
return slots;
|
178
|
+
};
|
179
|
+
|
180
|
+
const generateCustomElementDeclaration = entity => {
|
181
|
+
let generatedCustomElementDeclaration = {
|
182
|
+
deprecated: !!entity.deprecated || undefined,
|
183
|
+
customElement: true,
|
184
|
+
kind: entity.kind,
|
185
|
+
name: entity.basename,
|
186
|
+
tagName: entity.tagname,
|
187
|
+
};
|
188
|
+
|
189
|
+
const slots = filterPublicApi(entity.slots);
|
190
|
+
const events = filterPublicApi(entity.events);
|
191
|
+
const classFields = filterPublicApi(entity.properties);
|
192
|
+
const classMethods = filterPublicApi(entity.methods);
|
193
|
+
|
194
|
+
if (slots.length) {
|
195
|
+
generatedCustomElementDeclaration.slots = generateSlots(slots);
|
196
|
+
}
|
197
|
+
|
198
|
+
if (events.length) {
|
199
|
+
generatedCustomElementDeclaration.events = generateEvents(events);
|
200
|
+
}
|
201
|
+
|
202
|
+
if (entity.description) {
|
203
|
+
generatedCustomElementDeclaration.description = entity.description;
|
204
|
+
}
|
205
|
+
|
206
|
+
if (classFields.length || classMethods.length) {
|
207
|
+
generatedCustomElementDeclaration.members = generateMembers(classFields, classMethods);
|
208
|
+
}
|
209
|
+
|
210
|
+
if (entity.extends && entity.extends !== "HTMLElement") {
|
211
|
+
generatedCustomElementDeclaration.superclass = generateRefenrece(entity.extends);
|
212
|
+
}
|
213
|
+
|
214
|
+
return generatedCustomElementDeclaration;
|
215
|
+
};
|
216
|
+
|
217
|
+
const generateRefenrece = (entityName) => {
|
218
|
+
return {
|
219
|
+
name: entityName,
|
220
|
+
};
|
221
|
+
};
|
222
|
+
|
223
|
+
const filterPublicApi = array => {
|
224
|
+
return (array || []).filter(el => el.visibility === "public");
|
225
|
+
};
|
226
|
+
|
227
|
+
const generate = async () => {
|
228
|
+
const file = JSON.parse(await fs.readFile(path.join(inputDir, "api.json")));
|
229
|
+
let customElementsManifest = {
|
230
|
+
schemaVersion: "1.0.0",
|
231
|
+
readme: "",
|
232
|
+
modules: [],
|
233
|
+
};
|
234
|
+
|
235
|
+
filterPublicApi(file.symbols).forEach(entity => {
|
236
|
+
let declaration = moduleDeclarations.get(entity.resource);
|
237
|
+
|
238
|
+
if (!declaration) {
|
239
|
+
moduleDeclarations.set(entity.resource, {
|
240
|
+
declarations: [],
|
241
|
+
exports: [],
|
242
|
+
});
|
243
|
+
declaration = moduleDeclarations.get(entity.resource);
|
244
|
+
}
|
245
|
+
|
246
|
+
if (entity.kind === "class" && entity.tagname) {
|
247
|
+
declaration.declarations.push(generateCustomElementDeclaration(entity));
|
248
|
+
declaration.exports.push(generateJavaScriptExport(entity));
|
249
|
+
declaration.exports.push(generateCustomElementExport(entity));
|
250
|
+
} else if (entity.kind === "class" && entity.static) {
|
251
|
+
declaration.exports.push(generateJavaScriptExport(entity));
|
252
|
+
}
|
253
|
+
});
|
254
|
+
|
255
|
+
[...moduleDeclarations.keys()].forEach(key => {
|
256
|
+
let declaration = moduleDeclarations.get(key);
|
257
|
+
|
258
|
+
customElementsManifest.modules.push({
|
259
|
+
kind: "javascript-module",
|
260
|
+
path: `dist/${key}`,
|
261
|
+
declarations: declaration.declarations,
|
262
|
+
exports: declaration.exports
|
263
|
+
})
|
264
|
+
})
|
265
|
+
|
266
|
+
await fs.writeFile(path.join(outputDir, "custom-elements.json"), JSON.stringify(customElementsManifest));
|
267
|
+
};
|
268
|
+
|
269
|
+
generate().then(() => {
|
270
|
+
console.log("Custom elements manifest generated.");
|
271
|
+
});
|
@@ -0,0 +1,86 @@
|
|
1
|
+
const fs = require("fs").promises;
|
2
|
+
const path = require("path");
|
3
|
+
|
4
|
+
const generateDynamicImportLines = async (fileNames, location, exclusionPatterns = []) => {
|
5
|
+
const packageName = JSON.parse(await fs.readFile("package.json")).name;
|
6
|
+
return fileNames
|
7
|
+
.filter((fileName) => !exclusionPatterns.some((pattern) => fileName.startsWith(pattern)))
|
8
|
+
.map((fileName) => {
|
9
|
+
const illustrationName = fileName.replace(".js", "");
|
10
|
+
const illustrationPath = `${location}/${illustrationName}`;
|
11
|
+
return `\t\tcase "${fileName.replace('.js', '')}": return (await import(/* webpackChunkName: "${packageName.replace("@", "").replace("/", "-")}-${illustrationName.toLowerCase()}" */ "${illustrationPath}.js")).default;`;
|
12
|
+
})
|
13
|
+
.join("\n");
|
14
|
+
};
|
15
|
+
|
16
|
+
const generateAvailableIllustrationsArray = (fileNames, exclusionPatterns = []) => {
|
17
|
+
return JSON.stringify(
|
18
|
+
fileNames
|
19
|
+
.filter((fileName) => !exclusionPatterns.some((pattern) => fileName.startsWith(pattern)))
|
20
|
+
.map((fileName) => fileName.replace(".js", ""))
|
21
|
+
);
|
22
|
+
};
|
23
|
+
|
24
|
+
const generateDynamicImportsFileContent = (dynamicImports, availableIllustrations, collection, set, prefix = "") => {
|
25
|
+
return `// @ts-nocheck
|
26
|
+
import { registerIllustrationLoader } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
|
27
|
+
|
28
|
+
export const loadIllustration = async (illustrationName) => {
|
29
|
+
const collectionAndPrefix = "${set}/${collection}/${prefix}";
|
30
|
+
const cleanIllustrationName = illustrationName.startsWith(collectionAndPrefix) ? illustrationName.replace(collectionAndPrefix, "") : illustrationName;
|
31
|
+
switch (cleanIllustrationName) {
|
32
|
+
${dynamicImports}
|
33
|
+
default:
|
34
|
+
throw new Error("[Illustrations] Illustration not found: " + illustrationName);
|
35
|
+
}
|
36
|
+
};
|
37
|
+
|
38
|
+
const loadAndCheck = async (illustrationName) => {
|
39
|
+
const data = await loadIllustration(illustrationName);
|
40
|
+
return data;
|
41
|
+
};
|
42
|
+
|
43
|
+
${availableIllustrations}.forEach((illustrationName) =>
|
44
|
+
registerIllustrationLoader(\`${set}/${collection}/${prefix}\${illustrationName}\`, loadAndCheck)
|
45
|
+
);
|
46
|
+
`;
|
47
|
+
};
|
48
|
+
|
49
|
+
const getMatchingFiles = async (folder, pattern) => {
|
50
|
+
const dir = await fs.readdir(folder);
|
51
|
+
return dir.filter((fileName) => fileName.match(pattern));
|
52
|
+
};
|
53
|
+
|
54
|
+
const generateIllustrations = async (config) => {
|
55
|
+
const { inputFolder, outputFile, collection, location, prefix, filterOut, set } = config;
|
56
|
+
|
57
|
+
const normalizedInputFolder = path.normalize(inputFolder);
|
58
|
+
const normalizedOutputFile = path.normalize(outputFile);
|
59
|
+
|
60
|
+
const illustrations = await getMatchingFiles(normalizedInputFolder, /^.*\.js$/);
|
61
|
+
|
62
|
+
const dynamicImports = await generateDynamicImportLines(illustrations, location, filterOut);
|
63
|
+
const availableIllustrations = generateAvailableIllustrationsArray(illustrations, filterOut);
|
64
|
+
|
65
|
+
const contentDynamic = generateDynamicImportsFileContent(dynamicImports, availableIllustrations, collection, set, prefix);
|
66
|
+
|
67
|
+
await fs.mkdir(path.dirname(normalizedOutputFile), { recursive: true });
|
68
|
+
await fs.writeFile(normalizedOutputFile, contentDynamic);
|
69
|
+
|
70
|
+
console.log(`Generated ${normalizedOutputFile}`);
|
71
|
+
};
|
72
|
+
|
73
|
+
// Parse configuration from command-line arguments
|
74
|
+
const config = {
|
75
|
+
inputFolder: process.argv[2],
|
76
|
+
outputFile: process.argv[3],
|
77
|
+
set: process.argv[4],
|
78
|
+
collection: process.argv[5],
|
79
|
+
location: process.argv[6],
|
80
|
+
filterOut: process.argv.slice[7],
|
81
|
+
};
|
82
|
+
|
83
|
+
// Run the generation process
|
84
|
+
generateIllustrations(config).catch((error) => {
|
85
|
+
console.error("Error generating illustrations:", error);
|
86
|
+
});
|
@@ -1,37 +1,42 @@
|
|
1
|
-
const fs = require("fs");
|
1
|
+
const fs = require("fs").promises;
|
2
2
|
const path = require('path');
|
3
|
-
const mkdirp = require("mkdirp");
|
4
3
|
|
5
|
-
const
|
4
|
+
const isTypeScript = process.env.UI5_TS;
|
5
|
+
const ext = isTypeScript ? 'ts' : 'js';
|
6
6
|
|
7
|
-
const
|
8
|
-
|
9
|
-
const
|
7
|
+
const generate = async () => {
|
8
|
+
|
9
|
+
const packageName = JSON.parse(await fs.readFile("package.json")).name;
|
10
|
+
|
11
|
+
const inputFolder = path.normalize(process.argv[2]);
|
12
|
+
const outputFile = path.normalize(`${process.argv[3]}/i18n-static.${ext}`);
|
13
|
+
const outputFileDynamic = path.normalize(`${process.argv[3]}/i18n.${ext}`);
|
10
14
|
|
11
15
|
// All languages present in the file system
|
12
|
-
const files = fs.
|
13
|
-
const languages = files.map(file => {
|
14
|
-
|
15
|
-
|
16
|
-
}).filter(key => !!key);
|
16
|
+
const files = await fs.readdir(inputFolder);
|
17
|
+
const languages = files.map(file => {
|
18
|
+
const matches = file.match(/messagebundle_(.+?).json$/);
|
19
|
+
return matches ? matches[1] : undefined;
|
20
|
+
}).filter(key => !!key);
|
17
21
|
|
18
|
-
let contentStatic, contentDynamic;
|
22
|
+
let contentStatic, contentDynamic;
|
19
23
|
|
20
24
|
// No i18n - just import dependencies, if any
|
21
|
-
if (languages.length === 0) {
|
22
|
-
|
23
|
-
|
25
|
+
if (languages.length === 0) {
|
26
|
+
contentStatic = "";
|
27
|
+
contentDynamic = "";
|
24
28
|
// There is i18n - generate the full file
|
25
|
-
} else {
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
+
} else {
|
30
|
+
// Keys for the array
|
31
|
+
const languagesKeysString = languages.map(key => `"${key}": _${key},`).join("\n\t");
|
32
|
+
const languagesKeysStringArray = languages.map(key => `"${key}",`).join("\n\t");
|
29
33
|
|
30
|
-
|
31
|
-
|
34
|
+
// Actual imports for json assets
|
35
|
+
const assetsImportsString = languages.map(key => `import _${key} from "../assets/i18n/messagebundle_${key}.json";`).join("\n");
|
32
36
|
|
33
|
-
|
34
|
-
|
37
|
+
// static imports
|
38
|
+
contentStatic = `// @ts-nocheck
|
39
|
+
import { registerI18nLoader } from "@ui5/webcomponents-base/dist/asset-registries/i18n.js";
|
35
40
|
|
36
41
|
${assetsImportsString}
|
37
42
|
|
@@ -54,11 +59,12 @@ localeIds.forEach(localeId => {
|
|
54
59
|
});
|
55
60
|
`;
|
56
61
|
|
57
|
-
|
58
|
-
|
62
|
+
// Actual imports for json assets
|
63
|
+
const dynamicImportsString = languages.map(key => ` case "${key}": return (await import(/* webpackChunkName: "${packageName.replace("@", "").replace("/", "-")}-messagebundle-${key}" */ "../assets/i18n/messagebundle_${key}.json")).default;`).join("\n");
|
59
64
|
|
60
|
-
|
61
|
-
|
65
|
+
// Resulting file content
|
66
|
+
contentDynamic = `// @ts-nocheck
|
67
|
+
import { registerI18nLoader } from "@ui5/webcomponents-base/dist/asset-registries/i18n.js";
|
62
68
|
|
63
69
|
const importMessageBundle = async (localeId) => {
|
64
70
|
switch (localeId) {
|
@@ -83,9 +89,15 @@ localeIds.forEach(localeId => {
|
|
83
89
|
`;
|
84
90
|
|
85
91
|
|
86
|
-
}
|
92
|
+
}
|
87
93
|
|
94
|
+
await fs.mkdir(path.dirname(outputFile), { recursive: true });
|
95
|
+
return Promise.all([
|
96
|
+
fs.writeFile(outputFile, contentStatic),
|
97
|
+
fs.writeFile(outputFileDynamic, contentDynamic),
|
98
|
+
]);
|
99
|
+
}
|
88
100
|
|
89
|
-
|
90
|
-
|
91
|
-
|
101
|
+
generate().then(() => {
|
102
|
+
console.log("Generated i18n JSON imports.");
|
103
|
+
});
|
@@ -1,32 +1,36 @@
|
|
1
|
-
const fs = require("fs");
|
1
|
+
const fs = require("fs").promises;
|
2
2
|
const path = require('path');
|
3
|
-
const mkdirp = require("mkdirp");
|
4
3
|
const assets = require("../../assets-meta.js");
|
5
4
|
|
6
|
-
const
|
7
|
-
const
|
8
|
-
|
5
|
+
const isTypeScript = process.env.UI5_TS;
|
6
|
+
const ext = isTypeScript ? 'ts' : 'js';
|
7
|
+
|
8
|
+
const generate = async () => {
|
9
|
+
const inputFolder = path.normalize(process.argv[2]);
|
10
|
+
const outputFile = path.normalize(`${process.argv[3]}/Themes-static.${ext}`);
|
11
|
+
const outputFileDynamic = path.normalize(`${process.argv[3]}/Themes.${ext}`);
|
9
12
|
|
10
13
|
// All supported optional themes
|
11
|
-
const allThemes = assets.themes.all;
|
14
|
+
const allThemes = assets.themes.all;
|
12
15
|
|
13
16
|
// All themes present in the file system
|
14
|
-
const dirs = fs.
|
15
|
-
const themesOnFileSystem = dirs.map(dir => {
|
16
|
-
|
17
|
-
|
18
|
-
}).filter(key => !!key && allThemes.includes(key));
|
17
|
+
const dirs = await fs.readdir(inputFolder);
|
18
|
+
const themesOnFileSystem = dirs.map(dir => {
|
19
|
+
const matches = dir.match(/sap_.*$/);
|
20
|
+
return matches ? dir : undefined;
|
21
|
+
}).filter(key => !!key && allThemes.includes(key));
|
19
22
|
|
20
|
-
const packageName = JSON.parse(fs.
|
23
|
+
const packageName = JSON.parse(await fs.readFile("package.json")).name;
|
21
24
|
|
22
|
-
const importLines = themesOnFileSystem.map(theme => `import ${theme} from "../assets/themes/${theme}/parameters-bundle.css.json";`).join("\n");
|
23
|
-
const themeUrlsByName = "{\n" + themesOnFileSystem.join(",\n") + "\n}";
|
24
|
-
const availableThemesArray = `[${themesOnFileSystem.map(theme => `"${theme}"`).join(", ")}]`;
|
25
|
-
const dynamicImportLines = themesOnFileSystem.map(theme => `\t\tcase "${theme}": return (await import("../assets/themes/${theme}/parameters-bundle.css.json")).default;`).join("\n");
|
25
|
+
const importLines = themesOnFileSystem.map(theme => `import ${theme} from "../assets/themes/${theme}/parameters-bundle.css.json";`).join("\n");
|
26
|
+
const themeUrlsByName = "{\n" + themesOnFileSystem.join(",\n") + "\n}";
|
27
|
+
const availableThemesArray = `[${themesOnFileSystem.map(theme => `"${theme}"`).join(", ")}]`;
|
28
|
+
const dynamicImportLines = themesOnFileSystem.map(theme => `\t\tcase "${theme}": return (await import(/* webpackChunkName: "${packageName.replace("@", "").replace("/", "-")}-${theme.replace("_", "-")}-parameters-bundle" */"../assets/themes/${theme}/parameters-bundle.css.json")).default;`).join("\n");
|
26
29
|
|
27
30
|
|
28
31
|
// static imports file content
|
29
|
-
const contentStatic =
|
32
|
+
const contentStatic = `// @ts-nocheck
|
33
|
+
import { registerThemePropertiesLoader } from "@ui5/webcomponents-base/dist/asset-registries/Themes.js";
|
30
34
|
|
31
35
|
${importLines}
|
32
36
|
|
@@ -39,7 +43,7 @@ const loadThemeProperties = async (themeName) => {
|
|
39
43
|
throw new Error("[themes] Inlined JSON not supported with static imports of assets. Use dynamic imports of assets or configure JSON imports as URLs");
|
40
44
|
}
|
41
45
|
return (await fetch(themeUrlsByName[themeName])).json();
|
42
|
-
}
|
46
|
+
};
|
43
47
|
|
44
48
|
${availableThemesArray}
|
45
49
|
.forEach(themeName => registerThemePropertiesLoader("${packageName}", themeName, loadThemeProperties));
|
@@ -47,14 +51,15 @@ ${availableThemesArray}
|
|
47
51
|
|
48
52
|
|
49
53
|
// dynamic imports file content
|
50
|
-
const contentDynamic =
|
54
|
+
const contentDynamic = `// @ts-nocheck
|
55
|
+
import { registerThemePropertiesLoader } from "@ui5/webcomponents-base/dist/asset-registries/Themes.js";
|
51
56
|
|
52
57
|
const loadThemeProperties = async (themeName) => {
|
53
58
|
switch (themeName) {
|
54
59
|
${dynamicImportLines}
|
55
60
|
default: throw "unknown theme"
|
56
61
|
}
|
57
|
-
}
|
62
|
+
};
|
58
63
|
|
59
64
|
const loadAndCheck = async (themeName) => {
|
60
65
|
const data = await loadThemeProperties(themeName);
|
@@ -62,12 +67,19 @@ const loadAndCheck = async (themeName) => {
|
|
62
67
|
throw new Error(\`[themes] Invalid bundling detected - dynamic JSON imports bundled as URLs. Switch to inlining JSON files from the build or use 'import ".../Assets-static.js"'. Check the \"Assets\" documentation for more information.\`);
|
63
68
|
}
|
64
69
|
return data;
|
65
|
-
}
|
70
|
+
};
|
66
71
|
|
67
72
|
${availableThemesArray}
|
68
73
|
.forEach(themeName => registerThemePropertiesLoader("${packageName}", themeName, loadAndCheck));
|
69
74
|
`;
|
70
75
|
|
71
|
-
|
72
|
-
|
73
|
-
fs.
|
76
|
+
await fs.mkdir(path.dirname(outputFile), { recursive: true });
|
77
|
+
return Promise.all([
|
78
|
+
fs.writeFile(outputFile, contentStatic),
|
79
|
+
fs.writeFile(outputFileDynamic, contentDynamic)
|
80
|
+
]);
|
81
|
+
};
|
82
|
+
|
83
|
+
generate().then(() => {
|
84
|
+
console.log("Generated themes JSON imports.");
|
85
|
+
});
|
@@ -12,15 +12,25 @@ const removeWhiteSpaces = (source) => {
|
|
12
12
|
.replace(/}}\s+{{/g, "}}{{"); // Remove whitespace between }} and {{
|
13
13
|
};
|
14
14
|
|
15
|
-
const hbs2lit = (file) => {
|
16
|
-
let sPreprocessed = includesReplacer.replace(file);
|
15
|
+
const hbs2lit = async (file, componentName) => {
|
16
|
+
let sPreprocessed = await includesReplacer.replace(file);
|
17
17
|
|
18
18
|
sPreprocessed = removeWhiteSpaces(sPreprocessed);
|
19
19
|
|
20
|
+
const blockSignature = process.env.UI5_TS ? `this: ${componentName}` : ""
|
21
|
+
|
22
|
+
// icons hack
|
23
|
+
if (sPreprocessed.startsWith("<g ") || sPreprocessed.startsWith("<g>")) {
|
24
|
+
return `
|
25
|
+
function block0 (${blockSignature}) {
|
26
|
+
return svg\`${sPreprocessed}\`
|
27
|
+
}`;
|
28
|
+
}
|
29
|
+
|
20
30
|
const ast = Handlebars.parse(sPreprocessed);
|
21
31
|
|
22
32
|
const pv = new PartialsVisitor();
|
23
|
-
const lv = new HTMLLitVisitor();
|
33
|
+
const lv = new HTMLLitVisitor(componentName);
|
24
34
|
|
25
35
|
let result = "";
|
26
36
|
|
@@ -30,7 +40,17 @@ const hbs2lit = (file) => {
|
|
30
40
|
lv.accept(ast);
|
31
41
|
|
32
42
|
for (let key in lv.blocks) {
|
33
|
-
|
43
|
+
let block = lv.blocks[key];
|
44
|
+
|
45
|
+
if (block.match(/scopeTag/)) {
|
46
|
+
// const matches = block.match(/^(.*?)( => )(.*?);$/);
|
47
|
+
const matches = block.match(/^(function .*? \{ return )(.*?);\}$/);
|
48
|
+
const scopedCode = matches[2];
|
49
|
+
const normalCode = scopedCode.replace(/\${scopeTag\("/g, "").replace(/", tags, suffix\)}/g, "");
|
50
|
+
block = `${matches[1]}suffix ? ${scopedCode} : ${normalCode};}`;
|
51
|
+
}
|
52
|
+
|
53
|
+
result += block + "\n";
|
34
54
|
}
|
35
55
|
|
36
56
|
result = svgProcessor.process(result);
|
@@ -1,9 +1,9 @@
|
|
1
1
|
const path = require("path");
|
2
|
-
const fs = require("fs");
|
2
|
+
const fs = require("fs").promises;
|
3
3
|
|
4
|
-
|
4
|
+
const replaceIncludes = async (file) => {
|
5
5
|
const filePath = path.dirname(file);
|
6
|
-
let fileContent = fs.
|
6
|
+
let fileContent = await fs.readFile(file, "utf-8");
|
7
7
|
|
8
8
|
const inclRegex = /{{>\s*include\s*["'](.+?)["']}}/g;
|
9
9
|
let match;
|
@@ -20,11 +20,11 @@ function replaceIncludes(file) {
|
|
20
20
|
targetFile = require.resolve(targetFile);
|
21
21
|
}
|
22
22
|
|
23
|
-
fileContent = fileContent.replace(match[0], replaceIncludes(targetFile));
|
23
|
+
fileContent = fileContent.replace(match[0], await replaceIncludes(targetFile));
|
24
24
|
}
|
25
25
|
|
26
26
|
return fileContent;
|
27
|
-
}
|
27
|
+
};
|
28
28
|
|
29
29
|
module.exports = {
|
30
30
|
replace: replaceIncludes
|