@ui5/webcomponents-tools 0.0.0-b132dd7b9 → 0.0.0-b3a4f8020
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 +501 -0
- package/LICENSE.txt +201 -0
- package/README.md +7 -7
- package/bin/dev.js +10 -4
- package/bin/ui5nps.js +301 -0
- package/components-package/nps.js +97 -94
- package/components-package/wdio.js +8 -2
- package/icons-collection/nps.js +30 -21
- package/lib/amd-to-es6/index.js +17 -10
- package/lib/cem/cem.js +16 -0
- package/lib/cem/custom-elements-manifest.config.mjs +56 -4
- package/lib/cem/merge.mjs +220 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/cli.js +128 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/package.json +59 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/browser-entrypoint.js +23 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/create.js +117 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/arrow-function.js +26 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/class-jsdoc.js +157 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/classes.js +20 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createArrowFunction.js +17 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createAttribute.js +24 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClass.js +301 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClassField.js +26 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createFunctionLike.js +73 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createMixin.js +33 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createVariable.js +22 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/handlers.js +338 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/custom-elements-define-calls.js +90 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/exports.js +156 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/function-like.js +24 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/mixins.js +29 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/reexported-wrapped-mixin-exports.js +84 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/variables.js +34 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/collect-phase/collect-imports.js +101 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/catalyst.js +11 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/controller.js +34 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/catalyst.js +11 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/controller.js +34 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/attr.js +53 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/custom-element-decorator.js +36 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/fast/fast.js +7 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/lit.js +13 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/member-denylist.js +21 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/method-denylist.js +20 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/property-decorator.js +94 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/static-properties.js +121 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/utils.js +66 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/stencil/stencil.js +129 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/index.js +80 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/cleanup-classes.js +25 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/field-denylist.js +22 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/method-denylist.js +25 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/apply-inheritance.js +78 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/is-custom-element.js +34 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/link-class-to-tagname.js +27 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/remove-unexported-declarations.js +23 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/resolve-initializers.js +52 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/ast-helpers.js +186 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/cli-helpers.js +164 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/exports.js +44 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/find-external-manifests.js +67 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/imports.js +25 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/index.js +71 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/jsdoc.js +19 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/manifest-helpers.js +194 -0
- package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/mixins.js +112 -0
- package/lib/cem/schema-internal.json +41 -1
- package/lib/cem/schema.json +41 -1
- package/lib/cem/types-internal.d.ts +32 -2
- package/lib/cem/types.d.ts +32 -2
- package/lib/cem/utils.mjs +13 -3
- package/lib/cem/validate.js +61 -47
- package/lib/chokidar/chokidar.js +28 -0
- package/lib/copy-and-watch/index.js +110 -97
- package/lib/copy-list/index.js +18 -10
- package/lib/create-icons/index.js +19 -15
- package/lib/create-illustrations/index.js +57 -29
- package/lib/create-new-component/index.js +5 -3
- package/lib/css-processors/css-processor-components.mjs +85 -60
- package/lib/css-processors/css-processor-themes.mjs +105 -57
- package/lib/css-processors/postcss-plugin.mjs +153 -0
- package/lib/css-processors/scope-variables.mjs +26 -1
- package/lib/css-processors/shared.mjs +8 -17
- package/lib/dev-server/dev-server.mjs +23 -11
- package/lib/eslint/eslint.js +44 -0
- package/lib/generate-js-imports/illustrations.js +55 -54
- package/lib/generate-json-imports/i18n.js +22 -11
- package/lib/generate-json-imports/themes.js +24 -12
- package/lib/i18n/defaults.js +14 -7
- package/lib/i18n/toJSON.js +40 -12
- package/lib/icons-hash/icons-hash.mjs +149 -0
- package/lib/remove-dev-mode/remove-dev-mode.mjs +38 -24
- package/lib/rimraf/rimraf.js +31 -0
- package/lib/test-runner/test-runner.js +56 -48
- package/lib/vite-bundler/vite-bundler.mjs +35 -0
- package/package.json +15 -14
|
@@ -2,6 +2,8 @@ const fs = require("fs");
|
|
|
2
2
|
const prompts = require("prompts");
|
|
3
3
|
const Component = require("./Component.js");
|
|
4
4
|
const ComponentTemplate= require("./ComponentTemplate.js");
|
|
5
|
+
const dotenv = require('dotenv');
|
|
6
|
+
dotenv.config();
|
|
5
7
|
|
|
6
8
|
/**
|
|
7
9
|
* Hyphanates the given PascalCase string and adds prefix, f.e.:
|
|
@@ -11,7 +13,7 @@ const ComponentTemplate= require("./ComponentTemplate.js");
|
|
|
11
13
|
const hyphaneteComponentName = (componentName) => {
|
|
12
14
|
const result = componentName.replace(/([a-z])([A-Z])/g, '$1-$2' ).toLowerCase();
|
|
13
15
|
|
|
14
|
-
return
|
|
16
|
+
return `${process.env.UI5_TAG_NAME_PREFIX ?? "my"}-${result}`;
|
|
15
17
|
};
|
|
16
18
|
|
|
17
19
|
/**
|
|
@@ -62,7 +64,7 @@ const generateFiles = (componentName, tagName, library, packageName) => {
|
|
|
62
64
|
const filePaths = {
|
|
63
65
|
"main": `./src/${componentName}.ts`,
|
|
64
66
|
"css": `./src/themes/${componentName}.css`,
|
|
65
|
-
"template": `./src/${componentName}Template.tsx`,
|
|
67
|
+
"template": `./src/${componentName}${process.env.UI5_TEMPLATE_FILENAME_SUFFIX ?? "Template"}.tsx`,
|
|
66
68
|
};
|
|
67
69
|
|
|
68
70
|
fs.writeFileSync(filePaths.main, Component(componentName, tagName, library, packageName), { flag: "wx+" });
|
|
@@ -75,7 +77,7 @@ const generateFiles = (componentName, tagName, library, packageName) => {
|
|
|
75
77
|
|
|
76
78
|
// Change the color of the output
|
|
77
79
|
console.warn('\x1b[33m%s\x1b[0m', `
|
|
78
|
-
Now, import the component in src/bundle.esm.ts via:
|
|
80
|
+
Now, import the component in "src/bundle.esm.ts" via: import "./${componentName}.js";
|
|
79
81
|
And, add it to your HTML: <${tagName}></${tagName}>.`);
|
|
80
82
|
}
|
|
81
83
|
|
|
@@ -6,73 +6,98 @@ import { writeFile, mkdir } from "fs/promises";
|
|
|
6
6
|
import chokidar from "chokidar";
|
|
7
7
|
import scopeVariables from "./scope-variables.mjs";
|
|
8
8
|
import { writeFileIfChanged, getFileContent } from "./shared.mjs";
|
|
9
|
+
import { pathToFileURL } from "url";
|
|
9
10
|
|
|
10
|
-
const tsMode = process.env.UI5_TS === "true";
|
|
11
|
-
const extension = tsMode ? ".css.ts" : ".css.js";
|
|
12
11
|
|
|
13
|
-
const
|
|
14
|
-
const
|
|
15
|
-
const
|
|
12
|
+
const generate = async (argv) => {
|
|
13
|
+
const CSS_VARIABLES_TARGET = process.env.CSS_VARIABLES_TARGET === "host";
|
|
14
|
+
const tsMode = process.env.UI5_TS === "true";
|
|
15
|
+
const extension = tsMode ? ".css.ts" : ".css.js";
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
setup(build) {
|
|
20
|
-
build.initialOptions.write = false;
|
|
17
|
+
const packageJSON = JSON.parse(fs.readFileSync("./package.json"));
|
|
18
|
+
const basePackageJSON = (await import("@ui5/webcomponents-base/package.json", { with: { type: "json" } })).default;
|
|
21
19
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
// scoping
|
|
25
|
-
let newText = scopeVariables(f.text, packageJSON);
|
|
26
|
-
newText = newText.replaceAll(/\\/g, "\\\\"); // Escape backslashes as they might appear in css rules
|
|
27
|
-
await mkdir(path.dirname(f.path), {recursive: true});
|
|
28
|
-
writeFile(f.path, newText);
|
|
20
|
+
const inputFilesGlob = "src/themes/*.css";
|
|
21
|
+
const restArgs = argv.slice(2);
|
|
29
22
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
23
|
+
let customPlugin = {
|
|
24
|
+
name: 'ui5-tools',
|
|
25
|
+
setup(build) {
|
|
26
|
+
build.initialOptions.write = false;
|
|
27
|
+
|
|
28
|
+
build.onEnd(result => {
|
|
29
|
+
result.outputFiles.forEach(async f => {
|
|
30
|
+
let newText
|
|
31
|
+
|
|
32
|
+
if (CSS_VARIABLES_TARGET) {
|
|
33
|
+
newText = f.text;
|
|
34
|
+
} else {
|
|
35
|
+
// scoping
|
|
36
|
+
newText = scopeVariables(f.text, basePackageJSON);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
newText = newText.replaceAll(/\\/g, "\\\\"); // Escape backslashes as they might appear in css rules
|
|
40
|
+
await mkdir(path.dirname(f.path), { recursive: true });
|
|
41
|
+
writeFile(f.path, newText);
|
|
38
42
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
43
|
+
// JS/TS
|
|
44
|
+
const jsPath = f.path.replace(/dist[\/\\]css/, "src/generated/").replace(".css", extension);
|
|
45
|
+
const jsContent = getFileContent(packageJSON.name, "\`" + newText + "\`", true);
|
|
46
|
+
writeFileIfChanged(jsPath, jsContent);
|
|
47
|
+
});
|
|
48
|
+
})
|
|
49
|
+
},
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
const getConfig = async () => {
|
|
53
|
+
const config = {
|
|
54
|
+
entryPoints: await globby(inputFilesGlob),
|
|
55
|
+
bundle: true,
|
|
56
|
+
minify: true,
|
|
57
|
+
outdir: 'dist/css',
|
|
58
|
+
outbase: 'src',
|
|
59
|
+
plugins: [
|
|
60
|
+
customPlugin,
|
|
61
|
+
]
|
|
62
|
+
};
|
|
63
|
+
return config;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
if (restArgs.includes("-w")) {
|
|
67
|
+
let ready;
|
|
68
|
+
let config = await getConfig();
|
|
69
|
+
let ctx = await esbuild.context(config);
|
|
70
|
+
await ctx.watch()
|
|
71
|
+
console.log('watching...')
|
|
72
|
+
|
|
73
|
+
// when new component css files are added, they do not trigger a build as no one directly imports them
|
|
74
|
+
// restart the watch mode with the new entry points if a css file is added.
|
|
75
|
+
const watcher = chokidar.watch(inputFilesGlob);
|
|
76
|
+
watcher.on("ready", () => {
|
|
77
|
+
ready = true; // Initial scan is over -> waiting for new files
|
|
78
|
+
});
|
|
79
|
+
watcher.on("add", async path => {
|
|
80
|
+
if (ready) {
|
|
81
|
+
// new file
|
|
82
|
+
ctx.dispose();
|
|
83
|
+
config = await getConfig();
|
|
84
|
+
ctx = await esbuild.context(config);
|
|
85
|
+
ctx.watch();
|
|
86
|
+
}
|
|
87
|
+
});
|
|
88
|
+
} else {
|
|
89
|
+
const config = await getConfig();
|
|
90
|
+
const result = await esbuild.build(config);
|
|
91
|
+
}
|
|
51
92
|
}
|
|
52
93
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
let config = await getConfig();
|
|
56
|
-
let ctx = await esbuild.context(config);
|
|
57
|
-
await ctx.watch()
|
|
58
|
-
console.log('watching...')
|
|
94
|
+
const filePath = process.argv[1];
|
|
95
|
+
const fileUrl = pathToFileURL(filePath).href;
|
|
59
96
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
const watcher = chokidar.watch(inputFilesGlob);
|
|
63
|
-
watcher.on("ready", () => {
|
|
64
|
-
ready = true; // Initial scan is over -> waiting for new files
|
|
65
|
-
});
|
|
66
|
-
watcher.on("add", async path => {
|
|
67
|
-
if (ready) {
|
|
68
|
-
// new file
|
|
69
|
-
ctx.dispose();
|
|
70
|
-
config = await getConfig();
|
|
71
|
-
ctx = await esbuild.context(config);
|
|
72
|
-
ctx.watch();
|
|
73
|
-
}
|
|
74
|
-
});
|
|
75
|
-
} else {
|
|
76
|
-
const config = await getConfig();
|
|
77
|
-
const result = await esbuild.build(config);
|
|
97
|
+
if (import.meta.url === fileUrl) {
|
|
98
|
+
generate(process.argv)
|
|
78
99
|
}
|
|
100
|
+
|
|
101
|
+
export default {
|
|
102
|
+
_ui5mainFn: generate
|
|
103
|
+
}
|
|
@@ -5,70 +5,118 @@ import * as path from "path";
|
|
|
5
5
|
import { writeFile, mkdir } from "fs/promises";
|
|
6
6
|
import postcss from "postcss";
|
|
7
7
|
import combineDuplicatedSelectors from "../postcss-combine-duplicated-selectors/index.js"
|
|
8
|
-
import
|
|
8
|
+
import postcssPlugin from "./postcss-plugin.mjs";
|
|
9
|
+
import { writeFileIfChanged, getFileContent } from "./shared.mjs";
|
|
9
10
|
import scopeVariables from "./scope-variables.mjs";
|
|
11
|
+
import { pathToFileURL } from "url";
|
|
10
12
|
|
|
11
|
-
const
|
|
12
|
-
const
|
|
13
|
+
const generate = async (argv) => {
|
|
14
|
+
const CSS_VARIABLES_TARGET = process.env.CSS_VARIABLES_TARGET === "host";
|
|
15
|
+
const tsMode = process.env.UI5_TS === "true";
|
|
16
|
+
const extension = tsMode ? ".css.ts" : ".css.js";
|
|
13
17
|
|
|
14
|
-
const packageJSON = JSON.parse(fs.readFileSync("./package.json"))
|
|
18
|
+
const packageJSON = JSON.parse(fs.readFileSync("./package.json"));
|
|
19
|
+
const basePackageJSON = (await import("@ui5/webcomponents-base/package.json", { with: { type: "json" } })).default;
|
|
15
20
|
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
const inputFiles = await globby([
|
|
22
|
+
"src/**/parameters-bundle.css",
|
|
23
|
+
]);
|
|
24
|
+
const restArgs = argv.slice(2);
|
|
18
25
|
|
|
19
|
-
const
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
26
|
+
const saveFiles = async (distPath, css, suffix = "") => {
|
|
27
|
+
await mkdir(path.dirname(distPath), { recursive: true });
|
|
28
|
+
writeFile(distPath.replace(".css", suffix + ".css"), css);
|
|
29
|
+
|
|
30
|
+
// JSON
|
|
31
|
+
const jsonPath = distPath.replace(/dist[\/\\]css/, "dist/generated/assets").replace(".css", suffix + ".css.json");
|
|
32
|
+
await mkdir(path.dirname(jsonPath), { recursive: true });
|
|
33
|
+
writeFileIfChanged(jsonPath, JSON.stringify(css));
|
|
34
|
+
|
|
35
|
+
// JS/TS
|
|
36
|
+
const jsPath = distPath.replace(/dist[\/\\]css/, "src/generated/").replace(".css", suffix + extension);
|
|
37
|
+
const jsContent = getFileContent(packageJSON.name, "\`" + css + "\`");
|
|
38
|
+
writeFileIfChanged(jsPath, jsContent);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const processThemingPackageFile = async (f) => {
|
|
42
|
+
const selector = ':root';
|
|
43
|
+
const result = await postcss().process(f.text, { from: undefined });
|
|
44
|
+
|
|
45
|
+
const newRule = postcss.rule({ selector });
|
|
23
46
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
build.onEnd(result => {
|
|
30
|
-
result.outputFiles.forEach(async f => {
|
|
31
|
-
// remove duplicate selectors
|
|
32
|
-
let newText = await removeDuplicateSelectors(f.text);
|
|
33
|
-
|
|
34
|
-
// strip unnecessary theming-base-content
|
|
35
|
-
newText = stripThemingBaseContent(newText);
|
|
36
|
-
|
|
37
|
-
// scoping
|
|
38
|
-
newText = scopeVariables(newText, packageJSON, f.path);
|
|
39
|
-
await mkdir(path.dirname(f.path), {recursive: true});
|
|
40
|
-
writeFile(f.path, newText);
|
|
41
|
-
|
|
42
|
-
// JSON
|
|
43
|
-
const jsonPath = f.path.replace(/dist[\/\\]css/, "dist/generated/assets").replace(".css", ".css.json");
|
|
44
|
-
await mkdir(path.dirname(jsonPath), {recursive: true});
|
|
45
|
-
writeFileIfChanged(jsonPath, JSON.stringify(newText));
|
|
46
|
-
|
|
47
|
-
// JS/TS
|
|
48
|
-
const jsPath = f.path.replace(/dist[\/\\]css/, "src/generated/").replace(".css", extension);
|
|
49
|
-
const jsContent = getFileContent(packageJSON.name, "\`" + newText + "\`");
|
|
50
|
-
writeFileIfChanged(jsPath, jsContent);
|
|
47
|
+
result.root.walkRules(selector, rule => {
|
|
48
|
+
rule.walkDecls(decl => {
|
|
49
|
+
if (!decl.prop.startsWith('--sapFontUrl')) {
|
|
50
|
+
newRule.append(decl.clone());
|
|
51
|
+
}
|
|
51
52
|
});
|
|
52
|
-
})
|
|
53
|
-
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
return { css: newRule.toString() };
|
|
56
|
+
};
|
|
57
|
+
|
|
58
|
+
const processComponentPackageFile = async (f) => {
|
|
59
|
+
if (CSS_VARIABLES_TARGET) {
|
|
60
|
+
const result = await postcss([
|
|
61
|
+
combineDuplicatedSelectors,
|
|
62
|
+
postcssPlugin
|
|
63
|
+
]).process(f.text, { from: undefined });
|
|
64
|
+
|
|
65
|
+
return { css: result.css };
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
const combined = await postcss([
|
|
70
|
+
combineDuplicatedSelectors,
|
|
71
|
+
]).process(f.text, { from: undefined });
|
|
72
|
+
|
|
73
|
+
return { css: scopeVariables(combined.css, basePackageJSON, f.path) };
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
let scopingPlugin = {
|
|
77
|
+
name: 'scoping',
|
|
78
|
+
setup(build) {
|
|
79
|
+
build.initialOptions.write = false;
|
|
80
|
+
|
|
81
|
+
build.onEnd(result => {
|
|
82
|
+
result.outputFiles.forEach(async f => {
|
|
83
|
+
let { css } = f.path.includes("packages/theming") ? await processThemingPackageFile(f) : await processComponentPackageFile(f);
|
|
84
|
+
|
|
85
|
+
saveFiles(f.path, css);
|
|
86
|
+
});
|
|
87
|
+
})
|
|
88
|
+
},
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const config = {
|
|
92
|
+
entryPoints: inputFiles,
|
|
93
|
+
bundle: true,
|
|
94
|
+
minify: true,
|
|
95
|
+
outdir: 'dist/css',
|
|
96
|
+
outbase: 'src',
|
|
97
|
+
logLevel: process.env.UI5_VERBOSE === "true" ? "warning" : "error",
|
|
98
|
+
plugins: [
|
|
99
|
+
scopingPlugin,
|
|
100
|
+
],
|
|
101
|
+
external: ["*.ttf", "*.woff", "*.woff2"],
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
if (restArgs.includes("-w")) {
|
|
105
|
+
let ctx = await esbuild.context(config);
|
|
106
|
+
console.log('watching...')
|
|
107
|
+
await ctx.watch()
|
|
108
|
+
} else {
|
|
109
|
+
await esbuild.build(config);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
const filePath = process.argv[1];
|
|
114
|
+
const fileUrl = pathToFileURL(filePath).href;
|
|
115
|
+
|
|
116
|
+
if (import.meta.url === fileUrl) {
|
|
117
|
+
generate(process.argv)
|
|
54
118
|
}
|
|
55
119
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
bundle: true,
|
|
59
|
-
minify: true,
|
|
60
|
-
outdir: 'dist/css',
|
|
61
|
-
outbase: 'src',
|
|
62
|
-
plugins: [
|
|
63
|
-
scopingPlugin,
|
|
64
|
-
],
|
|
65
|
-
external: ["*.ttf", "*.woff", "*.woff2"],
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
if (restArgs.includes("-w")) {
|
|
69
|
-
let ctx = await esbuild.context(config);
|
|
70
|
-
await ctx.watch()
|
|
71
|
-
console.log('watching...')
|
|
72
|
-
} else {
|
|
73
|
-
const result = await esbuild.build(config);
|
|
120
|
+
export default {
|
|
121
|
+
_ui5mainFn: generate
|
|
74
122
|
}
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
|
|
2
|
+
import postcss from "postcss";
|
|
3
|
+
|
|
4
|
+
const hostVariables = new Map();
|
|
5
|
+
|
|
6
|
+
const SELECTOR = ":host";
|
|
7
|
+
|
|
8
|
+
const saveVariable = (variable, value, density) => {
|
|
9
|
+
if (!hostVariables.has(variable)) {
|
|
10
|
+
hostVariables.set(variable, {});
|
|
11
|
+
}
|
|
12
|
+
hostVariables.get(variable)[density] = value;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* PostCSS plugin for handling CSS variables across density modes (cozy and compact).
|
|
17
|
+
*
|
|
18
|
+
* The plugin scans CSS for `:host` rules that define density-specific custom properties.
|
|
19
|
+
* Variables declared in a root-level `:host` rule are treated as **cozy** values, while
|
|
20
|
+
* variables declared inside `@container style(--ui5_content_density: compact)` `:host` rules
|
|
21
|
+
* are treated as **compact** values.
|
|
22
|
+
*
|
|
23
|
+
* All discovered variables are merged into a single root `:host` rule. For variables that
|
|
24
|
+
* exist in both modes, the plugin generates a value that uses CSS variable fallbacks to
|
|
25
|
+
* dynamically switch between compact and cozy values based on the active density.
|
|
26
|
+
*
|
|
27
|
+
* Variables that exist in only one mode are preserved, with appropriate fallbacks added
|
|
28
|
+
* when needed.
|
|
29
|
+
*
|
|
30
|
+
* Example input:
|
|
31
|
+
*
|
|
32
|
+
* ```css
|
|
33
|
+
* :host {
|
|
34
|
+
* --my-variable: cozy-value;
|
|
35
|
+
* --cozy-only-variable: cozy-only-value;
|
|
36
|
+
* }
|
|
37
|
+
*
|
|
38
|
+
* @container style(--ui5_content_density: compact) {
|
|
39
|
+
* :host {
|
|
40
|
+
* --my-variable: compact-value;
|
|
41
|
+
* --compact-only-variable: compact-only;
|
|
42
|
+
* }
|
|
43
|
+
* }
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* Output:
|
|
47
|
+
*
|
|
48
|
+
* ```css
|
|
49
|
+
* :host {
|
|
50
|
+
* --my-variable: var(--_ui5-compact-size, compact-value) var(--_ui5-cozy-size, cozy-value);
|
|
51
|
+
* --compact-only-variable: var(--_ui5-compact-size, compact-only) var(--_ui5-cozy-size, initial);
|
|
52
|
+
* --cozy-only-variable: cozy-only-value;
|
|
53
|
+
* }
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* This enables seamless runtime switching between density modes using CSS variables alone.
|
|
57
|
+
*/
|
|
58
|
+
|
|
59
|
+
export default function postcssPlugin() {
|
|
60
|
+
return {
|
|
61
|
+
postcssPlugin: 'postcss-content-density-variables',
|
|
62
|
+
Once(root) {
|
|
63
|
+
let hasRootHost = false;
|
|
64
|
+
let hostRule;
|
|
65
|
+
|
|
66
|
+
root.walkRules((rule) => {
|
|
67
|
+
// Only process :host rules
|
|
68
|
+
if (rule.selector !== SELECTOR) {
|
|
69
|
+
return;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// Handle root-level :host rules (cozy)
|
|
73
|
+
if (rule.parent.type === "root") {
|
|
74
|
+
if (!hasRootHost) {
|
|
75
|
+
hasRootHost = true;
|
|
76
|
+
hostRule = rule;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
rule.walkDecls((decl) => {
|
|
80
|
+
if (decl.prop.startsWith('--')) {
|
|
81
|
+
saveVariable(decl.prop, decl.value, 'cozy');
|
|
82
|
+
decl.remove();
|
|
83
|
+
}
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Handle :host rules inside @container (compact)
|
|
88
|
+
if (rule.parent.type === "atrule") {
|
|
89
|
+
if (rule.parent.params.replaceAll("\s", "") === 'style(--ui5_content_density: compact)'.replaceAll("\s", "")) {
|
|
90
|
+
rule.walkDecls((decl) => {
|
|
91
|
+
if (decl.prop.startsWith('--')) {
|
|
92
|
+
saveVariable(decl.prop, decl.value, 'compact');
|
|
93
|
+
decl.remove();
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
let current = rule;
|
|
100
|
+
// Remove up empty rules
|
|
101
|
+
while (current) {
|
|
102
|
+
if (current.nodes.length === 0) {
|
|
103
|
+
const parent = current.parent;
|
|
104
|
+
current.remove();
|
|
105
|
+
current = parent;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
if (current.type === "root") {
|
|
109
|
+
break;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
if (!hasRootHost) {
|
|
115
|
+
hostRule = postcss.rule({ selector: SELECTOR });
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// Construct merged variable declarations depending on available modes
|
|
119
|
+
for (const [variable, variableData] of hostVariables) {
|
|
120
|
+
if (variableData.cozy && variableData.compact) {
|
|
121
|
+
hostRule.append({
|
|
122
|
+
prop: variable,
|
|
123
|
+
value: `var(--_ui5-compact-size, ${variableData.compact}) var(--_ui5-cozy-size, ${variableData.cozy})`,
|
|
124
|
+
});
|
|
125
|
+
} else if (variableData.compact) {
|
|
126
|
+
|
|
127
|
+
// Use a non-existent variable to always trigger the fallback.
|
|
128
|
+
// Because this variable is never defined, the fallback is used
|
|
129
|
+
// in all cases.
|
|
130
|
+
|
|
131
|
+
// Using `initial` as a fallback can work only for properties
|
|
132
|
+
// that treat it as an invalid value. To avoid this inconsistency,
|
|
133
|
+
// we intentionally reference an undefined variable, which is
|
|
134
|
+
// always considered invalid and undefined.
|
|
135
|
+
hostRule.append({
|
|
136
|
+
prop: variable,
|
|
137
|
+
value: `var(--_ui5-compact-size, ${variableData.compact}) var(--_ui5-cozy-size, var(--_ui5-f2d95f8))`,
|
|
138
|
+
});
|
|
139
|
+
} else {
|
|
140
|
+
hostRule.append({
|
|
141
|
+
prop: variable,
|
|
142
|
+
value: variableData.cozy,
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
root.prepend(hostRule);
|
|
148
|
+
hostVariables.clear();
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
postcssPlugin.postcss = true;
|
|
@@ -30,12 +30,37 @@ const getOverrideVersion = filePath => {
|
|
|
30
30
|
try {
|
|
31
31
|
overrideVersion = require(`${packageName}${path.sep}package.json`).version;
|
|
32
32
|
} catch (e) {
|
|
33
|
-
|
|
33
|
+
if (process.env.UI5_VERBOSE === "true") {
|
|
34
|
+
console.log(`Error requiring package ${packageName}: ${e.message}`);
|
|
35
|
+
}
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
return overrideVersion;
|
|
37
39
|
}
|
|
38
40
|
|
|
41
|
+
/**
|
|
42
|
+
* `packageJSON` should reference the `package.json` of the base package,
|
|
43
|
+
* as it serves as the starting point for every runtime and carries a unique version.
|
|
44
|
+
* The `getScopedVarName` function is also defined in the base package
|
|
45
|
+
* and is consumed by all other packages.
|
|
46
|
+
*
|
|
47
|
+
* Runtime (2.19.0)
|
|
48
|
+
* - base (2.19.0)
|
|
49
|
+
* - At least one of the following packages: ai / main / fiori / compat (2.19.0)
|
|
50
|
+
* - Custom package (x.x.x)
|
|
51
|
+
*
|
|
52
|
+
* It is not possible to have a runtime with the main package at version 2.19.0
|
|
53
|
+
* and the base package at a different version (e.g., 2.18.0),
|
|
54
|
+
* because the main package depends on the base package.
|
|
55
|
+
* Such a mismatch would create a new runtime.
|
|
56
|
+
*
|
|
57
|
+
* Therefore, we can safely assume that the base package version
|
|
58
|
+
* matches the runtime version and can be reliably used for scoping.
|
|
59
|
+
*
|
|
60
|
+
* It is still needed for third-party packages that have not yet migrated to the
|
|
61
|
+
* component-level variable approach.
|
|
62
|
+
*/
|
|
63
|
+
|
|
39
64
|
const scopeVariables = (cssText, packageJSON, inputFile) => {
|
|
40
65
|
const escapeVersion = version => "v" + version?.replaceAll(/[^0-9A-Za-z\-_]/g, "-");
|
|
41
66
|
const versionStr = escapeVersion(getOverrideVersion(inputFile) || packageJSON.version);
|
|
@@ -18,39 +18,30 @@ const writeFileIfChanged = async (fileName, content) => {
|
|
|
18
18
|
const oldContent = await readOldContent(fileName);
|
|
19
19
|
if (content !== oldContent) {
|
|
20
20
|
if (!oldContent) {
|
|
21
|
-
await mkdir(path.dirname(fileName), {recursive: true});
|
|
21
|
+
await mkdir(path.dirname(fileName), { recursive: true });
|
|
22
22
|
}
|
|
23
23
|
return writeFile(fileName, content);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
// strips the unnecessary theming data coming from @sap-theming/theming-base-content and leaves only the css parameters
|
|
28
|
-
const stripThemingBaseContent = css => {
|
|
29
|
-
css = css.replace(/\.sapThemeMeta[\s\S]*?:root/, ":root");
|
|
30
|
-
css = css.replace(/\.background-image.*{.*}/, "");
|
|
31
|
-
css = css.replace(/\.sapContrast[ ]*:root[\s\S]*?}/, "");
|
|
32
|
-
css = css.replace(/--sapFontUrl.*\);?/, "");
|
|
33
|
-
return css;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
|
|
37
27
|
const DEFAULT_THEME = assets.themes.default;
|
|
28
|
+
const CSS_VARIABLES_TARGET = process.env.CSS_VARIABLES_TARGET === "host";
|
|
38
29
|
|
|
39
30
|
const getDefaultThemeCode = packageName => {
|
|
40
|
-
|
|
31
|
+
return `import { registerThemePropertiesLoader } from "@ui5/webcomponents-base/dist/asset-registries/Themes.js";
|
|
41
32
|
|
|
42
33
|
import defaultThemeBase from "@ui5/webcomponents-theming/dist/generated/themes/${DEFAULT_THEME}/parameters-bundle.css.js";
|
|
43
34
|
import defaultTheme from "./${DEFAULT_THEME}/parameters-bundle.css.js";
|
|
44
35
|
|
|
45
|
-
registerThemePropertiesLoader("@ui5/webcomponents-theming", "${DEFAULT_THEME}", async () => defaultThemeBase);
|
|
46
|
-
registerThemePropertiesLoader("${
|
|
36
|
+
registerThemePropertiesLoader("@" + "ui5" + "/" + "webcomponents-theming", "${DEFAULT_THEME}", async () => defaultThemeBase);
|
|
37
|
+
registerThemePropertiesLoader(${packageName.split("").map(c => `"${c}"`).join(" + ")}, "${DEFAULT_THEME}", async () => defaultTheme${CSS_VARIABLES_TARGET ? ', "host"' : ''});
|
|
47
38
|
`;
|
|
48
39
|
};
|
|
49
40
|
|
|
50
41
|
const getFileContent = (packageName, css, includeDefaultTheme) => {
|
|
51
|
-
|
|
52
|
-
|
|
42
|
+
const defaultTheme = includeDefaultTheme ? getDefaultThemeCode(packageName) : "";
|
|
43
|
+
return `${defaultTheme}export default ${css.trim()}`
|
|
53
44
|
}
|
|
54
45
|
|
|
55
46
|
|
|
56
|
-
export { writeFileIfChanged,
|
|
47
|
+
export { writeFileIfChanged, getFileContent }
|
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
import fs from "fs/promises";
|
|
2
2
|
import { createServer } from 'vite';
|
|
3
3
|
import yargs from 'yargs';
|
|
4
|
-
import { hideBin }
|
|
4
|
+
import { hideBin } from 'yargs/helpers';
|
|
5
|
+
import { pathToFileURL } from "url";
|
|
5
6
|
|
|
6
|
-
const
|
|
7
|
-
.alias("c", "config")
|
|
8
|
-
.argv;
|
|
9
|
-
|
|
10
|
-
const startVite = async (port) => {
|
|
7
|
+
const startVite = async (config, port) => {
|
|
11
8
|
const server = await createServer({
|
|
12
|
-
configFile:
|
|
9
|
+
configFile: config,
|
|
13
10
|
server: {
|
|
14
11
|
port: port,
|
|
15
12
|
strictPort: true,
|
|
@@ -28,7 +25,7 @@ const rmPortFile = async () => {
|
|
|
28
25
|
// exit handler must be sync
|
|
29
26
|
try {
|
|
30
27
|
await fs.rm(".dev-server-port");
|
|
31
|
-
} catch (e) {}
|
|
28
|
+
} catch (e) { }
|
|
32
29
|
process.exit();
|
|
33
30
|
}
|
|
34
31
|
|
|
@@ -36,7 +33,11 @@ const rmPortFile = async () => {
|
|
|
36
33
|
process.on(eventType, rmPortFile);
|
|
37
34
|
});
|
|
38
35
|
|
|
39
|
-
|
|
36
|
+
async function start(outArgv) {
|
|
37
|
+
const argv = yargs(hideBin(outArgv))
|
|
38
|
+
.alias("c", "config")
|
|
39
|
+
.argv;
|
|
40
|
+
|
|
40
41
|
let retries = 10;
|
|
41
42
|
let port = 8080;
|
|
42
43
|
while (retries--) {
|
|
@@ -44,7 +45,7 @@ const rmPortFile = async () => {
|
|
|
44
45
|
await fs.writeFile(".dev-server-port", `${port}`);
|
|
45
46
|
try {
|
|
46
47
|
// execSync(command, {stdio: 'pipe'});
|
|
47
|
-
const server = await startVite(port);
|
|
48
|
+
const server = await startVite(argv.config ?? "", port);
|
|
48
49
|
if (server) {
|
|
49
50
|
// server started, don't try other ports
|
|
50
51
|
break;
|
|
@@ -63,4 +64,15 @@ const rmPortFile = async () => {
|
|
|
63
64
|
// no error normal exit
|
|
64
65
|
// process.exit();
|
|
65
66
|
}
|
|
66
|
-
}
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
const filePath = process.argv[1];
|
|
70
|
+
const fileUrl = pathToFileURL(filePath).href;
|
|
71
|
+
|
|
72
|
+
if (import.meta.url === fileUrl) {
|
|
73
|
+
start(process.argv)
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export default {
|
|
77
|
+
_ui5mainFn: start
|
|
78
|
+
}
|