@ui5/webcomponents-tools 0.0.0-8db0ce01a → 0.0.0-a3eca7ade

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.
Files changed (59) hide show
  1. package/CHANGELOG.md +69 -0
  2. package/README.md +1 -1
  3. package/assets-meta.js +3 -1
  4. package/components-package/nps.js +10 -4
  5. package/components-package/postcss.themes.js +5 -2
  6. package/components-package/rollup-plugins/empty-module.js +15 -0
  7. package/components-package/rollup.js +52 -8
  8. package/components-package/wdio.js +50 -25
  9. package/components-package/wdio.sync.js +360 -0
  10. package/icons-collection/nps.js +42 -8
  11. package/lib/copy-list/index.js +28 -0
  12. package/lib/create-icons/index.js +20 -6
  13. package/lib/create-illustrations/index.js +150 -0
  14. package/lib/create-new-component/index.js +12 -4
  15. package/lib/documentation/templates/api-properties-section.js +3 -1
  16. package/lib/documentation/templates/template.js +2 -1
  17. package/lib/esm-abs-to-rel/index.js +54 -0
  18. package/lib/hbs2lit/src/litVisitor2.js +31 -6
  19. package/lib/hbs2lit/src/svgProcessor.js +3 -3
  20. package/lib/hbs2ui5/RenderTemplates/LitRenderer.js +4 -11
  21. package/lib/jsdoc/plugin.js +9 -0
  22. package/lib/jsdoc/template/publish.js +13 -2
  23. package/lib/postcss-css-to-esm/index.js +4 -4
  24. package/lib/postcss-css-to-json/index.js +7 -2
  25. package/lib/replace-global-core/index.js +20 -0
  26. package/lib/scoping/lint-src.js +1 -1
  27. package/lib/scoping/missing-dependencies.js +65 -0
  28. package/lib/scoping/report-tags-usage.js +28 -0
  29. package/lib/serve/index.js +1 -1
  30. package/package.json +23 -29
  31. package/bin/init-ui5-package.js +0 -3
  32. package/lib/init-package/index.js +0 -123
  33. package/lib/init-package/resources/.eslintignore +0 -3
  34. package/lib/init-package/resources/bundle.es5.js +0 -25
  35. package/lib/init-package/resources/bundle.esm.js +0 -31
  36. package/lib/init-package/resources/config/.eslintrc.js +0 -1
  37. package/lib/init-package/resources/config/postcss.components/postcss.config.js +0 -1
  38. package/lib/init-package/resources/config/postcss.themes/postcss.config.js +0 -1
  39. package/lib/init-package/resources/config/rollup.config.js +0 -1
  40. package/lib/init-package/resources/config/wdio.conf.js +0 -1
  41. package/lib/init-package/resources/package-scripts.js +0 -11
  42. package/lib/init-package/resources/src/Assets.js +0 -5
  43. package/lib/init-package/resources/src/MyFirstComponent.hbs +0 -1
  44. package/lib/init-package/resources/src/MyFirstComponent.js +0 -56
  45. package/lib/init-package/resources/src/i18n/messagebundle.properties +0 -2
  46. package/lib/init-package/resources/src/i18n/messagebundle_de.properties +0 -1
  47. package/lib/init-package/resources/src/i18n/messagebundle_en.properties +0 -1
  48. package/lib/init-package/resources/src/i18n/messagebundle_es.properties +0 -1
  49. package/lib/init-package/resources/src/i18n/messagebundle_fr.properties +0 -1
  50. package/lib/init-package/resources/src/themes/MyFirstComponent.css +0 -11
  51. package/lib/init-package/resources/src/themes/sap_belize/parameters-bundle.css +0 -3
  52. package/lib/init-package/resources/src/themes/sap_belize_hcb/parameters-bundle.css +0 -3
  53. package/lib/init-package/resources/src/themes/sap_belize_hcw/parameters-bundle.css +0 -3
  54. package/lib/init-package/resources/src/themes/sap_fiori_3/parameters-bundle.css +0 -3
  55. package/lib/init-package/resources/src/themes/sap_fiori_3_dark/parameters-bundle.css +0 -3
  56. package/lib/init-package/resources/src/themes/sap_fiori_3_hcb/parameters-bundle.css +0 -3
  57. package/lib/init-package/resources/src/themes/sap_fiori_3_hcw/parameters-bundle.css +0 -3
  58. package/lib/init-package/resources/test/pages/index.html +0 -56
  59. package/lib/init-package/resources/test/specs/Demo.spec.js +0 -12
