@descope/web-components-ui 1.0.135 → 1.0.148
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +77 -56
- package/src/baseClasses/createBaseClass.js +18 -16
- package/src/baseClasses/createBaseInputClass.js +14 -8
- package/src/baseClasses/createCssVarImageClass.js +27 -23
- package/src/components/boolean-fields/booleanFieldMixin.js +18 -29
- package/src/components/boolean-fields/commonStyles.js +1 -1
- package/src/components/boolean-fields/descope-boolean-field-internal/BooleanFieldInternal.js +46 -51
- package/src/components/boolean-fields/descope-boolean-field-internal/index.js +1 -1
- package/src/components/boolean-fields/descope-checkbox/CheckboxClass.js +80 -85
- package/src/components/boolean-fields/descope-checkbox/index.js +2 -2
- package/src/components/boolean-fields/descope-switch-toggle/SwitchToggleClass.js +88 -95
- package/src/components/boolean-fields/descope-switch-toggle/index.js +2 -2
- package/src/components/descope-button/ButtonClass.js +57 -47
- package/src/components/descope-button/clickableMixin.js +10 -0
- package/src/components/descope-combo-box/ComboBoxClass.js +156 -160
- package/src/components/descope-container/ContainerClass.js +32 -42
- package/src/components/descope-date-picker/index.js +9 -14
- package/src/components/descope-divider/DividerClass.js +52 -62
- package/src/components/descope-email-field/EmailFieldClass.js +25 -20
- package/src/components/descope-image/ImageClass.js +21 -24
- package/src/components/descope-link/LinkClass.js +31 -35
- package/src/components/descope-loader-linear/LoaderLinearClass.js +31 -36
- package/src/components/descope-loader-radial/LoaderRadialClass.js +23 -30
- package/src/components/descope-logo/LogoClass.js +5 -1
- package/src/components/descope-new-password/NewPasswordClass.js +63 -81
- package/src/components/descope-new-password/descope-new-password-internal/NewPasswordInternal.js +157 -162
- package/src/components/descope-new-password/descope-new-password-internal/componentName.js +1 -1
- package/src/components/descope-new-password/descope-new-password-internal/index.js +3 -3
- package/src/components/descope-new-password/index.js +3 -3
- package/src/components/descope-number-field/NumberFieldClass.js +25 -20
- package/src/components/descope-passcode/PasscodeClass.js +95 -95
- package/src/components/descope-passcode/descope-passcode-internal/PasscodeInternal.js +151 -157
- package/src/components/descope-passcode/descope-passcode-internal/helpers.js +7 -8
- package/src/components/descope-passcode/descope-passcode-internal/index.js +2 -2
- package/src/components/descope-passcode/index.js +2 -2
- package/src/components/descope-password/PasswordClass.js +75 -83
- package/src/components/descope-password/passwordDraggableMixin.js +28 -27
- package/src/components/descope-phone-field/CountryCodes.js +1210 -1210
- package/src/components/descope-phone-field/PhoneFieldClass.js +139 -141
- package/src/components/descope-phone-field/descope-phone-field-internal/PhoneFieldInternal.js +157 -173
- package/src/components/descope-phone-field/helpers.js +3 -3
- package/src/components/descope-text/TextClass.js +25 -29
- package/src/components/descope-text-area/TextAreaClass.js +68 -67
- package/src/components/descope-text-field/TextFieldClass.js +42 -37
- package/src/components/descope-text-field/textFieldMappings.js +40 -55
- package/src/components/descope-totp-image/TotpImageClass.js +5 -1
- package/src/components/descope-upload-file/UploadFileClass.js +202 -0
- package/src/components/descope-upload-file/helpers.js +11 -0
- package/src/components/descope-upload-file/index.js +6 -0
- package/src/constants.js +3 -3
- package/src/helpers/componentHelpers.js +68 -74
- package/src/helpers/index.js +17 -16
- package/src/helpers/mixinsHelpers.js +21 -10
- package/src/helpers/themeHelpers/colorsHelpers.js +18 -18
- package/src/helpers/themeHelpers/componentsThemeManager.js +7 -6
- package/src/helpers/themeHelpers/index.js +114 -124
- package/src/helpers/themeHelpers/resetHelpers.js +16 -16
- package/src/index.cjs.js +3 -3
- package/src/index.d.ts +22 -21
- package/src/index.js +5 -4
- package/src/index.umd.js +14 -13
- package/src/mixins/changeMixin.js +18 -17
- package/src/mixins/componentNameValidationMixin.js +19 -19
- package/src/mixins/createProxy.js +33 -33
- package/src/mixins/createStyleMixin/helpers.js +54 -64
- package/src/mixins/createStyleMixin/index.js +155 -141
- package/src/mixins/draggableMixin.js +61 -61
- package/src/mixins/hoverableMixin.js +11 -13
- package/src/mixins/index.js +6 -6
- package/src/mixins/inputEventsDispatchingMixin.js +61 -60
- package/src/mixins/inputValidationMixin.js +153 -148
- package/src/mixins/lifecycleEventsMixin.js +17 -15
- package/src/mixins/normalizeBooleanAttributesMixin.js +31 -23
- package/src/mixins/portalMixin.js +58 -52
- package/src/mixins/proxyInputMixin.js +138 -132
- package/src/theme/components/button.js +86 -81
- package/src/theme/components/checkbox.js +26 -28
- package/src/theme/components/comboBox.js +32 -31
- package/src/theme/components/container.js +99 -89
- package/src/theme/components/divider.js +30 -31
- package/src/theme/components/emailField.js +20 -19
- package/src/theme/components/image.js +3 -3
- package/src/theme/components/index.js +33 -25
- package/src/theme/components/inputWrapper.js +28 -25
- package/src/theme/components/link.js +29 -36
- package/src/theme/components/loader/index.js +3 -3
- package/src/theme/components/loader/loaderLinear.js +34 -34
- package/src/theme/components/loader/loaderRadial.js +40 -34
- package/src/theme/components/logo.js +4 -4
- package/src/theme/components/newPassword.js +14 -13
- package/src/theme/components/numberField.js +20 -19
- package/src/theme/components/passcode.js +20 -22
- package/src/theme/components/password.js +22 -21
- package/src/theme/components/phoneField.js +23 -23
- package/src/theme/components/switchToggle.js +47 -46
- package/src/theme/components/text.js +72 -72
- package/src/theme/components/textArea.js +27 -25
- package/src/theme/components/textField.js +23 -22
- package/src/theme/components/totpImage.js +4 -4
- package/src/theme/components/uploadFile.js +60 -0
- package/src/theme/globals.js +123 -124
- package/src/theme/index.js +1 -1
- package/dist/cjs/index.cjs.js +0 -5924
- package/dist/cjs/index.cjs.js.map +0 -1
- package/dist/cjs/package.json +0 -1
- package/dist/index.d.ts +0 -51
- package/dist/index.esm.js +0 -6606
- package/dist/index.esm.js.map +0 -1
- package/dist/umd/1018.js +0 -577
- package/dist/umd/1018.js.LICENSE.txt +0 -23
- package/dist/umd/2481.js +0 -1
- package/dist/umd/3208.js +0 -2
- package/dist/umd/3208.js.LICENSE.txt +0 -5
- package/dist/umd/3585.js +0 -1
- package/dist/umd/3878.js +0 -1
- package/dist/umd/4201.js +0 -1
- package/dist/umd/422.js +0 -2
- package/dist/umd/422.js.LICENSE.txt +0 -5
- package/dist/umd/4447.js +0 -1
- package/dist/umd/4513.js +0 -1
- package/dist/umd/4803.js +0 -1
- package/dist/umd/541.js +0 -744
- package/dist/umd/541.js.LICENSE.txt +0 -21
- package/dist/umd/5767.js +0 -2
- package/dist/umd/5767.js.LICENSE.txt +0 -15
- package/dist/umd/5806.js +0 -109
- package/dist/umd/5806.js.LICENSE.txt +0 -5
- package/dist/umd/7056.js +0 -48
- package/dist/umd/7056.js.LICENSE.txt +0 -5
- package/dist/umd/7101.js +0 -148
- package/dist/umd/7101.js.LICENSE.txt +0 -11
- package/dist/umd/729.js +0 -1
- package/dist/umd/7824.js +0 -229
- package/dist/umd/7824.js.LICENSE.txt +0 -27
- package/dist/umd/7840.js +0 -356
- package/dist/umd/7840.js.LICENSE.txt +0 -61
- package/dist/umd/8725.js +0 -37
- package/dist/umd/8725.js.LICENSE.txt +0 -11
- package/dist/umd/9211.js +0 -312
- package/dist/umd/9211.js.LICENSE.txt +0 -5
- package/dist/umd/9241.js +0 -1
- package/dist/umd/9314.js +0 -283
- package/dist/umd/9314.js.LICENSE.txt +0 -27
- package/dist/umd/9437.js +0 -19
- package/dist/umd/9437.js.LICENSE.txt +0 -5
- package/dist/umd/9515.js +0 -202
- package/dist/umd/9515.js.LICENSE.txt +0 -11
- package/dist/umd/9789.js +0 -1
- package/dist/umd/boolean-fields-descope-boolean-field-internal-index-js.js +0 -1
- package/dist/umd/boolean-fields-descope-checkbox-index-js.js +0 -1
- package/dist/umd/boolean-fields-descope-switch-toggle-index-js.js +0 -1
- package/dist/umd/descope-button-index-js.js +0 -1
- package/dist/umd/descope-combo-box-index-js.js +0 -1
- package/dist/umd/descope-container-index-js.js +0 -1
- package/dist/umd/descope-date-picker-index-js.js +0 -1
- package/dist/umd/descope-divider-index-js.js +0 -1
- package/dist/umd/descope-email-field-index-js.js +0 -1
- package/dist/umd/descope-image-index-js.js +0 -1
- package/dist/umd/descope-link-index-js.js +0 -1
- package/dist/umd/descope-loader-linear-index-js.js +0 -1
- package/dist/umd/descope-loader-radial-index-js.js +0 -1
- package/dist/umd/descope-logo-index-js.js +0 -1
- package/dist/umd/descope-new-password-descope-new-password-internal-index-js.js +0 -1
- package/dist/umd/descope-new-password-index-js.js +0 -1
- package/dist/umd/descope-number-field-index-js.js +0 -1
- package/dist/umd/descope-passcode-descope-passcode-internal-index-js.js +0 -1
- package/dist/umd/descope-passcode-index-js.js +0 -1
- package/dist/umd/descope-password-index-js.js +0 -1
- package/dist/umd/descope-phone-field-descope-phone-field-internal-index-js.js +0 -1
- package/dist/umd/descope-phone-field-index-js.js +0 -1
- package/dist/umd/descope-text-area-index-js.js +0 -1
- package/dist/umd/descope-text-field-index-js.js +0 -1
- package/dist/umd/descope-text-index-js.js +0 -1
- package/dist/umd/descope-totp-image-index-js.js +0 -1
- package/dist/umd/index.js +0 -1
@@ -1,23 +1,23 @@
|
|
1
1
|
export const componentNameValidationMixin = (superclass) =>
|
2
|
-
|
3
|
-
|
4
|
-
|
2
|
+
class ComponentNameValidationMixinClass extends superclass {
|
3
|
+
#checkComponentName() {
|
4
|
+
const currentComponentName = this.localName;
|
5
5
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
6
|
+
if (!superclass.componentName) {
|
7
|
+
throw Error(
|
8
|
+
`component name is not defined on super class, make sure you have a static get for "componentName"`
|
9
|
+
);
|
10
|
+
}
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
12
|
+
if (currentComponentName !== superclass.componentName) {
|
13
|
+
throw Error(
|
14
|
+
`component name mismatch, expected "${superclass.componentName}", current "${currentComponentName}"`
|
15
|
+
);
|
16
|
+
}
|
17
|
+
}
|
18
18
|
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
19
|
+
init() {
|
20
|
+
super.init?.();
|
21
|
+
this.#checkComponentName();
|
22
|
+
}
|
23
|
+
};
|
@@ -4,49 +4,49 @@ import { forwardProps, syncAttrs } from '../helpers/componentHelpers';
|
|
4
4
|
import { createDispatchEvent } from '../helpers/mixinsHelpers';
|
5
5
|
|
6
6
|
export const createProxy = ({
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
7
|
+
componentName,
|
8
|
+
wrappedEleName,
|
9
|
+
slots = [],
|
10
|
+
style,
|
11
|
+
excludeAttrsSync = [],
|
12
|
+
includeAttrsSync = [],
|
13
|
+
includeForwardProps = [],
|
14
14
|
}) => {
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
15
|
+
class ProxyClass extends createBaseClass({ componentName, baseSelector: wrappedEleName }) {
|
16
|
+
#dispatchBlur = createDispatchEvent.bind(this, 'blur');
|
17
|
+
|
18
|
+
#dispatchFocus = createDispatchEvent.bind(this, 'focus');
|
19
|
+
|
20
|
+
constructor() {
|
21
|
+
super().attachShadow({ mode: 'open', delegatesFocus: true }).innerHTML = `
|
22
|
+
<style id="create-proxy">${isFunction(style) ? style() : style}</style>
|
23
23
|
<${wrappedEleName}>
|
24
24
|
<slot></slot>
|
25
25
|
${slots.map((slot) => `<slot name="${slot}" slot="${slot}"></slot>`).join('')}
|
26
26
|
</${wrappedEleName}>
|
27
27
|
`;
|
28
|
-
|
28
|
+
}
|
29
29
|
|
30
|
-
|
31
|
-
|
30
|
+
init() {
|
31
|
+
super.init?.();
|
32
32
|
|
33
|
-
|
34
|
-
|
35
|
-
|
33
|
+
this.baseElement.addEventListener('blur', (_) => {
|
34
|
+
this.#dispatchBlur();
|
35
|
+
});
|
36
36
|
|
37
|
-
|
38
|
-
|
39
|
-
|
37
|
+
this.baseElement.addEventListener('focus', (_) => {
|
38
|
+
this.#dispatchFocus();
|
39
|
+
});
|
40
40
|
|
41
|
-
|
42
|
-
|
41
|
+
// this is needed for components that uses props, such as combo box
|
42
|
+
forwardProps(this.baseElement, this, includeForwardProps);
|
43
43
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
44
|
+
syncAttrs(this.baseElement, this, {
|
45
|
+
excludeAttrs: excludeAttrsSync,
|
46
|
+
includeAttrs: includeAttrsSync,
|
47
|
+
});
|
48
|
+
}
|
49
|
+
}
|
50
50
|
|
51
|
-
|
51
|
+
return ProxyClass;
|
52
52
|
};
|
@@ -2,88 +2,78 @@ import { isFunction, kebabCase } from '../../helpers';
|
|
2
2
|
import { getCssVarName } from '../../helpers/componentHelpers';
|
3
3
|
|
4
4
|
const createCssVarFallback = (first, ...rest) =>
|
5
|
-
|
6
|
-
|
7
|
-
const createCssSelector = (
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
: relativeSelectorOrSelectorFn
|
16
|
-
}`;
|
5
|
+
`var(${first}${rest.length ? ` , ${createCssVarFallback(...rest)}` : ''})`;
|
6
|
+
|
7
|
+
const createCssSelector = (baseSelector = '', relativeSelectorOrSelectorFn = '') =>
|
8
|
+
isFunction(relativeSelectorOrSelectorFn)
|
9
|
+
? relativeSelectorOrSelectorFn(baseSelector)
|
10
|
+
: `${baseSelector}${
|
11
|
+
/^[A-Za-z]/.test(relativeSelectorOrSelectorFn)
|
12
|
+
? ` ${relativeSelectorOrSelectorFn}`
|
13
|
+
: relativeSelectorOrSelectorFn
|
14
|
+
}`;
|
17
15
|
|
18
16
|
class StyleBuilder {
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
''
|
41
|
-
);
|
42
|
-
}
|
17
|
+
constructor() {
|
18
|
+
this.styleMap = new Map();
|
19
|
+
}
|
20
|
+
|
21
|
+
add(selector, property, value) {
|
22
|
+
if (!this.styleMap.has(selector)) {
|
23
|
+
this.styleMap.set(selector, []);
|
24
|
+
}
|
25
|
+
|
26
|
+
this.styleMap.set(selector, [...this.styleMap.get(selector), { property, value }]);
|
27
|
+
}
|
28
|
+
|
29
|
+
toString() {
|
30
|
+
return Array.from(this.styleMap.entries()).reduce((acc, [selector, propValArr]) => {
|
31
|
+
const properties = propValArr
|
32
|
+
.map(({ property, value }) => `${property}: ${value}`)
|
33
|
+
.join(';\n');
|
34
|
+
|
35
|
+
return `${acc}${selector} { \n${properties} \n}\n\n`;
|
36
|
+
}, '');
|
37
|
+
}
|
43
38
|
}
|
44
39
|
|
45
40
|
const normalizeConfig = (attr, config) => {
|
46
|
-
|
41
|
+
const defaultMapping = { selector: '', property: kebabCase(attr) };
|
47
42
|
|
48
|
-
|
43
|
+
if (!config || !Object.keys(config).length) return [defaultMapping];
|
49
44
|
|
50
|
-
|
51
|
-
return config.map((entry) => Object.assign({}, defaultMapping, entry));
|
45
|
+
if (Array.isArray(config)) return config.map((entry) => ({ ...defaultMapping, ...entry }));
|
52
46
|
|
53
|
-
|
47
|
+
return [{ ...defaultMapping, ...config }];
|
54
48
|
};
|
55
49
|
|
56
50
|
export const createStyle = (componentName, baseSelector, mappings) => {
|
57
|
-
|
51
|
+
const style = new StyleBuilder();
|
58
52
|
|
59
|
-
|
60
|
-
|
53
|
+
Object.keys(mappings).forEach((attr) => {
|
54
|
+
const attrConfig = normalizeConfig(attr, mappings[attr]);
|
61
55
|
|
62
|
-
|
56
|
+
const cssVarName = getCssVarName(componentName, attr);
|
63
57
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
);
|
73
|
-
});
|
58
|
+
attrConfig.forEach(({ selector: relativeSelectorOrSelectorFn, property }) => {
|
59
|
+
style.add(
|
60
|
+
createCssSelector(baseSelector, relativeSelectorOrSelectorFn),
|
61
|
+
isFunction(property) ? property() : property,
|
62
|
+
createCssVarFallback(cssVarName)
|
63
|
+
);
|
64
|
+
});
|
65
|
+
});
|
74
66
|
|
75
|
-
|
67
|
+
return style.toString();
|
76
68
|
};
|
77
69
|
|
78
70
|
export const createCssVarsList = (componentName, mappings) =>
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
);
|
71
|
+
Object.keys(mappings).reduce(
|
72
|
+
(acc, attr) => Object.assign(acc, { [attr]: getCssVarName(componentName, attr) }),
|
73
|
+
{}
|
74
|
+
);
|
84
75
|
|
85
76
|
// on some cases we need a selector to be more specific than another
|
86
77
|
// for this we have this fn that generate a class selector multiple times
|
87
|
-
export const createClassSelectorSpecifier = (className, numOfRepeats) =>
|
88
|
-
|
89
|
-
.join('')
|
78
|
+
export const createClassSelectorSpecifier = (className, numOfRepeats) =>
|
79
|
+
Array(numOfRepeats).fill(`.${className}`).join('');
|
@@ -4,146 +4,160 @@ import { getCssVarName, observeAttributes } from '../../helpers/componentHelpers
|
|
4
4
|
import { componentsThemeManager } from '../../helpers/themeHelpers/componentsThemeManager';
|
5
5
|
import { createStyle, createCssVarsList, createClassSelectorSpecifier } from './helpers';
|
6
6
|
|
7
|
-
const STYLE_OVERRIDE_ATTR_PREFIX = 'st'
|
7
|
+
const STYLE_OVERRIDE_ATTR_PREFIX = 'st';
|
8
8
|
|
9
9
|
export const createStyleMixin =
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
10
|
+
({ mappings = {}, componentNameOverride = '' }) =>
|
11
|
+
(superclass) => {
|
12
|
+
const componentName = componentNameOverride || superclass.componentName;
|
13
|
+
|
14
|
+
return class CustomStyleMixinClass extends superclass {
|
15
|
+
static get cssVarList() {
|
16
|
+
return {
|
17
|
+
...superclass.cssVarList,
|
18
|
+
...createCssVarsList(componentName, {
|
19
|
+
...mappings,
|
20
|
+
}),
|
21
|
+
};
|
22
|
+
}
|
23
|
+
|
24
|
+
#overrideStyleEle;
|
25
|
+
|
26
|
+
#themeStyleEle;
|
27
|
+
|
28
|
+
#disconnectThemeManager;
|
29
|
+
|
30
|
+
#componentNameSuffix;
|
31
|
+
|
32
|
+
#themeSection;
|
33
|
+
|
34
|
+
#rootElement;
|
35
|
+
|
36
|
+
#baseSelector;
|
37
|
+
|
38
|
+
#styleAttributes;
|
39
|
+
|
40
|
+
// we are using this mixin also for portalMixin
|
41
|
+
// so we should be able to inject styles to other DOM elements
|
42
|
+
// this is why we need to support these overrides
|
43
|
+
constructor({
|
44
|
+
getRootElement,
|
45
|
+
componentNameSuffix = '',
|
46
|
+
themeSection = BASE_THEME_SECTION,
|
47
|
+
baseSelector,
|
48
|
+
} = {}) {
|
49
|
+
super();
|
50
|
+
this.#componentNameSuffix = componentNameSuffix;
|
51
|
+
this.#themeSection = themeSection;
|
52
|
+
this.#rootElement = getRootElement?.(this) || this.shadowRoot;
|
53
|
+
this.#baseSelector = baseSelector ?? this.baseSelector;
|
54
|
+
|
55
|
+
this.#styleAttributes = Object.keys(mappings).map((key) =>
|
56
|
+
kebabCaseJoin(STYLE_OVERRIDE_ATTR_PREFIX, componentNameSuffix, key)
|
57
|
+
);
|
58
|
+
|
59
|
+
this.#createMappingStyle();
|
60
|
+
this.#createComponentTheme();
|
61
|
+
this.#createOverridesStyle();
|
62
|
+
}
|
63
|
+
|
64
|
+
// eslint-disable-next-line class-methods-use-this
|
65
|
+
get #componentTheme() {
|
66
|
+
return componentsThemeManager.currentTheme?.[componentName] || '';
|
67
|
+
}
|
68
|
+
|
69
|
+
#onComponentThemeChange() {
|
70
|
+
this.#themeStyleEle.innerHTML = this.#componentTheme[this.#themeSection];
|
71
|
+
}
|
72
|
+
|
73
|
+
#createComponentTheme() {
|
74
|
+
this.#themeStyleEle = document.createElement('style');
|
75
|
+
this.#themeStyleEle.id = `style-mixin-theme__${componentName}`;
|
76
|
+
this.#rootElement.prepend(this.#themeStyleEle);
|
77
|
+
this.#disconnectThemeManager = componentsThemeManager.onCurrentThemeChange(
|
78
|
+
this.#onComponentThemeChange.bind(this)
|
79
|
+
);
|
80
|
+
this.#onComponentThemeChange();
|
81
|
+
}
|
82
|
+
|
83
|
+
#createOverridesStyle() {
|
84
|
+
if (this.#styleAttributes.length) {
|
85
|
+
this.#overrideStyleEle = document.createElement('style');
|
86
|
+
this.#overrideStyleEle.id = `style-mixin-overrides__${componentName}`;
|
87
|
+
|
88
|
+
const classSpecifier = createClassSelectorSpecifier(
|
89
|
+
componentName,
|
90
|
+
CSS_SELECTOR_SPECIFIER_MULTIPLY
|
91
|
+
);
|
92
|
+
|
93
|
+
this.#overrideStyleEle.innerText = `:host(${classSpecifier}) {}`;
|
94
|
+
this.#rootElement.append(this.#overrideStyleEle);
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
#setAttrOverride(attrName, value) {
|
99
|
+
const style = this.#overrideStyleEle?.sheet?.cssRules[0].style;
|
100
|
+
if (!style) return;
|
101
|
+
|
102
|
+
const varName = getCssVarName(
|
103
|
+
componentName,
|
104
|
+
attrName.replace(new RegExp(`^${STYLE_OVERRIDE_ATTR_PREFIX}-`), '')
|
105
|
+
);
|
106
|
+
|
107
|
+
if (value) style?.setProperty(varName, value);
|
108
|
+
else {
|
109
|
+
style?.removeProperty(varName);
|
110
|
+
this.removeAttribute(attrName);
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
#updateOverridesStyle(attrs = []) {
|
115
|
+
let shouldUpdate = false;
|
116
|
+
|
117
|
+
attrs.forEach((attr) => {
|
118
|
+
if (this.#styleAttributes.includes(attr)) {
|
119
|
+
this.#setAttrOverride(attr, this.getAttribute(attr));
|
120
|
+
shouldUpdate = true;
|
121
|
+
}
|
122
|
+
});
|
123
|
+
|
124
|
+
if (shouldUpdate) {
|
125
|
+
// we are rewriting the style back to the style tag
|
126
|
+
this.#overrideStyleEle.innerHTML = this.#overrideStyleEle?.sheet?.cssRules[0].cssText;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
|
130
|
+
#createMappingStyle() {
|
131
|
+
if (Object.keys(mappings).length) {
|
132
|
+
const themeStyle = document.createElement('style');
|
133
|
+
themeStyle.id = `style-mixin-mappings__${componentName}`;
|
134
|
+
themeStyle.innerHTML = createStyle(
|
135
|
+
kebabCaseJoin(componentName, this.#componentNameSuffix),
|
136
|
+
this.#baseSelector,
|
137
|
+
mappings
|
138
|
+
);
|
139
|
+
this.#rootElement.prepend(themeStyle);
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
#addClassName(className) {
|
144
|
+
(this.#rootElement.classList || this.#rootElement.host.classList).add(className);
|
145
|
+
}
|
146
|
+
|
147
|
+
init() {
|
148
|
+
super.init?.();
|
149
|
+
if (this.shadowRoot.isConnected) {
|
150
|
+
this.#addClassName(componentName);
|
151
|
+
|
152
|
+
// this is instead attributeChangedCallback because we cannot use static methods in this case
|
153
|
+
observeAttributes(this, this.#updateOverridesStyle.bind(this), {});
|
154
|
+
}
|
155
|
+
}
|
156
|
+
|
157
|
+
disconnectedCallback() {
|
158
|
+
super.disconnectedCallback?.();
|
159
|
+
|
160
|
+
this.#disconnectThemeManager?.();
|
161
|
+
}
|
162
|
+
};
|
163
|
+
};
|