fix(ThemeManager): Refactor ThemeManager class to separate global style setting logic

This commit is contained in:
Philipp Kunz 2024-10-21 17:25:08 +02:00
parent 33721f86ab
commit a20b321bb0
3 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## 2024-10-21 - 2.0.65 - fix(ThemeManager)
Refactor ThemeManager class to separate global style setting logic
- Moved logic to set global styles into a dedicated function setGlobalStylesOnPurpose in ThemeManager.
## 2024-10-06 - 2.0.64 - fix(pluginexports) ## 2024-10-06 - 2.0.64 - fix(pluginexports)
Add missing import for smartrouter in pluginexports. Add missing import for smartrouter in pluginexports.

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@design.estate/dees-domtools', name: '@design.estate/dees-domtools',
version: '2.0.64', version: '2.0.65',
description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.' description: 'A package providing tools to simplify complex CSS structures and web development tasks, featuring TypeScript support and integration with various web technologies.'
} }

View File

@ -21,10 +21,13 @@ export class ThemeManager {
this.updateAllConnectedElements(); this.updateAllConnectedElements();
} }
private async updateAllConnectedElements() { private async setGlobalStylesOnPurpose() {
if (document.body && document.body.style) { if (document.body && document.body.style) {
document.body.style.background = this.goBrightBoolean ? '#fff' : '#000'; document.body.style.background = this.goBrightBoolean ? '#fff' : '#000';
} }
}
private async updateAllConnectedElements() {
this.themeObservable.next(this.goBrightBoolean); this.themeObservable.next(this.goBrightBoolean);
} }