@@ -0,0 +1,360 @@
1
+ exports.config = {
2
+ //
3
+ // ====================
4
+ // Runner Configuration
5
+ // ====================
6
+ //
7
+ // WebdriverIO allows it to run your tests in arbitrary locations (e.g. locally or
8
+ // on a remote machine).
9
+ runner: 'local',
10
+
11
+ //
12
+ // ==================
13
+ // Specify Test Files
14
+ // ==================
15
+ // Define which test specs should run. The pattern is relative to the directory
16
+ // from which `wdio` was called. Notice that, if you are calling `wdio` from an
17
+ // NPM script (see https://docs.npmjs.com/cli/run-script) then the current working
18
+ // directory is where your package.json resides, so `wdio` will be called from there.
19
+ //
20
+ specs: [
21
+ './test/specs/**/*.js'
22
+ ],
23
+ // Patterns to exclude.
24
+ exclude: [
25
+ // 'path/to/excluded/files'
26
+ ],
27
+ //
28
+ // ============
29
+ // Capabilities
30
+ // ============
31
+ // Define your capabilities here. WebdriverIO can run multiple capabilities at the same
32
+ // time. Depending on the number of capabilities, WebdriverIO launches several test
33
+ // sessions. Within your capabilities you can overwrite the spec and exclude options in
34
+ // order to group specific specs to a specific capability.
35
+ //
36
+ // First, you can define how many instances should be started at the same time. Let's
37
+ // say you have 3 different capabilities (Chrome, Firefox, and Safari) and you have
38
+ // set maxInstances to 1; wdio will spawn 3 processes. Therefore, if you have 10 spec
39
+ // files and you set maxInstances to 10, all spec files will get tested at the same time
40
+ // and 30 processes will get spawned. The property handles how many capabilities
41
+ // from the same test should run tests.
42
+ //
43
+ maxInstances: 10,
44
+ //
45
+ // If you have trouble getting all important capabilities together, check out the
46
+ // Sauce Labs platform configurator - a great tool to configure your capabilities:
47
+ // https://docs.saucelabs.com/reference/platforms-configurator
48
+ //
49
+ capabilities: [{
50
+ // maxInstances can get overwritten per capability. So if you have an in-house Selenium
51
+ // grid with only 5 firefox instances available you can make sure that not more than
52
+ // 5 instances get started at a time.
53
+ maxInstances: process.env.TRAVIS ? 1 : 5,
54
+ //
55
+ browserName: 'chrome',
56
+ 'goog:chromeOptions': {
57
+ // to run chrome headless the following flags are required
58
+ // (see https://developers.google.com/web/updates/2017/04/headless-chrome)
59
+ args: ['--headless', '--disable-gpu'],
60
+ // args: ['--disable-gpu'],
61
+ }
62
+ }],
63
+ //
64
+ // port to find chromedriver
65
+ port: 9515, // default
66
+ // ===================
67
+ // Test Configurations
68
+ // ===================
69
+ // Define all options that are relevant for the WebdriverIO instance here
70
+ //
71
+ // Level of logging verbosity: trace | debug | info | warn | error
72
+ logLevel: 'error',
73
+ //
74
+ // Warns when a deprecated command is used
75
+ deprecationWarnings: true,
76
+ //
77
+ // If you only want to run your tests until a specific amount of tests have failed use
78
+ // bail (default is 0 - don't bail, run all tests).
79
+ bail: 0,
80
+ //
81
+ // Set a base URL in order to shorten url command calls. If your `url` parameter starts
82
+ // with `/`, the base url gets prepended, not including the path portion of your baseUrl.
83
+ // If your `url` parameter starts without a scheme or `/` (like `some/path`), the base url
84
+ // gets prepended directly.
85
+ baseUrl: undefined, // This is important since WDIO 7+ does not accept an empty string for baseUrl
86
+ path: '',
87
+ //
88
+ // Default timeout for all waitFor* commands.
89
+ waitforTimeout: 10000,
90
+ //
91
+ // Default timeout in milliseconds for request
92
+ // if Selenium Grid doesn't send response
93
+ connectionRetryTimeout: 90000,
94
+ //
95
+ // Default request retries count
96
+ connectionRetryCount: 3,
97
+ //
98
+ // Test runner services
99
+ // Services take over a specific job you don't want to take care of. They enhance
100
+ // your test setup with almost no effort. Unlike plugins, they don't add new
101
+ // commands. Instead, they hook themselves up into the test process.
102
+ services: ['chromedriver'],
103
+ // options
104
+ chromeDriverArgs: ['--port=9515'], // default
105
+ // Framework you want to run your specs with.
106
+ // The following are supported: Mocha, Jasmine, and Cucumber
107
+ // see also: https://webdriver.io/docs/frameworks.html
108
+ //
109
+ // Make sure you have the wdio adapter package for the specific framework installed
110
+ // before running any tests.
111
+ framework: 'mocha',
112
+ //
113
+ // Test reporter for stdout.
114
+ // The only one supported by default is 'dot'
115
+ // see also: https://webdriver.io/docs/dot-reporter.html
116
+ reporters: ['dot', 'spec'],
117
+
118
+ //
119
+ // Options to be passed to Mocha.
120
+ // See the full list at http://mochajs.org/
121
+ mochaOpts: {
122
+ ui: 'bdd',
123
+ timeout: 60000
124
+ },
125
+ //
126
+ // =====
127
+ // Hooks
128
+ // =====
129
+ // WebdriverIO provides several hooks you can use to interfere with the test process in order to enhance
130
+ // it and to build services around it. You can either apply a single function or an array of
131
+ // methods to it. If one of them returns with a promise, WebdriverIO will wait until that promise got
132
+ // resolved to continue.
133
+ /**
134
+ * Gets executed once before all workers get launched.
135
+ * @param {Object} config wdio configuration object
136
+ * @param {Array.<Object>} capabilities list of capabilities details
137
+ */
138
+ // onPrepare: function (config, capabilities) {
139
+ // },
140
+ /**
141
+ * Gets executed just before initialising the webdriver session and test framework. It allows you
142
+ * to manipulate configurations depending on the capability or spec.
143
+ * @param {Object} config wdio configuration object
144
+ * @param {Array.<Object>} capabilities list of capabilities details
145
+ * @param {Array.<String>} specs List of spec file paths that are to be run
146
+ */
147
+ // beforeSession: function (config, capabilities, specs) {
148
+ // },
149
+ /**
150
+ * Gets executed before test execution begins. At this point you can access to all global
151
+ * variables like `browser`. It is the perfect place to define custom commands.
152
+ * @param {Array.<Object>} capabilities list of capabilities details
153
+ * @param {Array.<String>} specs List of spec file paths that are to be run
154
+ */
155
+ before: function (capabilities, specs) {
156
+ browser.addCommand("isFocusedDeep", function () {
157
+ return browser.execute(function (elem) {
158
+ let activeElement = document.activeElement;
159
+
160
+ while (activeElement.shadowRoot) {
161
+ if (activeElement.shadowRoot.activeElement) {
162
+ activeElement = activeElement.shadowRoot.activeElement;
163
+ } else {
164
+ break;
165
+ }
166
+ }
167
+ return elem === activeElement;
168
+ }, this);
169
+ }, true);
170
+
171
+ browser.addCommand("isFocusedDeepElement", function (element) {
172
+ return browser.execute(function (elem, element, done) {
173
+ let activeElement = document.activeElement;
174
+
175
+ while (activeElement.shadowRoot) {
176
+ if (activeElement.shadowRoot.activeElement) {
177
+ activeElement = activeElement.shadowRoot.activeElement;
178
+ } else {
179
+ break;
180
+ }
181
+ }
182
+ done(element === activeElement);
183
+ }, this, element);
184
+ }, true);
185
+
186
+ browser.addCommand("setProperty", function(property, value) {
187
+ return browser.execute((elem, property, value) => {
188
+ return elem[property] = value;
189
+ }, this, property, value);
190
+ }, true);
191
+
192
+ browser.addCommand("setAttribute", function(attribute, value) {
193
+ return browser.execute((elem, attribute, value) => {
194
+ return elem.setAttribute(attribute, value);
195
+ }, this, attribute, value);
196
+ }, true);
197
+
198
+ browser.addCommand("removeAttribute", function(attribute) {
199
+ return browser.execute((elem, attribute) => {
200
+ return elem.removeAttribute(attribute);
201
+ }, this, attribute);
202
+ }, true);
203
+
204
+ browser.addCommand("hasClass", function(className) {
205
+ return browser.execute((elem, className) => {
206
+ return elem.classList.contains(className);
207
+ }, this, className);
208
+ }, true);
209
+
210
+ browser.addCommand("getStaticAreaItemClassName", function(selector) {
211
+ return browser.execute(async (selector) => {
212
+ const staticAreaItem = await document.querySelector(selector).getStaticAreaItemDomRef();
213
+ return staticAreaItem.host.classList[0];
214
+ }, selector);
215
+ }, false);
216
+ },
217
+ /**
218
+ * Runs before a WebdriverIO command gets executed.
219
+ * @param {String} commandName hook command name
220
+ * @param {Array} args arguments that command would receive
221
+ */
222
+ beforeCommand: function (commandName, args) {
223
+ const waitFor = [
224
+ "$",
225
+ "$$",
226
+ "getAttribute",
227
+ "getCSSProperty",
228
+ "getHTML",
229
+ "getProperty",
230
+ "getSize",
231
+ "getStaticAreaItemClassName", // custom
232
+ "getText",
233
+ "getValue",
234
+ "hasClass", // custom
235
+ "isDisplayed",
236
+ "isDisplayedInViewport",
237
+ "isEnabled",
238
+ "isExisting",
239
+ "isFocused",
240
+ "isFocusedDeep", // custom
241
+ "isFocusedDeepElement", // custom
242
+ "shadow$",
243
+ "shadow$$",
244
+ ];
245
+ if (waitFor.includes(commandName)) {
246
+ browser.executeAsync(function (done) {
247
+ window["sap-ui-webcomponents-bundle"].renderFinished().then(done);
248
+ });
249
+ }
250
+ },
251
+
252
+ /**
253
+ * Hook that gets executed before the suite starts
254
+ * @param {Object} suite suite details
255
+ */
256
+ // beforeSuite: function (suite) {
257
+ // },
258
+ /**
259
+ * Function to be executed before a test (in Mocha/Jasmine) or a step (in Cucumber) starts.
260
+ * @param {Object} test test details
261
+ */
262
+ // beforeTest: function (test) {
263
+ // },
264
+ /**
265
+ * Hook that gets executed _before_ a hook within the suite starts (e.g. runs before calling
266
+ * beforeEach in Mocha)
267
+ */
268
+ // beforeHook: function () {
269
+ // },
270
+ /**
271
+ * Hook that gets executed _after_ a hook within the suite starts (e.g. runs after calling
272
+ * afterEach in Mocha)
273
+ */
274
+ // afterHook: function () {
275
+ // },
276
+ /**
277
+ * Function to be executed after a test (in Mocha/Jasmine) or a step (in Cucumber) starts.
278
+ * @param {Object} test test details
279
+ */
280
+ // afterTest: function (test) {
281
+ // },
282
+ /**
283
+ * Hook that gets executed after the suite has ended
284
+ * @param {Object} suite suite details
285
+ */
286
+ // afterSuite: function (suite) {
287
+ // },
288
+
289
+ /**
290
+ * Runs after a WebdriverIO command gets executed
291
+ * @param {String} commandName hook command name
292
+ * @param {Array} args arguments that command would receive
293
+ * @param {Number} result 0 - command success, 1 - command error
294
+ * @param {Object} error error object if any
295
+ */
296
+ afterCommand: function (commandName, args, result, error) {
297
+
298
+ // url -> set configuration first
299
+ if (commandName === "url" && !args[0].includes("do-not-change-configuration")) {
300
+ browser.execute(function() {
301
+ window["sap-ui-webcomponents-bundle"].configuration.setNoConflict(true);
302
+ });
303
+ }
304
+
305
+ const waitFor = [
306
+ "addValue",
307
+ "clearValue",
308
+ "click",
309
+ "doubleClick",
310
+ "dragAndDrop",
311
+ "keys",
312
+ "pause",
313
+ "removeAttribute", // custom
314
+ "setAttribute", // custom
315
+ "setProperty", // custom
316
+ "setValue",
317
+ "setWindowSize",
318
+ "touchAction",
319
+ "url"
320
+ ];
321
+ if (waitFor.includes(commandName)) {
322
+ browser.executeAsync(function (done) {
323
+ window["sap-ui-webcomponents-bundle"].renderFinished().then(done);
324
+ });
325
+ }
326
+ },
327
+ /**
328
+ * Gets executed after all tests are done. You still have access to all global variables from
329
+ * the test.
330
+ * @param {Number} result 0 - test pass, 1 - test fail
331
+ * @param {Array.<Object>} capabilities list of capabilities details
332
+ * @param {Array.<String>} specs List of spec file paths that ran
333
+ */
334
+ // after: function (result, capabilities, specs) {
335
+ // },
336
+ /**
337
+ * Gets executed right after terminating the webdriver session.
338
+ * @param {Object} config wdio configuration object
339
+ * @param {Array.<Object>} capabilities list of capabilities details
340
+ * @param {Array.<String>} specs List of spec file paths that ran
341
+ */
342
+ // afterSession: function (config, capabilities, specs) {
343
+ // },
344
+ /**
345
+ * Gets executed after all workers got shut down and the process is about to exit.
346
+ * @param {Object} exitCode 0 - success, 1 - fail
347
+ * @param {Object} config wdio configuration object
348
+ * @param {Array.<Object>} capabilities list of capabilities details
349
+ * @param {<Object>} results object containing test results
350
+ */
351
+ // onComplete: function(exitCode, config, capabilities, results) {
352
+ // },
353
+ /**
354
+ * Gets executed when a refresh happens.
355
+ * @param {String} oldSessionId session ID of the old session
356
+ * @param {String} newSessionId session ID of the new session
357
+ */
358
+ //onReload: function(oldSessionId, newSessionId) {
359
+ //}
360
+ }
@@ -3,19 +3,53 @@ const resolve = require("resolve");
3
3
 
