primevue-mirror/components/lib/themes/config/index.js

141 lines
4.7 KiB
JavaScript
Raw Normal View History

import { ThemeService, ThemeUtils } from 'primevue/themes';
2024-03-05 09:22:33 +00:00
export default {
2024-03-13 12:05:23 +00:00
defaults: {
variable: {
prefix: 'p',
2024-03-13 12:05:23 +00:00
selector: ':root',
excludedKeyRegex: /^(primitive|semantic|components|directives|variables|colorscheme|light|dark|common|root|states)$/gi
2024-03-13 12:05:23 +00:00
},
options: {
prefix: 'p',
darkModeSelector: 'system',
2024-03-31 05:10:59 +00:00
cssLayer: false
2024-03-13 12:05:23 +00:00
}
},
_theme: undefined,
2024-03-18 12:23:53 +00:00
_layerNames: new Set(),
2024-03-31 04:44:48 +00:00
_loadedStyleNames: new Set(),
_loadingStyles: new Set(),
_tokens: {},
2024-03-31 04:44:48 +00:00
update(newValues = {}) {
const { theme } = newValues;
2024-03-13 12:05:23 +00:00
2024-03-31 04:44:48 +00:00
if (theme) {
this._theme = {
...theme,
options: {
...this.defaults.options,
...theme.options
}
};
2024-03-31 05:41:28 +00:00
this._tokens = ThemeUtils.createTokens(this.preset, this.defaults);
2024-03-31 04:44:48 +00:00
this.clearLoadedStyleNames();
}
2024-03-13 12:05:23 +00:00
},
get theme() {
2024-03-31 04:44:48 +00:00
return this._theme;
2024-03-13 12:05:23 +00:00
},
get preset() {
return this.theme?.preset || {};
},
get options() {
return this.theme?.options || {};
},
get tokens() {
return this._tokens;
},
getTheme() {
return this.theme;
},
2024-03-13 12:05:23 +00:00
setTheme(newValue) {
2024-03-31 04:44:48 +00:00
this.update({ theme: newValue });
ThemeService.emit('theme:change', newValue);
2024-03-05 09:22:33 +00:00
},
getPreset() {
return this.preset;
2024-03-05 09:22:33 +00:00
},
setPreset(newValue) {
this._theme = { ...this.theme, preset: newValue };
this._tokens = ThemeUtils.createTokens(newValue, this.defaults);
2024-03-31 04:44:48 +00:00
this.clearLoadedStyleNames();
ThemeService.emit('preset:change', newValue);
2024-03-31 04:44:48 +00:00
ThemeService.emit('theme:change', this.theme);
2024-03-12 09:46:43 +00:00
},
2024-03-18 12:23:53 +00:00
getLayerNames() {
return [...this._layerNames];
},
setLayerNames(layerName) {
2024-03-31 04:44:48 +00:00
this._layerNames.add(layerName);
},
getLoadedStyleNames() {
return this._loadedStyleNames;
},
isStyleNameLoaded(name) {
return this._loadedStyleNames.has(name);
},
setLoadedStyleName(name) {
this._loadedStyleNames.add(name);
},
deleteLoadedStyleName(name) {
this._loadedStyleNames.delete(name);
},
clearLoadedStyleNames() {
this._loadedStyleNames.clear();
},
getTokenValue(tokenPath) {
return ThemeUtils.getTokenValue(this.tokens, tokenPath, this.defaults);
2024-03-18 12:23:53 +00:00
},
getCommonCSS(name = '', params) {
return ThemeUtils.getCommon({ name, theme: this.theme, params, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } });
2024-03-13 12:05:23 +00:00
},
getComponentCSS(name = '', params) {
const options = { name, theme: this.theme, params, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } };
2024-03-05 09:22:33 +00:00
2024-03-13 12:05:23 +00:00
return {
variables: ThemeUtils.getPresetC(options)
};
},
getDirectiveCSS(name = '', params) {
const options = { name, theme: this.theme, params, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } };
2024-03-05 09:22:33 +00:00
2024-03-13 12:05:23 +00:00
return {
variables: ThemeUtils.getPresetD(options)
};
},
getPresetCSS(name = '', preset, selector, params) {
const options = { name, preset, options: this.options, selector, params, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } };
2024-05-02 22:12:36 +00:00
return {
variables: ThemeUtils.getPreset(options)
};
},
2024-03-18 10:57:17 +00:00
getLayerOrderCSS(name = '') {
2024-03-21 09:08:51 +00:00
return ThemeUtils.getLayerOrder(name, this.options, { names: this.getLayerNames() }, this.defaults);
2024-03-18 10:57:17 +00:00
},
2024-05-02 22:12:36 +00:00
transformCSS(name = '', css, type = 'style', mode) {
return ThemeUtils.transformCSS(name, css, mode, type, this.options, { layerNames: this.setLayerNames.bind(this) }, this.defaults);
},
getCommonStyleSheet(name = '', params, props = {}) {
return ThemeUtils.getCommonStyleSheet({ name, theme: this.theme, params, props, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } });
2024-03-13 12:05:23 +00:00
},
getStyleSheet(name, params, props = {}) {
return ThemeUtils.getStyleSheet({ name, theme: this.theme, params, props, defaults: this.defaults, set: { layerNames: this.setLayerNames.bind(this) } });
},
onStyleMounted(name) {
this._loadingStyles.add(name);
},
onStyleUpdated(name) {
this._loadingStyles.add(name);
},
onStyleLoaded(event, { name }) {
if (this._loadingStyles.size) {
this._loadingStyles.delete(name);
ThemeService.emit(`theme:${name}:load`, event); // Exp: ThemeService.emit('theme:panel-style:load', event)
!this._loadingStyles.size && ThemeService.emit('theme:load');
}
2024-03-05 09:22:33 +00:00
}
};