@ui5/webcomponents-tools 0.0.0-d0bcf47c7 → 0.0.0-d160e83dd
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 +1915 -1
- package/README.md +6 -9
- package/assets-meta.js +154 -0
- package/bin/dev.js +12 -1
- package/components-package/eslint.js +66 -2
- package/components-package/nps.js +142 -45
- package/components-package/postcss.components.js +1 -21
- package/components-package/postcss.themes.js +1 -23
- package/components-package/vite.config.js +9 -0
- package/components-package/wdio.js +153 -65
- package/icons-collection/nps.js +71 -28
- 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 +547 -0
- package/lib/cem/event.mjs +168 -0
- package/lib/cem/schema-internal.json +1422 -0
- package/lib/cem/schema.json +1098 -0
- package/lib/cem/types-internal.d.ts +808 -0
- package/lib/cem/types.d.ts +736 -0
- package/lib/cem/utils.mjs +423 -0
- package/lib/cem/validate.js +67 -0
- package/lib/copy-and-watch/index.js +145 -0
- package/lib/copy-list/index.js +28 -0
- package/lib/create-icons/index.js +127 -0
- package/lib/create-illustrations/index.js +182 -0
- package/lib/create-new-component/Component.js +74 -0
- package/lib/create-new-component/ComponentTemplate.js +12 -0
- package/lib/create-new-component/index.js +113 -0
- package/lib/css-processors/css-processor-components.mjs +77 -0
- package/lib/css-processors/css-processor-themes.mjs +74 -0
- package/lib/css-processors/scope-variables.mjs +49 -0
- package/lib/css-processors/shared.mjs +56 -0
- package/lib/dev-server/custom-hot-update-plugin.js +39 -0
- package/lib/dev-server/dev-server.mjs +66 -0
- package/lib/dev-server/virtual-index-html-plugin.js +56 -0
- package/lib/generate-js-imports/illustrations.js +86 -0
- package/lib/generate-json-imports/i18n.js +82 -0
- package/lib/generate-json-imports/themes.js +63 -0
- package/lib/hbs2lit/index.js +3 -0
- package/lib/hbs2lit/src/compiler.js +60 -0
- package/lib/hbs2lit/src/extendedAttributeMapping.js +12 -0
- package/lib/hbs2lit/src/includesReplacer.js +31 -0
- package/lib/hbs2lit/src/litVisitor2.js +278 -0
- package/lib/hbs2lit/src/partials2.js +51 -0
- package/lib/hbs2lit/src/partialsVisitor.js +187 -0
- package/lib/hbs2lit/src/svgProcessor.js +76 -0
- package/lib/hbs2ui5/RenderTemplates/LitRenderer.js +45 -0
- package/lib/hbs2ui5/index.js +119 -0
- package/lib/i18n/defaults.js +83 -0
- package/lib/i18n/toJSON.js +43 -0
- package/lib/postcss-combine-duplicated-selectors/index.js +185 -0
- package/lib/remove-dev-mode/remove-dev-mode.mjs +37 -0
- package/lib/scoping/get-all-tags.js +44 -0
- package/lib/scoping/lint-src.js +32 -0
- package/lib/scoping/missing-dependencies.js +65 -0
- package/lib/scoping/report-tags-usage.js +28 -0
- package/lib/scoping/scope-test-pages.js +41 -0
- package/lib/test-runner/test-runner.js +71 -0
- package/package.json +58 -55
- package/tsconfig.json +18 -0
- package/bin/init-ui5-package.js +0 -3
- package/package-lock.json +0 -9994
@@ -1,3 +1,6 @@
|
|
1
|
+
const dns = require("node:dns");
|
2
|
+
const assert = require("chai").assert;
|
3
|
+
|
1
4
|
exports.config = {
|
2
5
|
//
|
3
6
|
// ====================
|
@@ -50,13 +53,22 @@ exports.config = {
|
|
50
53
|
// maxInstances can get overwritten per capability. So if you have an in-house Selenium
|
51
54
|
// grid with only 5 firefox instances available you can make sure that not more than
|
52
55
|
// 5 instances get started at a time.
|
53
|
-
maxInstances:
|
56
|
+
maxInstances: 5,
|
54
57
|
//
|
55
58
|
browserName: 'chrome',
|
56
59
|
'goog:chromeOptions': {
|
57
60
|
// to run chrome headless the following flags are required
|
58
61
|
// (see https://developers.google.com/web/updates/2017/04/headless-chrome)
|
59
|
-
args: [
|
62
|
+
args: [
|
63
|
+
'--headless',
|
64
|
+
'--disable-search-engine-choice-screen',
|
65
|
+
'--start-maximized',
|
66
|
+
'--no-sandbox',
|
67
|
+
'--disable-gpu',
|
68
|
+
'--disable-infobars',
|
69
|
+
'--disable-extensions',
|
70
|
+
'--disable-dev-shm-usage',
|
71
|
+
],
|
60
72
|
// args: ['--disable-gpu'],
|
61
73
|
}
|
62
74
|
}],
|
@@ -82,7 +94,7 @@ exports.config = {
|
|
82
94
|
// with `/`, the base url gets prepended, not including the path portion of your baseUrl.
|
83
95
|
// If your `url` parameter starts without a scheme or `/` (like `some/path`), the base url
|
84
96
|
// gets prepended directly.
|
85
|
-
baseUrl: '',
|
97
|
+
baseUrl: 'http://localhost:4567', // This is important since WDIO 7+ does not accept an empty string for baseUrl
|
86
98
|
path: '',
|
87
99
|
//
|
88
100
|
// Default timeout for all waitFor* commands.
|
@@ -99,7 +111,13 @@ exports.config = {
|
|
99
111
|
// Services take over a specific job you don't want to take care of. They enhance
|
100
112
|
// your test setup with almost no effort. Unlike plugins, they don't add new
|
101
113
|
// commands. Instead, they hook themselves up into the test process.
|
102
|
-
services: ['chromedriver'
|
114
|
+
services: ['chromedriver', ['static-server', {
|
115
|
+
folders: [
|
116
|
+
{ mount: '/', path: './dist' },
|
117
|
+
],
|
118
|
+
port: '4567',
|
119
|
+
}],
|
120
|
+
],
|
103
121
|
// options
|
104
122
|
chromeDriverArgs: ['--port=9515'], // default
|
105
123
|
// Framework you want to run your specs with.
|
@@ -146,52 +164,33 @@ exports.config = {
|
|
146
164
|
*/
|
147
165
|
// beforeSession: function (config, capabilities, specs) {
|
148
166
|
// },
|
167
|
+
beforeSession: () => {
|
168
|
+
dns.setDefaultResultOrder('ipv4first');
|
169
|
+
},
|
149
170
|
/**
|
150
171
|
* Gets executed before test execution begins. At this point you can access to all global
|
151
172
|
* variables like `browser`. It is the perfect place to define custom commands.
|
152
173
|
* @param {Array.<Object>} capabilities list of capabilities details
|
153
174
|
* @param {Array.<String>} specs List of spec file paths that are to be run
|
154
175
|
*/
|
155
|
-
before: function (capabilities, specs) {
|
156
|
-
browser.addCommand("
|
157
|
-
|
176
|
+
before: async function (capabilities, specs) {
|
177
|
+
await browser.addCommand("isFocusedDeep", async function () {
|
178
|
+
return browser.executeAsync(function (elem, done) {
|
179
|
+
let activeElement = document.activeElement;
|
158
180
|
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
181
|
+
while (activeElement.shadowRoot) {
|
182
|
+
if (activeElement.shadowRoot.activeElement) {
|
183
|
+
activeElement = activeElement.shadowRoot.activeElement;
|
184
|
+
} else {
|
185
|
+
break;
|
186
|
+
}
|
163
187
|
}
|
188
|
+
done(elem === activeElement);
|
189
|
+
}, this);
|
190
|
+
}, true);
|
164
191
|
|
165
|
-
|
166
|
-
|
167
|
-
elem._waitForDomRef().then(done);
|
168
|
-
}, curElement);
|
169
|
-
|
170
|
-
// find the next element from the selector
|
171
|
-
curElement = curElement.$(new Function (`
|
172
|
-
return this.shadowRoot.querySelector("${selectors[i]}");
|
173
|
-
`));
|
174
|
-
}
|
175
|
-
|
176
|
-
return curElement;
|
177
|
-
|
178
|
-
});
|
179
|
-
|
180
|
-
browser.addCommand("findElementDeep", function (selector) {
|
181
|
-
const selectors = selector.split(">>>");
|
182
|
-
let curElement = this;
|
183
|
-
|
184
|
-
for (var i = 0; i < selectors.length; i++) {
|
185
|
-
curElement = curElement.$(new Function (`
|
186
|
-
return this.shadowRoot.querySelector("${selectors[i]}");
|
187
|
-
`));
|
188
|
-
}
|
189
|
-
|
190
|
-
return curElement;
|
191
|
-
}, this);
|
192
|
-
|
193
|
-
browser.addCommand("isFocusedDeep", function () {
|
194
|
-
return browser.execute(function (elem) {
|
192
|
+
await browser.addCommand("isFocusedDeepElement", async function (element) {
|
193
|
+
return browser.executeAsync(function (elem, element, done) {
|
195
194
|
let activeElement = document.activeElement;
|
196
195
|
|
197
196
|
while (activeElement.shadowRoot) {
|
@@ -201,41 +200,88 @@ exports.config = {
|
|
201
200
|
break;
|
202
201
|
}
|
203
202
|
}
|
204
|
-
|
205
|
-
}, this);
|
203
|
+
done(element === activeElement);
|
204
|
+
}, this, element);
|
206
205
|
}, true);
|
207
206
|
|
208
|
-
browser.addCommand("setProperty", function(property, value) {
|
209
|
-
return browser.
|
210
|
-
|
207
|
+
await browser.addCommand("setProperty", async function(property, value) {
|
208
|
+
return browser.executeAsync((elem, property, value, done) => {
|
209
|
+
elem[property] = value;
|
210
|
+
done();
|
211
211
|
}, this, property, value);
|
212
212
|
}, true);
|
213
213
|
|
214
|
-
browser.addCommand("setAttribute", function(attribute, value) {
|
215
|
-
return browser.
|
216
|
-
|
214
|
+
await browser.addCommand("setAttribute", async function(attribute, value) {
|
215
|
+
return browser.executeAsync((elem, attribute, value, done) => {
|
216
|
+
elem.setAttribute(attribute, value);
|
217
|
+
done();
|
217
218
|
}, this, attribute, value);
|
218
219
|
}, true);
|
219
220
|
|
220
|
-
browser.addCommand("removeAttribute", function(attribute) {
|
221
|
-
return browser.
|
222
|
-
|
221
|
+
await browser.addCommand("removeAttribute", async function(attribute) {
|
222
|
+
return browser.executeAsync((elem, attribute, done) => {
|
223
|
+
elem.removeAttribute(attribute);
|
224
|
+
done();
|
223
225
|
}, this, attribute);
|
224
226
|
}, true);
|
225
227
|
|
226
|
-
browser.addCommand("hasClass", function(className) {
|
227
|
-
return browser.
|
228
|
-
|
228
|
+
await browser.addCommand("hasClass", async function(className) {
|
229
|
+
return browser.executeAsync((elem, className, done) => {
|
230
|
+
done(elem.classList.contains(className));
|
229
231
|
}, this, className);
|
230
232
|
}, true);
|
233
|
+
|
234
|
+
await browser.addCommand("hasAttribute", async function(attrName) {
|
235
|
+
return browser.executeAsync((elem, attrName, done) => {
|
236
|
+
done(elem.hasAttribute(attrName));
|
237
|
+
}, this, attrName);
|
238
|
+
}, true);
|
239
|
+
|
240
|
+
await browser.addCommand("matches", async function(selector) {
|
241
|
+
return browser.executeAsync((elem, selector, done) => {
|
242
|
+
done(elem.matches(selector));
|
243
|
+
}, this, selector);
|
244
|
+
}, true);
|
245
|
+
|
246
|
+
await browser.addLocatorStrategy('activeElement', (selector) => {
|
247
|
+
return document.querySelector(selector).shadowRoot.activeElement;
|
248
|
+
});
|
231
249
|
},
|
232
250
|
/**
|
233
251
|
* Runs before a WebdriverIO command gets executed.
|
234
252
|
* @param {String} commandName hook command name
|
235
253
|
* @param {Array} args arguments that command would receive
|
236
254
|
*/
|
237
|
-
|
238
|
-
|
255
|
+
beforeCommand: async function (commandName, args) {
|
256
|
+
const waitFor = [
|
257
|
+
"$",
|
258
|
+
"$$",
|
259
|
+
"getAttribute",
|
260
|
+
"hasAttribute", // custom
|
261
|
+
"matches", // custom
|
262
|
+
"getCSSProperty",
|
263
|
+
"getHTML",
|
264
|
+
"getProperty",
|
265
|
+
"getSize",
|
266
|
+
"getText",
|
267
|
+
"getValue",
|
268
|
+
"hasClass", // custom
|
269
|
+
"isDisplayed",
|
270
|
+
"isDisplayedInViewport",
|
271
|
+
"isEnabled",
|
272
|
+
"isExisting",
|
273
|
+
"isFocused",
|
274
|
+
"isFocusedDeep", // custom
|
275
|
+
"isFocusedDeepElement", // custom
|
276
|
+
"shadow$",
|
277
|
+
"shadow$$"
|
278
|
+
];
|
279
|
+
if (waitFor.includes(commandName)) {
|
280
|
+
await browser.executeAsync(function (done) {
|
281
|
+
window["sap-ui-webcomponents-bundle"].renderFinished().then(done);
|
282
|
+
});
|
283
|
+
}
|
284
|
+
},
|
239
285
|
|
240
286
|
/**
|
241
287
|
* Hook that gets executed before the suite starts
|
@@ -265,8 +311,17 @@ exports.config = {
|
|
265
311
|
* Function to be executed after a test (in Mocha/Jasmine) or a step (in Cucumber) starts.
|
266
312
|
* @param {Object} test test details
|
267
313
|
*/
|
268
|
-
|
269
|
-
|
314
|
+
afterTest: async function (test) {
|
315
|
+
// fetch the browser logs and fail the test if there are `console.error` messages with the `[UI5-FWK]` marker
|
316
|
+
const logs = await browser.getLogs('browser');
|
317
|
+
const severeLogs = logs
|
318
|
+
.filter(l => l.level === "SEVERE" && l.message.includes("[UI5-FWK]"))
|
319
|
+
.map(l => l.message);
|
320
|
+
|
321
|
+
if (severeLogs.length) {
|
322
|
+
test.callback(new Error(`[${test.title}]\n\n ${severeLogs.join("\n ")}`));
|
323
|
+
}
|
324
|
+
},
|
270
325
|
/**
|
271
326
|
* Hook that gets executed after the suite has ended
|
272
327
|
* @param {Object} suite suite details
|
@@ -281,13 +336,46 @@ exports.config = {
|
|
281
336
|
* @param {Number} result 0 - command success, 1 - command error
|
282
337
|
* @param {Object} error error object if any
|
283
338
|
*/
|
284
|
-
afterCommand: function (commandName, args, result, error) {
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
339
|
+
afterCommand: async function (commandName, args, result, error) {
|
340
|
+
|
341
|
+
// url -> set configuration first
|
342
|
+
if (commandName === "url" && !args[0].includes("do-not-change-configuration")) {
|
343
|
+
await browser.executeAsync(function(done) {
|
289
344
|
window["sap-ui-webcomponents-bundle"].configuration.setNoConflict(true);
|
290
|
-
|
345
|
+
done();
|
346
|
+
});
|
347
|
+
}
|
348
|
+
|
349
|
+
const waitFor = [
|
350
|
+
"addValue",
|
351
|
+
"clearValue",
|
352
|
+
"click",
|
353
|
+
"doubleClick",
|
354
|
+
"dragAndDrop",
|
355
|
+
"pause",
|
356
|
+
"removeAttribute", // custom
|
357
|
+
"scrollIntoView",
|
358
|
+
"setAttribute", // custom
|
359
|
+
"setProperty", // custom
|
360
|
+
"setValue",
|
361
|
+
"setWindowSize",
|
362
|
+
"touchAction",
|
363
|
+
"url",
|
364
|
+
];
|
365
|
+
|
366
|
+
const waitForWithDelay = [
|
367
|
+
"keys",
|
368
|
+
];
|
369
|
+
|
370
|
+
if (waitFor.includes(commandName)) {
|
371
|
+
await browser.executeAsync(function (done) {
|
372
|
+
window["sap-ui-webcomponents-bundle"].renderFinished().then(done);
|
373
|
+
});
|
374
|
+
} else if (waitForWithDelay.includes(commandName)) {
|
375
|
+
await browser.executeAsync(function (done) {
|
376
|
+
setTimeout(() => {
|
377
|
+
window["sap-ui-webcomponents-bundle"].renderFinished().then(done);
|
378
|
+
}, 10);
|
291
379
|
});
|
292
380
|
}
|
293
381
|
},
|
package/icons-collection/nps.js
CHANGED
@@ -1,28 +1,71 @@
|
|
1
|
-
const path = require("path");
|
2
|
-
|
3
|
-
const LIB = path.join(__dirname, `../lib/`);
|
4
|
-
|
5
|
-
const
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
}
|
27
|
-
|
28
|
-
|
1
|
+
const path = require("path");
|
2
|
+
|
3
|
+
const LIB = path.join(__dirname, `../lib/`);
|
4
|
+
|
5
|
+
const createIconImportsCommand = (options) => {
|
6
|
+
if (!options.versions) {
|
7
|
+
return `node "${LIB}/create-icons/index.js" "${options.collectionName}"`;
|
8
|
+
}
|
9
|
+
|
10
|
+
const command = { default: "nps" };
|
11
|
+
options.versions.forEach((v) => {
|
12
|
+
command.default += ` build.icons.create${v}`;
|
13
|
+
command[`create${v}`] = `node "${LIB}/create-icons/index.js" "${options.collectionName}" "${v}"`;
|
14
|
+
});
|
15
|
+
|
16
|
+
return command;
|
17
|
+
}
|
18
|
+
|
19
|
+
const copyIconAssetsCommand = (options) => {
|
20
|
+
if (!options.versions) {
|
21
|
+
return {
|
22
|
+
default: "nps copy.json-imports copy.icon-collection",
|
23
|
+
"json-imports": `node "${LIB}/copy-and-watch/index.js" --silent "src/**/*.js" dist/`,
|
24
|
+
"icon-collection": `node "${LIB}/copy-and-watch/index.js" --silent "src/*.json" src/generated/assets/`,
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
const command = {
|
29
|
+
default: "nps copy.json-imports ",
|
30
|
+
"json-imports": `node "${LIB}/copy-and-watch/index.js" --silent "src/**/*.js" dist/`,
|
31
|
+
};
|
32
|
+
|
33
|
+
options.versions.forEach((v) => {
|
34
|
+
command.default += ` copy.icon-collection${v}`;
|
35
|
+
command[`icon-collection${v}`] = `node "${LIB}/copy-and-watch/index.js" --silent "src/${v}/*.json" src/generated/assets/${v}/`;
|
36
|
+
});
|
37
|
+
|
38
|
+
return command;
|
39
|
+
}
|
40
|
+
|
41
|
+
const getScripts = (options) => {
|
42
|
+
const createJSImportsCmd = createIconImportsCommand(options);
|
43
|
+
const copyAssetsCmd = copyIconAssetsCommand(options);
|
44
|
+
const tsCommand = !options.legacy ? "tsc --build" : "";
|
45
|
+
const tsCrossEnv = !options.legacy ? "cross-env UI5_TS=true" : "";
|
46
|
+
|
47
|
+
const scripts = {
|
48
|
+
clean: "rimraf dist && rimraf src/generated",
|
49
|
+
copy: copyAssetsCmd,
|
50
|
+
generate: `${tsCrossEnv} nps clean copy build.i18n build.icons build.jsonImports copyjson`,
|
51
|
+
copyjson: "copy-and-watch \"src/generated/**/*.json\" dist/generated/",
|
52
|
+
build: {
|
53
|
+
default: `${tsCrossEnv} nps clean copy build.i18n typescript build.icons build.jsonImports`,
|
54
|
+
i18n: {
|
55
|
+
default: "nps build.i18n.defaultsjs build.i18n.json",
|
56
|
+
defaultsjs: `mkdirp dist/generated/i18n && node "${LIB}/i18n/defaults.js" src/i18n src/generated/i18n`,
|
57
|
+
json: `mkdirp src/generated/assets/i18n && node "${LIB}/i18n/toJSON.js" src/i18n src/generated/assets/i18n`,
|
58
|
+
},
|
59
|
+
jsonImports: {
|
60
|
+
default: "mkdirp src/generated/json-imports && nps build.jsonImports.i18n",
|
61
|
+
i18n: `node "${LIB}/generate-json-imports/i18n.js" src/generated/assets/i18n src/generated/json-imports`,
|
62
|
+
},
|
63
|
+
icons: createJSImportsCmd,
|
64
|
+
},
|
65
|
+
typescript: tsCommand,
|
66
|
+
};
|
67
|
+
|
68
|
+
return scripts;
|
69
|
+
};
|
70
|
+
|
71
|
+
module.exports = getScripts;
|
@@ -0,0 +1,102 @@
|
|
1
|
+
const fs = require("fs").promises;
|
2
|
+
const path = require("path");
|
3
|
+
const basePath = process.argv[2];
|
4
|
+
const babelCore = require("@babel/core");
|
5
|
+
const babelParser = require("@babel/parser");
|
6
|
+
const babelGenerator = require("@babel/generator").default;
|
7
|
+
const replaceAsync = require('replace-in-file');
|
8
|
+
|
9
|
+
const convertSAPUIDefineToDefine = async (filePath) => {
|
10
|
+
return replaceAsync({
|
11
|
+
files: filePath,
|
12
|
+
processor: (input) => {
|
13
|
+
return input.replace("sap.ui.define", "define").replace(", /* bExport= */ false", "").replace(", /* bExport= */ true", "");
|
14
|
+
}
|
15
|
+
})
|
16
|
+
}
|
17
|
+
|
18
|
+
const convertAmdToEs6 = async (code) => {
|
19
|
+
return (await babelCore.transformAsync(code, {
|
20
|
+
plugins: [['babel-plugin-amd-to-esm', {}]]
|
21
|
+
})).code;
|
22
|
+
}
|
23
|
+
|
24
|
+
const convertAbsImportsToRelative = (filePath, code) => {
|
25
|
+
let changed = false;
|
26
|
+
// console.log("File processing started: ", srcPath);
|
27
|
+
|
28
|
+
if (code.includes("import(")) {
|
29
|
+
// esprima can't parse this, but it's from the project files
|
30
|
+
return;
|
31
|
+
}
|
32
|
+
|
33
|
+
const tree = babelParser.parse(code, { sourceType: "module" });
|
34
|
+
const importer = filePath.replace(basePath, "");
|
35
|
+
const importerDir = path.dirname(importer);
|
36
|
+
// console.log("Importer -> ", importer);
|
37
|
+
|
38
|
+
tree?.program?.body?.forEach(node => {
|
39
|
+
if (node.type === "ImportDeclaration") {
|
40
|
+
let importee = node.source.value;
|
41
|
+
// console.log(importee);
|
42
|
+
if (importee.startsWith(".")) {
|
43
|
+
// add .js extension if missing
|
44
|
+
if (!importee.endsWith(".js")) {
|
45
|
+
node.source.value += ".js"
|
46
|
+
changed = true;
|
47
|
+
}
|
48
|
+
return;
|
49
|
+
}
|
50
|
+
let importeeDir = path.dirname(importee);
|
51
|
+
let importeeFile = path.basename(importee);
|
52
|
+
let relativePath = path.relative(importerDir, importeeDir);
|
53
|
+
if (relativePath.length === 0) {
|
54
|
+
relativePath = "."
|
55
|
+
}
|
56
|
+
if (!relativePath.startsWith(".")) {
|
57
|
+
relativePath = "./" + relativePath;
|
58
|
+
}
|
59
|
+
|
60
|
+
relativePath = relativePath.replace(/\\/g, "/"); // the browser expects unix paths
|
61
|
+
let relativeImport = `${relativePath}/${importeeFile}.js`;
|
62
|
+
// console.log(importee + " --> " + relativeImport);
|
63
|
+
node.source.value = relativeImport;
|
64
|
+
changed = true;
|
65
|
+
}
|
66
|
+
});
|
67
|
+
|
68
|
+
return changed ? babelGenerator(tree).code : code;
|
69
|
+
}
|
70
|
+
|
71
|
+
const replaceGlobalCoreUsage = (filePath, code) => {
|
72
|
+
if (!filePath.includes("Configuration")) {
|
73
|
+
const replaced = code.replace(/sap\.ui\.getCore\(\)/g, `Core`);
|
74
|
+
return code !== replaced ? `import Core from 'sap/ui/core/Core';${replaced}` : code;
|
75
|
+
}
|
76
|
+
|
77
|
+
return code;
|
78
|
+
};
|
79
|
+
|
80
|
+
const transformAmdToES6Module = async (filePath) => {
|
81
|
+
await convertSAPUIDefineToDefine(filePath);
|
82
|
+
|
83
|
+
let code = (await fs.readFile(filePath)).toString();
|
84
|
+
|
85
|
+
code = await convertAmdToEs6(code);
|
86
|
+
|
87
|
+
code = replaceGlobalCoreUsage(filePath, code);
|
88
|
+
|
89
|
+
code = convertAbsImportsToRelative(filePath, code);
|
90
|
+
|
91
|
+
return fs.writeFile(filePath, code);
|
92
|
+
}
|
93
|
+
|
94
|
+
const transformAmdToES6Modules = async () => {
|
95
|
+
const { globby } = await import("globby");
|
96
|
+
const fileNames = await globby(basePath.replace(/\\/g, "/") + "**/*.js");
|
97
|
+
return Promise.all(fileNames.map(transformAmdToES6Module).filter(x => !!x));
|
98
|
+
};
|
99
|
+
|
100
|
+
transformAmdToES6Modules().then(() => {
|
101
|
+
console.log("Success: all amd modules are transformed to es6!");
|
102
|
+
});
|
@@ -0,0 +1,33 @@
|
|
1
|
+
const fs = require("fs").promises;
|
2
|
+
const path = require("path");
|
3
|
+
const basePath = process.argv[2];
|
4
|
+
const babelCore = require("@babel/core");
|
5
|
+
const babelParser = require("@babel/parser");
|
6
|
+
const babelGenerator = require("@babel/generator").default;
|
7
|
+
const walk = require("estree-walk");
|
8
|
+
|
9
|
+
const checkHasRequire = (filePath, code) => {
|
10
|
+
code = code.replace(/sap\.ui\.require/g, "unhandledRequire");
|
11
|
+
|
12
|
+
const tree = babelParser.parse(code, { sourceType: "module" });
|
13
|
+
walk(tree, {
|
14
|
+
CallExpression: function (node) {
|
15
|
+
if (node.type === "CallExpression" && node?.callee?.name === "unhandledRequire") {
|
16
|
+
throw new Error(`sap.ui.require found in ${filePath}`);
|
17
|
+
}
|
18
|
+
}
|
19
|
+
});
|
20
|
+
}
|
21
|
+
|
22
|
+
const checkFile = async (filePath) => {
|
23
|
+
let code = (await fs.readFile(filePath)).toString();
|
24
|
+
checkHasRequire(filePath, code);
|
25
|
+
}
|
26
|
+
|
27
|
+
const checkAll = async () => {
|
28
|
+
const { globby } = await import("globby");
|
29
|
+
const fileNames = await globby(basePath.replace(/\\/g, "/") + "**/*.js");
|
30
|
+
return Promise.all(fileNames.map(checkFile).filter(x => !!x));
|
31
|
+
};
|
32
|
+
|
33
|
+
checkAll();
|