4
4
  const generateHash = resolve.sync("@ui5/webcomponents-tools/lib/hash/generate.js");
5
5
  const hashIsUpToDate = resolve.sync("@ui5/webcomponents-tools/lib/hash/upToDate.js");
6
- const UP_TO_DATE = `node ${hashIsUpToDate} dist/ hash.txt && echo "Up to date."`;
6
+ const UP_TO_DATE = `node "${hashIsUpToDate}" dist/ hash.txt && echo "Up to date."`;
7
7
 
8
8
  const LIB = path.join(__dirname, `../lib/`);
9
9
 
10
+ const createIconImportsCommand = (options) => {
11
+ if (!options.versions) {
12
+ return `node "${LIB}/create-icons/index.js" "${options.collectionName}"`;
13
+ }
14
+
15
+ const command = { default: "nps" };
16
+ options.versions.forEach((v) => {
17
+ command.default += ` build.icons.create${v}`;
18
+ command[`create${v}`] = `node "${LIB}/create-icons/index.js" "${options.collectionName}" "${v}"`;
19
+ });
20
+
21
+ return command;
22
+ }
23
+
24
+ const copyIconAssetsCommand = (options) => {
25
+ if (!options.versions) {
26
+ return {
27
+ default: "nps copy.json-imports copy.icon-collection",
28
+ "json-imports": `node "${LIB}/copy-and-watch/index.js" --silent "src/**/*.js" dist/`,
29
+ "icon-collection": `node "${LIB}/copy-and-watch/index.js" --silent "src/*.json" dist/generated/assets/`,
30
+ }
31
+ }
32
+
33
+ const command = {
34
+ default: "nps copy.json-imports ",
35
+ "json-imports": `node "${LIB}/copy-and-watch/index.js" --silent "src/**/*.js" dist/`,
36
+ };
37
+
38
+ options.versions.forEach((v) => {
39
+ command.default += ` copy.icon-collection${v}`;
40
+ command[`icon-collection${v}`] = `node "${LIB}/copy-and-watch/index.js" --silent "src/${v}/*.json" dist/generated/assets/${v}/`;
41
+ });
42
+
43
+ return command;
44
+ }
45
+
10
46
  const getScripts = (options) => {
47
+ const createJSImportsCmd = createIconImportsCommand(options);
48
+ const copyAssetsCmd = copyIconAssetsCommand(options);
11
49
 
12
50
  const scripts = {
13
51
  clean: "rimraf dist",
14
- copy: {
15
- default: "nps copy.json-imports copy.icon-collection",
16
- "json-imports": `node "${LIB}/copy-and-watch/index.js" --silent "src/**/*.js" dist/`,
17
- "icon-collection": `node "${LIB}/copy-and-watch/index.js" --silent "src/*.json" dist/generated/assets/`
18
- },
52
+ copy: copyAssetsCmd,
19
53
  build: {
20
54
  default: `${UP_TO_DATE} || nps clean copy build.i18n build.icons build.jsonImports hash`,
21
55
  i18n: {
@@ -27,9 +61,9 @@ const getScripts = (options) => {
27
61
  default: "mkdirp dist/generated/json-imports && nps build.jsonImports.i18n",
28
62
  i18n: `node "${LIB}/generate-json-imports/i18n.js" dist/generated/assets/i18n dist/generated/json-imports`,
29
63
  },
30
- icons: `node "${LIB}/create-icons/index.js" "${options.collectionName}"`,
64
+ icons: createJSImportsCmd,
31
65
  },
32
- hash: `node ${generateHash} dist/ hash.txt`,
66
+ hash: `node "${generateHash}" dist/ hash.txt`,
33
67
  };
34
68
 
35
69
  return scripts;
@@ -0,0 +1,28 @@
1
+ const fs = require("fs");
2
+ const path = require("path");
3
+ const mkdirp = require("mkdirp");
4
+
5
+ const fileList = process.argv[2];
6
+ const dest = process.argv[3];
7
+ const src = "../../node_modules/@openui5/sap.ui.core/src/";
8
+
9
+ const filesToCopy = fs.readFileSync(fileList).toString();
10
+ // console.log(filesToCopy);
11
+
12
+ // Support full-line comments starting with # in the used-modules.txt file
13
+ const shouldCopy = file => file.length && !file.startsWith("#");
14
+
15
+ const trimFile = file => file.trim();
16
+
17
+ filesToCopy.split("\n").map(trimFile).filter(shouldCopy).forEach(async moduleName => {
18
+ const srcPath = path.join(src, moduleName);
19
+ const destPath = path.join(dest, moduleName);
20
+
21
+ await mkdirp(path.dirname(destPath));
22
+ fs.copyFile(srcPath, destPath, (err) => {
23
+ if (err) {
24
+ throw err;
25
+ }
26
+ console.log(`${destPath} created.`);
27
+ });
28
+ });
@@ -3,12 +3,13 @@ const path = require("path");
3
3
  const mkdirp = require("mkdirp");
4
4
 
5
5
  const collectionName = process.argv[2] || "SAP-icons";
6
- const srcFile = path.normalize(`src/${collectionName}.json`);
7
- const destDir = path.normalize("dist/");
6
+ const collectionVersion = process.argv[3];
7
+ const srcFile = collectionVersion ? path.normalize(`src/${collectionVersion}/${collectionName}.json`) : path.normalize(`src/${collectionName}.json`);
8
+ const destDir = collectionVersion ? path.normalize(`dist/${collectionVersion}/`) : path.normalize("dist/");
8
9
 
9
10
  mkdirp.sync(destDir);
10
11
 
11
- const template = (name, pathData, ltr, collection, packageName) => `import { registerIcon } from "@ui5/webcomponents-base/dist/asset-registries/Icons.js";
12
+ const iconTemplate = (name, pathData, ltr, collection, packageName) => `import { registerIcon } from "@ui5/webcomponents-base/dist/asset-registries/Icons.js";
12
13
 
13
14
  const name = "${name}";
14
15
  const pathData = "${pathData}";
@@ -21,8 +22,8 @@ registerIcon(name, { pathData, ltr, collection, packageName });
21
22
  export default { pathData };`;
22
23
 
23
24
 
24
- const accTemplate = (name, pathData, ltr, accData, collection, packageName) => `import { registerIcon } from "@ui5/webcomponents-base/dist/asset-registries/Icons.js";
25
- import { ${accData.key} } from "./generated/i18n/i18n-defaults.js";
25
+ const iconAccTemplate = (name, pathData, ltr, accData, collection, packageName) => `import { registerIcon } from "@ui5/webcomponents-base/dist/asset-registries/Icons.js";
26
+ import { ${accData.key} } from "../generated/i18n/i18n-defaults.js";
26
27
 
27
28
  const name = "${name}";
28
29
  const pathData = "${pathData}";
@@ -35,6 +36,15 @@ registerIcon(name, { pathData, ltr, accData, collection, packageName });
35
36
 
36
37
  export default { pathData, accData };`;
37
38
 
39
+
40
+
41
+ const collectionTemplate = (name) => `import { isTheme } from "@ui5/webcomponents-base/dist/config/Theme.js";
42
+ import pathDataV4 from "./v5/${name}.js";
43
+ import pathDataV5 from "./v4/${name}.js";
44
+ const pathData = isTheme("sap_horizon") ? pathDataV5 : pathDataV4;
45
+ export default { pathData };`;
46
+
47
+
38
48
  const svgTemplate = (pathData) => `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
39
49
  <path d="${pathData}"/>
40
50
  </svg>`;
@@ -48,10 +58,14 @@ const createIcons = (file) => {
48
58
  const ltr = !!iconData.ltr;
49
59
  const acc = iconData.acc;
50
60
 
51
- const content = acc ? accTemplate(name, pathData, ltr, acc, json.collection, json.packageName) : template(name, pathData, ltr, json.collection, json.packageName);
61
+ const content = acc ? iconAccTemplate(name, pathData, ltr, acc, json.collection, json.packageName) : iconTemplate(name, pathData, ltr, json.collection, json.packageName);
52
62
 
53
63
  fs.writeFileSync(path.join(destDir, `${name}.js`), content);
54
64
  fs.writeFileSync(path.join(destDir, `${name}.svg`), svgTemplate(pathData));
65
+
66
+ if (json.version) {
67
+ fs.writeFileSync(path.join(path.normalize("dist/"), `${name}.js`), collectionTemplate(name));
68
+ }
55
69
  }
56
70
  };
57
71
 
@@ -0,0 +1,150 @@
1
+ const fs = require("fs");
2
+ const path = require("path");
3
+ const mkdirp = require("mkdirp");
4
+
5
+ if (process.argv.length < 7) {
6
+ return;
7
+ }
8
+
9
+ const ORIGINAL_TEXTS = {
10
+ UnableToLoad: "UnableToLoad",
11
+ UnableToUpload: "UnableToUpload",
12
+ NoActivities: "NoActivities",
13
+ BeforeSearch: "BeforeSearch",
14
+ NoSearchResults: "NoSearchResults",
15
+ NoEntries: "NoEntries",
16
+ NoData: "NoData",
17
+ NoNotifications: "NoNotifications",
18
+ BalloonSky: "BalloonSky",
19
+ SuccessScreen: "SuccessScreen",
20
+ NoMail: "NoMail",
21
+ NoSavedItems: "NoSavedItems",
22
+ NoTasks: "NoTasks"
23
+ };
24
+
25
+ const FALLBACK_TEXTS = {
26
+ ReloadScreen: ORIGINAL_TEXTS.UnableToLoad,
27
+ Connection: ORIGINAL_TEXTS.UnableToLoad,
28
+ ErrorScreen: ORIGINAL_TEXTS.UnableToUpload,
29
+ EmptyCalendar: ORIGINAL_TEXTS.NoActivities,
30
+ SearchEarth: ORIGINAL_TEXTS.BeforeSearch,
31
+ SearchFolder: ORIGINAL_TEXTS.NoSearchResults,
32
+ EmptyList: ORIGINAL_TEXTS.NoEntries,
33
+ Tent: ORIGINAL_TEXTS.NoData,
34
+ SleepingBell: ORIGINAL_TEXTS.NoNotifications,
35
+ SimpleBalloon: ORIGINAL_TEXTS.BalloonSky,
36
+ SimpleBell: ORIGINAL_TEXTS.NoNotifications,
37
+ SimpleCalendar: ORIGINAL_TEXTS.NoActivities,
38
+ SimpleCheckMark: ORIGINAL_TEXTS.SuccessScreen,
39
+ SimpleConnection: ORIGINAL_TEXTS.UnableToLoad,
40
+ SimpleEmptyDoc: ORIGINAL_TEXTS.NoData,
41
+ SimpleEmptyList: ORIGINAL_TEXTS.NoEntries,
42
+ SimpleError: ORIGINAL_TEXTS.UnableToUpload,
43
+ SimpleMagnifier: ORIGINAL_TEXTS.BeforeSearch,
44
+ SimpleMail: ORIGINAL_TEXTS.NoMail,
45
+ SimpleNoSavedItems: ORIGINAL_TEXTS.NoSavedItems,
46
+ SimpleNotFoundMagnifier: ORIGINAL_TEXTS.NoSearchResults,
47
+ SimpleReload: ORIGINAL_TEXTS.UnableToLoad,
48
+ SimpleTask: ORIGINAL_TEXTS.NoTasks,
49
+ SuccessBalloon: ORIGINAL_TEXTS.BalloonSky,
50
+ SuccessCheckMark: ORIGINAL_TEXTS.SuccessScreen,
51
+ SuccessHighFive: ORIGINAL_TEXTS.BalloonSky
52
+ };
53
+
54
+ const srcPath = process.argv[2];
55
+ const defaultText = process.argv[3] === "true";
56
+ const illustrationsPrefix = process.argv[4];
57
+ const illustrationSet = process.argv[5];
58
+ const destPath = process.argv[6];
59
+ const fileNamePattern = new RegExp(`${illustrationsPrefix}-.+-(.+).svg`);
60
+ // collect each illustration name because each one should have Sample.js file
61
+ const fileNames = new Set();
62
+
63
+ const svgImportTemplate = svgContent => { return `export default \`${svgContent}\`;`};
64
+ const svgToJs = fileName => {
65
+ const svg = fs.readFileSync(path.join(srcPath, fileName), { encoding: "utf-8" });
66
+ const fileContent = svgImportTemplate(svg);
67
+ fileName = fileName.replace(/\.svg$/, ".js");
68
+
69
+ fs.writeFileSync(path.join(destPath, fileName), fileContent);
70
+ };
71
+ const illustrationImportTemplate = illustrationName => {
72
+ let illustrationNameForTranslation = illustrationName;
73
+
74
+ if (defaultText) {
75
+ if (FALLBACK_TEXTS[illustrationNameForTranslation]) {
76
+ illustrationNameForTranslation = FALLBACK_TEXTS[illustrationNameForTranslation];
77
+ } else if (illustrationName.indexOf("_v") !== -1) {
78
+ illustrationNameForTranslation = illustrationNameForTranslation.substr(0, illustrationNameForTranslation.indexOf('_v'));
79
+ }
80
+ }
81
+
82
+ const illustrationNameUpperCase = illustrationNameForTranslation.toUpperCase();
83
+
84
+ return defaultText ? `import { registerIllustration } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
85
+ import dialogSvg from "./${illustrationsPrefix}-Dialog-${illustrationName}.js";
86
+ import sceneSvg from "./${illustrationsPrefix}-Scene-${illustrationName}.js";
87
+ import spotSvg from "./${illustrationsPrefix}-Spot-${illustrationName}.js";
88
+ import {
89
+ IM_TITLE_${illustrationNameUpperCase},
90
+ IM_SUBTITLE_${illustrationNameUpperCase},
91
+ } from "../generated/i18n/i18n-defaults.js";
92
+
93
+ const name = "${illustrationName}";
94
+ const set = "${illustrationSet}";
95
+ const title = IM_TITLE_${illustrationNameUpperCase};
96
+ const subtitle = IM_SUBTITLE_${illustrationNameUpperCase};
97
+
98
+ registerIllustration(name, {
99
+ dialogSvg,
100
+ sceneSvg,
101
+ spotSvg,
102
+ title,
103
+ subtitle,
104
+ set,
105
+ });
106
+
107
+ export {
108
+ dialogSvg,
109
+ sceneSvg,
110
+ spotSvg,
111
+ };` :
112
+ `import { registerIllustration } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
113
+ import dialogSvg from "./${illustrationsPrefix}-Dialog-${illustrationName}.js";
114
+ import sceneSvg from "./${illustrationsPrefix}-Scene-${illustrationName}.js";
115
+ import spotSvg from "./${illustrationsPrefix}-Spot-${illustrationName}.js";
116
+
117
+ const name = "${illustrationName}";
118
+ const set = "${illustrationSet}";
119
+
120
+ registerIllustration(name, {
121
+ dialogSvg,
122
+ sceneSvg,
123
+ spotSvg,
124
+ set,
125
+ });
126
+
127
+ export {
128
+ dialogSvg,
129
+ sceneSvg,
130
+ spotSvg,
131
+ };`
132
+ };
133
+
134
+ mkdirp.sync(destPath);
135
+
136
+ const illustrationFileNames = fs.readdirSync(path.normalize(srcPath));
137
+
138
+ // convert SVG to JS imports
139
+ illustrationFileNames.forEach(illustration => {
140
+ if (fileNamePattern.test(illustration)) {
141
+ let [fileName, illustrationName] = illustration.match(fileNamePattern);
142
+
143
+ svgToJs(fileName);
144
+ fileNames.add(illustrationName);
145
+ }
146
+ });
147
+
148
+ for (let illustrationName of fileNames) {
149
+ fs.writeFileSync(path.join(destPath, `${illustrationName}.js`), illustrationImportTemplate(illustrationName));
150
+ }
@@ -139,8 +139,16 @@ console.log(`Successfully generated ${componentName}.js`);
139
139
  console.log(`Successfully generated ${componentName}.css`);
140
140
  console.log(`Successfully generated ${componentName}.hbs`);
141
141
 
142
+ const bundleLogger = fs.createWriteStream("./bundle.common.js", {
143
+ flags: "a" // appending
144
+ });
145
+
146
+ bundleLogger.write(`
147
+ // TODO: Move this line in order to keep the file sorted alphabetically
148
+ import ${componentName} from "./dist/${componentName}.js";`);
149
+
142
150
  // Change the color of the output
143
- console.warn('\x1b[33m%s\x1b[0m', `
144
- Please import the generated component in bundle.esm.js:
145
- import ${componentName} from "./dist/${componentName}.js";
146
- `);
151
+ console.warn('\x1b[33m%s\x1b[0m', `
152
+ Component is imported in bundle.common.js.
153
+ Do NOT forget to sort the file in alphabeticall order.
154
+ `);