@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
@@ -0,0 +1,119 @@
|
|
1
|
+
const fs = require('fs').promises;
|
2
|
+
const existsSync = require('fs').existsSync;
|
3
|
+
const getopts = require('getopts');
|
4
|
+
const hbs2lit = require('../hbs2lit');
|
5
|
+
const path = require('path');
|
6
|
+
const litRenderer = require('./RenderTemplates/LitRenderer');
|
7
|
+
const recursiveReadDir = require("recursive-readdir");
|
8
|
+
|
9
|
+
let missingTypesReported = false;
|
10
|
+
|
11
|
+
const args = getopts(process.argv.slice(2), {
|
12
|
+
alias: {
|
13
|
+
o: 'output',
|
14
|
+
d: 'directory',
|
15
|
+
f: 'file',
|
16
|
+
t: 'type'
|
17
|
+
},
|
18
|
+
default: {
|
19
|
+
t: 'lit-html'
|
20
|
+
}
|
21
|
+
});
|
22
|
+
|
23
|
+
const onError = (place) => {
|
24
|
+
console.log(`A problem occoured when reading ${place}. Please recheck passed parameters.`);
|
25
|
+
};
|
26
|
+
|
27
|
+
const isHandlebars = (fileName) => fileName.endsWith('.hbs');
|
28
|
+
|
29
|
+
const hasTypes = (file, componentName) => {
|
30
|
+
const tsFile = path.join(path.dirname(file), componentName + ".ts")
|
31
|
+
const dtsFile = path.join(path.dirname(file), componentName + ".d.ts")
|
32
|
+
return existsSync(tsFile) || existsSync(dtsFile);
|
33
|
+
}
|
34
|
+
|
35
|
+
const processFile = async (file, outputDir) => {
|
36
|
+
const componentNameMatcher = /(\w+)(\.hbs)/gim;
|
37
|
+
const componentName = componentNameMatcher.exec(file)[1];
|
38
|
+
const componentHasTypes = hasTypes(file, componentName);
|
39
|
+
if (!componentHasTypes) {
|
40
|
+
if (!missingTypesReported) {
|
41
|
+
console.warn("[Warn] The following templates do not have a corresponging .ts or .d.ts file and won't be type checked:")
|
42
|
+
missingTypesReported = true;
|
43
|
+
}
|
44
|
+
console.log(" -> " + componentName + ".hbs");
|
45
|
+
}
|
46
|
+
const litCode = await hbs2lit(file, componentName);
|
47
|
+
const absoluteOutputDir = composeAbsoluteOutputDir(file, outputDir);
|
48
|
+
|
49
|
+
return writeRenderers(absoluteOutputDir, componentName, litRenderer.generateTemplate(componentName, litCode, componentHasTypes));
|
50
|
+
};
|
51
|
+
|
52
|
+
const composeAbsoluteOutputDir = (file, outputDir) => {
|
53
|
+
// (1) Extract the dir structure from the source file path - "src/lvl1/lvl2/MyCompBadge.hbs"
|
54
|
+
// - remove the filename - "src/lvl1/lvl2"
|
55
|
+
// - remove the leading dir - "lvl1/lvl2"
|
56
|
+
const fileDir = file.split(path.sep).slice(1, -1).join(path.sep);
|
57
|
+
|
58
|
+
// (2) Compose full output dir - "dist/generated/templates/lvl1/lvl2"
|
59
|
+
return `${outputDir}${path.sep}${fileDir}`;
|
60
|
+
};
|
61
|
+
|
62
|
+
const wrapDirectory = (directory, outputDir) => {
|
63
|
+
directory = path.normalize(directory);
|
64
|
+
outputDir = path.normalize(outputDir);
|
65
|
+
|
66
|
+
return new Promise((resolve, reject) => {
|
67
|
+
recursiveReadDir(directory, (err, files) => {
|
68
|
+
|
69
|
+
if (err) {
|
70
|
+
onError('directory');
|
71
|
+
reject();
|
72
|
+
}
|
73
|
+
|
74
|
+
const promises = files.map(fileName => {
|
75
|
+
if (isHandlebars(fileName)) {
|
76
|
+
return processFile(fileName, outputDir);
|
77
|
+
}
|
78
|
+
}).filter(x => !!x);
|
79
|
+
|
80
|
+
resolve(Promise.all(promises));
|
81
|
+
});
|
82
|
+
});
|
83
|
+
};
|
84
|
+
|
85
|
+
const writeRenderers = async (outputDir, controlName, fileContent) => {
|
86
|
+
try {
|
87
|
+
|
88
|
+
await fs.mkdir(outputDir, { recursive: true });
|
89
|
+
|
90
|
+
const compiledFilePath = `${outputDir}${path.sep}${controlName}Template.lit.${process.env.UI5_TS ? "ts" : "js"}`;
|
91
|
+
|
92
|
+
// strip DOS line endings because the break the source maps
|
93
|
+
let fileContentUnix = fileContent.replace(/\r\n/g, "\n");
|
94
|
+
fileContentUnix = fileContentUnix.replace(/\r/g, "\n");
|
95
|
+
|
96
|
+
// Only write to the file system actual changes - each updated file, no matter if the same or not, triggers an expensive operation for rollup
|
97
|
+
// Note: .hbs files that include a changed .hbs file will also be recompiled as their content will be updated too
|
98
|
+
|
99
|
+
let existingFileContent = "";
|
100
|
+
try {
|
101
|
+
existingFileContent = (await fs.readFile(compiledFilePath)).toString();
|
102
|
+
} catch (e) {}
|
103
|
+
|
104
|
+
if (existingFileContent !== fileContentUnix) {
|
105
|
+
return fs.writeFile(compiledFilePath, fileContentUnix);
|
106
|
+
}
|
107
|
+
|
108
|
+
} catch (e) {
|
109
|
+
console.log(e);
|
110
|
+
}
|
111
|
+
};
|
112
|
+
|
113
|
+
if (!args['d'] || !args['o']) {
|
114
|
+
console.log('Please provide an input and output directory (-d and -o)');
|
115
|
+
} else {
|
116
|
+
wrapDirectory(args['d'], args['o']).then(() => {
|
117
|
+
console.log("Templates generated");
|
118
|
+
});
|
119
|
+
}
|
@@ -0,0 +1,83 @@
|
|
1
|
+
const fs = require('fs').promises;
|
2
|
+
const path = require('path');
|
3
|
+
const PropertiesReader = require('properties-reader');
|
4
|
+
const assets = require('../../assets-meta.js');
|
5
|
+
|
6
|
+
const generate = async () => {
|
7
|
+
const defaultLanguage = assets.languages.default;
|
8
|
+
|
9
|
+
const messageBundle = path.normalize(`${process.argv[2]}/messagebundle.properties`);
|
10
|
+
const messageBundleDefaultLanguage = path.normalize(`${process.argv[2]}/messagebundle_${defaultLanguage}.properties`);
|
11
|
+
const tsMode = process.env.UI5_TS === "true"; // In Typescript mode, we output .ts files and set the required types, otherwise - output pure .js files
|
12
|
+
|
13
|
+
const outputFile = path.normalize(`${process.argv[3]}/i18n-defaults.${tsMode ? "ts": "js"}`);
|
14
|
+
|
15
|
+
if (!messageBundle || !outputFile) {
|
16
|
+
return;
|
17
|
+
}
|
18
|
+
|
19
|
+
const properties = PropertiesReader(messageBundle)._properties;
|
20
|
+
|
21
|
+
let defaultLanguageProperties;
|
22
|
+
try {
|
23
|
+
defaultLanguageProperties = PropertiesReader(messageBundleDefaultLanguage)._properties;
|
24
|
+
} catch (e) {
|
25
|
+
}
|
26
|
+
|
27
|
+
// Merge messagebundle.properties and messagebundle_en.properties files to generate the default texts.
|
28
|
+
// Note:
|
29
|
+
// (1) at DEV time, it's intuituve to work with the source bundle file - the messagebundle.properties,
|
30
|
+
// and see the changes there take effect.
|
31
|
+
// (2) as the messagebundle.properties file is always written in English,
|
32
|
+
// it makes sense to consider the messagebundle.properties content only when the default language is "en".
|
33
|
+
if (defaultLanguage === "en") {
|
34
|
+
// use messagebundle_en.properties to overwrite all developer properties, only the not translated ones will remain
|
35
|
+
defaultLanguageProperties = Object.assign({}, properties, defaultLanguageProperties);
|
36
|
+
}
|
37
|
+
|
38
|
+
/*
|
39
|
+
* Returns the single text object to enable single export.
|
40
|
+
*
|
41
|
+
* Example:
|
42
|
+
* const ARIA_LABEL_CARD_CONTENT = {
|
43
|
+
* key: "ARIA_LABEL_CARD_CONTENT",
|
44
|
+
* defaultText: "Card Content",
|
45
|
+
* };
|
46
|
+
*/
|
47
|
+
const getTextInfo = (key, value, defaultLanguageValue) => {
|
48
|
+
let effectiveValue = defaultLanguageValue || value;
|
49
|
+
effectiveValue = effectiveValue.replace(/\"/g, "\\\""); // escape double quotes in translations
|
50
|
+
|
51
|
+
if (tsMode) {
|
52
|
+
return `const ${key}: I18nText = {key: "${key}", defaultText: "${effectiveValue}"};`;
|
53
|
+
}
|
54
|
+
return `const ${key} = {key: "${key}", defaultText: "${effectiveValue}"};`;
|
55
|
+
};
|
56
|
+
|
57
|
+
/*
|
58
|
+
* Returns the complete content of i18n-defaults.js file:
|
59
|
+
* (1) the single text objects
|
60
|
+
* (2) the export statement at the end of the file
|
61
|
+
*
|
62
|
+
* Example:
|
63
|
+
* export {
|
64
|
+
* ARIA_LABEL_CARD_CONTENT,
|
65
|
+
* }
|
66
|
+
*/
|
67
|
+
const getOutputFileContent = (properties, defaultLanguageProperties) => {
|
68
|
+
const textKeys = Object.keys(properties);
|
69
|
+
const texts = textKeys.map(prop => getTextInfo(prop, properties[prop], defaultLanguageProperties && defaultLanguageProperties[prop])).join('');
|
70
|
+
|
71
|
+
// tabs are intentionally mixed to have proper identation in the produced file
|
72
|
+
return `${tsMode ? `import type { I18nText } from "@ui5/webcomponents-base/dist/i18nBundle.js";` : ""}
|
73
|
+
${texts}
|
74
|
+
export {${textKeys.join()}};`;
|
75
|
+
};
|
76
|
+
|
77
|
+
await fs.mkdir(path.dirname(outputFile), { recursive: true });
|
78
|
+
await fs.writeFile(outputFile, getOutputFileContent(properties, defaultLanguageProperties));
|
79
|
+
};
|
80
|
+
|
81
|
+
generate().then(() => {
|
82
|
+
console.log("i18n default file generated.");
|
83
|
+
});
|
@@ -0,0 +1,43 @@
|
|
1
|
+
/*
|
2
|
+
* The script converts all messebindle_*.properties files to messagebundle_*.json files.
|
3
|
+
*
|
4
|
+
* Execution (note: the paths depends on the the execution context)
|
5
|
+
* node toJSON.js ../../src/assets/i18n ../../dist/generated/assets/i18n
|
6
|
+
*
|
7
|
+
* The 1st param '../../src/assets/i18n' is the location of messagebundle_*.properties files
|
8
|
+
* The 2nd param './../dist/generated/assets/i18n' is where the JSON files would be written to.
|
9
|
+
*/
|
10
|
+
const path = require("path");
|
11
|
+
const PropertiesReader = require('properties-reader');
|
12
|
+
const fs = require('fs').promises;
|
13
|
+
const assets = require('../../assets-meta.js');
|
14
|
+
|
15
|
+
const allLanguages = assets.languages.all;
|
16
|
+
|
17
|
+
const messagesBundles = path.normalize(`${process.argv[2]}/messagebundle_*.properties`);
|
18
|
+
const messagesJSONDist = path.normalize(`${process.argv[3]}`);
|
19
|
+
|
20
|
+
const convertToJSON = async (file) => {
|
21
|
+
const properties = PropertiesReader(file)._properties;
|
22
|
+
const filename = path.basename(file, path.extname(file));
|
23
|
+
const language = filename.match(/^messagebundle_(.*?)$/)[1];
|
24
|
+
if (!allLanguages.includes(language)) {
|
25
|
+
console.log("Not supported language: ", language);
|
26
|
+
return;
|
27
|
+
}
|
28
|
+
const outputFile = path.normalize(`${messagesJSONDist}/${filename}.json`);
|
29
|
+
|
30
|
+
return fs.writeFile(outputFile, JSON.stringify(properties));
|
31
|
+
// console.log(`[i18n]: "${filename}.json" has been generated!`);
|
32
|
+
};
|
33
|
+
|
34
|
+
const generate = async () => {
|
35
|
+
const { globby } = await import("globby");
|
36
|
+
await fs.mkdir(messagesJSONDist, { recursive: true });
|
37
|
+
const files = await globby(messagesBundles.replace(/\\/g, "/"));
|
38
|
+
return Promise.all(files.map(convertToJSON));
|
39
|
+
};
|
40
|
+
|
41
|
+
generate().then(() => {
|
42
|
+
console.log("Message bundle JSON files generated.");
|
43
|
+
});
|
@@ -0,0 +1,185 @@
|
|
1
|
+
/*
|
2
|
+
The MIT License (MIT)
|
3
|
+
|
4
|
+
Copyright (c) 2016 Christian Murphy
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
8
|
+
in the Software without restriction, including without limitation the rights
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
11
|
+
furnished to do so, subject to the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
14
|
+
copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
22
|
+
SOFTWARE.
|
23
|
+
*/
|
24
|
+
|
25
|
+
const parser = require('postcss-selector-parser');
|
26
|
+
const name = "postcss-combine-duplicated-selectors";
|
27
|
+
|
28
|
+
/**
|
29
|
+
* Ensure that attributes with different quotes match.
|
30
|
+
* @param {Object} selector - postcss selector node
|
31
|
+
*/
|
32
|
+
function normalizeAttributes(selector) {
|
33
|
+
selector.walkAttributes((node) => {
|
34
|
+
if (node.value) {
|
35
|
+
// remove quotes
|
36
|
+
node.value = node.value.replace(/'|\\'|"|\\"/g, '');
|
37
|
+
}
|
38
|
+
});
|
39
|
+
}
|
40
|
+
|
41
|
+
/**
|
42
|
+
* Sort class and id groups alphabetically
|
43
|
+
* @param {Object} selector - postcss selector node
|
44
|
+
*/
|
45
|
+
function sortGroups(selector) {
|
46
|
+
selector.each((subSelector) => {
|
47
|
+
subSelector.nodes.sort((a, b) => {
|
48
|
+
// different types cannot be sorted
|
49
|
+
if (a.type !== b.type) {
|
50
|
+
return 0;
|
51
|
+
}
|
52
|
+
|
53
|
+
// sort alphabetically
|
54
|
+
return a.value < b.value ? -1 : 1;
|
55
|
+
});
|
56
|
+
});
|
57
|
+
|
58
|
+
selector.sort((a, b) => (a.nodes.join('') < b.nodes.join('') ? -1 : 1));
|
59
|
+
}
|
60
|
+
|
61
|
+
/**
|
62
|
+
* Remove duplicated properties
|
63
|
+
* @param {Object} selector - postcss selector node
|
64
|
+
* @param {Boolean} exact
|
65
|
+
*/
|
66
|
+
function removeDupProperties(selector, exact) {
|
67
|
+
if (!exact) { // Remove duplicated properties, regardless of value
|
68
|
+
const retainedProps = new Set();
|
69
|
+
|
70
|
+
for (let actIndex = selector.nodes.length - 1; actIndex >= 1; actIndex--) {
|
71
|
+
const prop = selector.nodes[actIndex].prop;
|
72
|
+
if (prop !== undefined) {
|
73
|
+
if (!retainedProps.has(prop)) {
|
74
|
+
retainedProps.add(prop); // Mark the prop as retained, all other occurrences must be removed
|
75
|
+
} else {
|
76
|
+
selector.nodes[actIndex].remove(); // This occurrence of the prop must be removed
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
} else {
|
81
|
+
// Remove duplicated properties from bottom to top ()
|
82
|
+
for (let actIndex = selector.nodes.length - 1; actIndex >= 1; actIndex--) {
|
83
|
+
for (let befIndex = actIndex - 1; befIndex >= 0; befIndex--) {
|
84
|
+
if (
|
85
|
+
selector.nodes[actIndex].prop === selector.nodes[befIndex].prop &&
|
86
|
+
selector.nodes[actIndex].value === selector.nodes[befIndex].value
|
87
|
+
) {
|
88
|
+
selector.nodes[befIndex].remove();
|
89
|
+
actIndex--;
|
90
|
+
}
|
91
|
+
}
|
92
|
+
}
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
const uniformStyle = parser((selector) => {
|
97
|
+
normalizeAttributes(selector);
|
98
|
+
sortGroups(selector);
|
99
|
+
});
|
100
|
+
|
101
|
+
const defaultOptions = {
|
102
|
+
removeDuplicatedProperties: false,
|
103
|
+
};
|
104
|
+
|
105
|
+
module.exports = (options) => {
|
106
|
+
options = Object.assign({}, defaultOptions, options);
|
107
|
+
return {
|
108
|
+
postcssPlugin: name,
|
109
|
+
prepare() {
|
110
|
+
// Create a map to store maps
|
111
|
+
const mapTable = new Map();
|
112
|
+
// root map to store root selectors
|
113
|
+
mapTable.set('root', new Map());
|
114
|
+
|
115
|
+
return {
|
116
|
+
Rule: (rule) => {
|
117
|
+
let map;
|
118
|
+
// Check selector parent for any at rule
|
119
|
+
if (rule.parent.type === 'atrule') {
|
120
|
+
// Use name and query params as the key
|
121
|
+
const query =
|
122
|
+
rule.parent.name.toLowerCase() +
|
123
|
+
rule.parent.params.replace(/\s+/g, '');
|
124
|
+
|
125
|
+
// See if this query key is already in the map table
|
126
|
+
map = mapTable.has(query) ? // If it is use it
|
127
|
+
mapTable.get(query) : // if not set it and get it
|
128
|
+
mapTable.set(query, new Map()).get(query);
|
129
|
+
} else {
|
130
|
+
// Otherwise we are dealing with a selector in the root
|
131
|
+
map = mapTable.get('root');
|
132
|
+
}
|
133
|
+
|
134
|
+
// create a uniform selector
|
135
|
+
const selector = uniformStyle.processSync(rule.selector, {
|
136
|
+
lossless: false,
|
137
|
+
});
|
138
|
+
|
139
|
+
if (map.has(selector)) {
|
140
|
+
// store original rule as destination
|
141
|
+
const destination = map.get(selector);
|
142
|
+
|
143
|
+
// check if node has already been processed
|
144
|
+
if (destination === rule) return;
|
145
|
+
|
146
|
+
// move declarations to original rule
|
147
|
+
while (rule.nodes.length > 0) {
|
148
|
+
destination.append(rule.nodes[0]);
|
149
|
+
}
|
150
|
+
// remove duplicated rule
|
151
|
+
rule.remove();
|
152
|
+
|
153
|
+
if (
|
154
|
+
options.removeDuplicatedProperties ||
|
155
|
+
options.removeDuplicatedValues
|
156
|
+
) {
|
157
|
+
// removeDupProperties(
|
158
|
+
// destination,
|
159
|
+
// options.removeDuplicatedValues,
|
160
|
+
// );
|
161
|
+
}
|
162
|
+
} else {
|
163
|
+
if (
|
164
|
+
options.removeDuplicatedProperties ||
|
165
|
+
options.removeDuplicatedValues
|
166
|
+
) {
|
167
|
+
// removeDupProperties(rule, options.removeDuplicatedValues);
|
168
|
+
}
|
169
|
+
// add new selector to symbol table
|
170
|
+
map.set(selector, rule);
|
171
|
+
}
|
172
|
+
},
|
173
|
+
OnceExit(root) {
|
174
|
+
root.nodes.forEach(node => {
|
175
|
+
if (node.type === "rule") {
|
176
|
+
removeDupProperties(node, options.removeDuplicatedValues);
|
177
|
+
}
|
178
|
+
})
|
179
|
+
}
|
180
|
+
};
|
181
|
+
},
|
182
|
+
};
|
183
|
+
};
|
184
|
+
|
185
|
+
module.exports.postcss = true;
|
@@ -0,0 +1,37 @@
|
|
1
|
+
import { globby } from "globby";
|
2
|
+
import * as esbuild from 'esbuild'
|
3
|
+
import * as fs from "fs";
|
4
|
+
|
5
|
+
let customPlugin = {
|
6
|
+
name: 'ui5-tools',
|
7
|
+
setup(build) {
|
8
|
+
build.onLoad({ filter: /UI5Element.ts$/ }, async (args) => {
|
9
|
+
let text = await fs.promises.readFile(args.path, 'utf8');
|
10
|
+
text = text.replaceAll(/const DEV_MODE = true/g, "");
|
11
|
+
text = text.replaceAll(/if \(DEV_MODE\)/g, "if (false)");
|
12
|
+
return {
|
13
|
+
contents: text,
|
14
|
+
loader: 'ts',
|
15
|
+
}
|
16
|
+
})
|
17
|
+
},
|
18
|
+
}
|
19
|
+
|
20
|
+
const getConfig = async () => {
|
21
|
+
const config = {
|
22
|
+
entryPoints: await globby("src/**/*.ts"),
|
23
|
+
bundle: false,
|
24
|
+
minify: true,
|
25
|
+
sourcemap: true,
|
26
|
+
outdir: 'dist/prod',
|
27
|
+
outbase: 'src',
|
28
|
+
plugins: [
|
29
|
+
customPlugin,
|
30
|
+
]
|
31
|
+
};
|
32
|
+
return config;
|
33
|
+
}
|
34
|
+
|
35
|
+
|
36
|
+
const config = await getConfig();
|
37
|
+
const result = await esbuild.build(config);
|
@@ -0,0 +1,44 @@
|
|
1
|
+
const fs = require("fs");
|
2
|
+
const path = require("path");
|
3
|
+
const glob = require("glob");
|
4
|
+
|
5
|
+
const getTag = file => {
|
6
|
+
const fileContent = String(fs.readFileSync(file)).replace(/\n/g, "");
|
7
|
+
let matches = fileContent.match(/\btag\b:\s*\"(.*?)\"/);
|
8
|
+
if (matches) {
|
9
|
+
return matches[1];
|
10
|
+
}
|
11
|
+
matches = fileContent.match(/@customElement\("(.*?)"\)/);
|
12
|
+
if (matches) {
|
13
|
+
return matches[1];
|
14
|
+
}
|
15
|
+
return undefined;
|
16
|
+
};
|
17
|
+
|
18
|
+
const getPackageTags = (packageDir) => {
|
19
|
+
const srcDir = path.join(packageDir, "src/");
|
20
|
+
return glob.sync(path.join(srcDir, "/**/*.ts")).flatMap(file => {
|
21
|
+
const tag = getTag(file);
|
22
|
+
return [tag];
|
23
|
+
}).filter(item => !!item);
|
24
|
+
};
|
25
|
+
|
26
|
+
const isComponentsPackage = (packageFileContent) => {
|
27
|
+
return packageFileContent.ui5 && packageFileContent.ui5.webComponentsPackage;
|
28
|
+
};
|
29
|
+
|
30
|
+
const getDepComponentPackages = packageDir => {
|
31
|
+
const packageFile = path.join(packageDir, "package.json");
|
32
|
+
const packageFileContent = JSON.parse(fs.readFileSync(packageFile));
|
33
|
+
if (!isComponentsPackage(packageFileContent)) {
|
34
|
+
return [];
|
35
|
+
}
|
36
|
+
|
37
|
+
return Object.keys(packageFileContent.dependencies || {}).map(dep => path.dirname(require.resolve(path.join(dep, "package.json"))));
|
38
|
+
};
|
39
|
+
|
40
|
+
const getAllTags = (packageDir) => {
|
41
|
+
return getPackageTags(packageDir).concat(getDepComponentPackages(packageDir).flatMap(getPackageTags));
|
42
|
+
};
|
43
|
+
|
44
|
+
module.exports = getAllTags;
|
@@ -0,0 +1,32 @@
|
|
1
|
+
const fs = require("fs");
|
2
|
+
const path = require("path");
|
3
|
+
const glob = require("glob");
|
4
|
+
const getAllTags = require("./get-all-tags.js");
|
5
|
+
|
6
|
+
const tags = getAllTags(process.cwd());
|
7
|
+
|
8
|
+
const errors = [];
|
9
|
+
|
10
|
+
const removeComments = str => str.replaceAll(/\/\*[\s\S]*?\*\/|([^:]|^)\/\/.*$/gm, "");
|
11
|
+
|
12
|
+
glob.sync(path.join(process.cwd(), "src/**/*.css")).forEach(file => {
|
13
|
+
let content = removeComments(String(fs.readFileSync(file)));
|
14
|
+
tags.forEach(tag => {
|
15
|
+
if (content.match(new RegExp(`(^|[^\.\-_A-Za-z0-9"\[])(${tag})([^\-_A-Za-z0-9]|$)`, "g"))) {
|
16
|
+
errors.push(`${tag} found in ${file}`);
|
17
|
+
}
|
18
|
+
});
|
19
|
+
});
|
20
|
+
|
21
|
+
glob.sync(path.join(process.cwd(), "src/**/*.ts")).forEach(file => {
|
22
|
+
let content = removeComments(String(fs.readFileSync(file)));
|
23
|
+
tags.forEach(tag => {
|
24
|
+
if (content.match(new RegExp(`querySelector[A-Za-z]*..${tag}`, "g"))) {
|
25
|
+
errors.push(`querySelector for ${tag} found in ${file}`);
|
26
|
+
}
|
27
|
+
});
|
28
|
+
});
|
29
|
+
|
30
|
+
if (errors.length) {
|
31
|
+
throw new Error(`Scoping-related errors found (f.e. used ui5-input instead of [ui5-input]): \n ${errors.join("\n")}`);
|
32
|
+
}
|
@@ -0,0 +1,65 @@
|
|
1
|
+
const fs = require("fs");
|
2
|
+
const glob = require("glob");
|
3
|
+
const path = require("path");
|
4
|
+
const process = require("process");
|
5
|
+
|
6
|
+
const projectPath = process.argv[2];
|
7
|
+
|
8
|
+
// gather all tags from all files
|
9
|
+
const tagsToFiles = new Map();
|
10
|
+
const filesToTags = new Map();
|
11
|
+
|
12
|
+
let files = [
|
13
|
+
...glob.sync(path.join("packages/main/src/**/*.js")),
|
14
|
+
...glob.sync(path.join("packages/fiori/src/**/*.js")),
|
15
|
+
];
|
16
|
+
files.forEach(file => {
|
17
|
+
let matches = file.match(/([a-zA-Z0-9_]+)\.js$/);
|
18
|
+
const name = matches[1];
|
19
|
+
|
20
|
+
const content = `${fs.readFileSync(file)}`;
|
21
|
+
matches = content.match(/tag: "(.*?)",/);
|
22
|
+
if (matches) {
|
23
|
+
const tag = matches[1];
|
24
|
+
tagsToFiles.set(tag, name);
|
25
|
+
filesToTags.set(name, tag);
|
26
|
+
}
|
27
|
+
});
|
28
|
+
|
29
|
+
// Process the package
|
30
|
+
files = glob.sync(path.join(projectPath, "src/**/*.js"));
|
31
|
+
tagsToFiles.forEach((file, tag) => {
|
32
|
+
const sourcePath = path.join(projectPath, "src/", `${file}.js`);
|
33
|
+
if (!fs.existsSync(sourcePath)) {
|
34
|
+
return;
|
35
|
+
}
|
36
|
+
const sourceContent = `${fs.readFileSync(sourcePath)}`.split("\n").join(" ");
|
37
|
+
|
38
|
+
const hbsPath = path.join(projectPath, "src/", `${file}.hbs`);
|
39
|
+
const hbsContent = fs.existsSync(hbsPath) ? `${fs.readFileSync(hbsPath)}` : "";
|
40
|
+
|
41
|
+
const hbsPopoverPath = path.join(projectPath, "src/", `${file}Popover.hbs`);
|
42
|
+
const hbsPopoverContent = fs.existsSync(hbsPopoverPath) ? `${fs.readFileSync(hbsPopoverPath)}` : "";
|
43
|
+
|
44
|
+
// deps
|
45
|
+
let deps = [];
|
46
|
+
let matches = sourceContent.match(/static get dependencies\(\) \{\s+return \[(.*?)\]/);
|
47
|
+
if (matches) {
|
48
|
+
deps = matches[1].split(",").map(x => x.trim()).filter(x => !!x);
|
49
|
+
}
|
50
|
+
|
51
|
+
// tags
|
52
|
+
matches = [
|
53
|
+
...hbsContent.matchAll(/<ui5-[a-z0-9-]+/g),
|
54
|
+
...hbsPopoverContent.matchAll(/<ui5-[a-z0-9-]+/g),
|
55
|
+
];
|
56
|
+
if (matches) {
|
57
|
+
matches.forEach(match => {
|
58
|
+
const tagUsed = match[0].substr(1);
|
59
|
+
const dep = tagsToFiles.get(tagUsed);
|
60
|
+
if (!deps.includes(dep)) {
|
61
|
+
console.log(`${file} used ${tagUsed}`);
|
62
|
+
}
|
63
|
+
});
|
64
|
+
}
|
65
|
+
});
|
@@ -0,0 +1,28 @@
|
|
1
|
+
const fs = require("fs");
|
2
|
+
const glob = require("glob");
|
3
|
+
const path = require("path");
|
4
|
+
const process = require("process");
|
5
|
+
|
6
|
+
// gather all tags from all files
|
7
|
+
const tags = new Set();
|
8
|
+
const files = glob.sync(path.join(process.argv[2], "src/**/*.js"));
|
9
|
+
files.forEach(file => {
|
10
|
+
const content = `${fs.readFileSync(file)}`;
|
11
|
+
const matches = content.match(/tag: "(.*?)",/);
|
12
|
+
if (matches) {
|
13
|
+
tags.add(matches[1]);
|
14
|
+
}
|
15
|
+
});
|
16
|
+
|
17
|
+
// report all usages of any tag within any file, which is not the tag definition and is not hasAttribute
|
18
|
+
files.forEach(file => {
|
19
|
+
const content = `${fs.readFileSync(file)}`;
|
20
|
+
const lines = content.split("\n");
|
21
|
+
lines.forEach(line => {
|
22
|
+
tags.forEach(tag => {
|
23
|
+
if (line.includes(`"${tag}"`) && !line.includes(`tag: "${tag}",`) && !line.includes(`hasAttribute("${tag}")`)) {
|
24
|
+
console.log(`${file}: ${line.trim()}`);
|
25
|
+
}
|
26
|
+
});
|
27
|
+
});
|
28
|
+
});
|
@@ -0,0 +1,41 @@
|
|
1
|
+
const fs = require("fs");
|
2
|
+
const path = require("path");
|
3
|
+
const glob = require("glob");
|
4
|
+
const getAllTags = require("./get-all-tags.js");
|
5
|
+
|
6
|
+
const root = process.argv[2];
|
7
|
+
const suffix = process.argv[3];
|
8
|
+
|
9
|
+
const tags = getAllTags(process.cwd());
|
10
|
+
|
11
|
+
// Replaces tags in HTML content, f.e. <ui5-button> with <ui5-button-ver> or </ui5-button> with </ui5-button-ver>
|
12
|
+
const replaceTagsHTML = content => {
|
13
|
+
tags.forEach(tag => {
|
14
|
+
content = content.replace(new RegExp(`(<\/?)(${tag})(\/?[> \t\n])`, "g"), `$1$2-${suffix}$3`);
|
15
|
+
});
|
16
|
+
return content;
|
17
|
+
};
|
18
|
+
|
19
|
+
// Replace tags in any content
|
20
|
+
const replaceTagsAny = content => {
|
21
|
+
console.log(tags.length);
|
22
|
+
tags.forEach(tag => {
|
23
|
+
content = content.replace(new RegExp(`(^|[^\-_A-Za-z0-9])(${tag})([^\-_A-Za-z0-9]|$)`, "g"), `$1$2-${suffix}$3`);
|
24
|
+
});
|
25
|
+
return content;
|
26
|
+
};
|
27
|
+
|
28
|
+
// Replace bundle names and HTML tag names in test pages
|
29
|
+
glob.sync(path.join(root, "/**/*.html")).forEach(file => {
|
30
|
+
let content = String(fs.readFileSync(file));
|
31
|
+
content = content.replace("%VITE_BUNDLE_PATH%", "%VITE_BUNDLE_PATH_SCOPED%");
|
32
|
+
content = replaceTagsHTML(content);
|
33
|
+
fs.writeFileSync(file, content);
|
34
|
+
});
|
35
|
+
|
36
|
+
// Replace tag names everywhere
|
37
|
+
glob.sync(path.join(root, "/**/*.{html,css,js}")).forEach(file => {
|
38
|
+
let content = String(fs.readFileSync(file));
|
39
|
+
content = replaceTagsAny(content);
|
40
|
+
fs.writeFileSync(file, content);
|
41
|
+
});
|