Prevent unnecessary switch
parent
032a6a8355
commit
9e13aaf342
12
app.vue
12
app.vue
|
@ -22,13 +22,11 @@ export default {
|
|||
},
|
||||
mounted() {
|
||||
this.themeChangeListener = (event) => {
|
||||
if (event.theme !== this.$appState.theme) {
|
||||
this.$primevue.changeTheme(this.$appState.theme, event.theme, 'theme-link', () => {
|
||||
this.$appState.theme = event.theme;
|
||||
this.$appState.darkTheme = event.dark;
|
||||
EventBus.emit('theme-change-complete', { theme: event.theme, dark: event.dark });
|
||||
});
|
||||
}
|
||||
this.$primevue.changeTheme(this.$appState.theme, event.theme, 'theme-link', () => {
|
||||
this.$appState.theme = event.theme;
|
||||
this.$appState.darkTheme = event.dark;
|
||||
EventBus.emit('theme-change-complete', { theme: event.theme, dark: event.dark });
|
||||
});
|
||||
};
|
||||
|
||||
EventBus.on('theme-change', this.themeChangeListener);
|
||||
|
|
|
@ -157,21 +157,23 @@ export function usePrimeVue() {
|
|||
}
|
||||
|
||||
function switchTheme(currentTheme, newTheme, linkElementId, callback) {
|
||||
const linkElement = document.getElementById(linkElementId);
|
||||
const cloneLinkElement = linkElement.cloneNode(true);
|
||||
const newThemeUrl = linkElement.getAttribute('href').replace(currentTheme, newTheme);
|
||||
if (currentTheme !== newTheme) {
|
||||
const linkElement = document.getElementById(linkElementId);
|
||||
const cloneLinkElement = linkElement.cloneNode(true);
|
||||
const newThemeUrl = linkElement.getAttribute('href').replace(currentTheme, newTheme);
|
||||
|
||||
cloneLinkElement.setAttribute('id', linkElementId + '-clone');
|
||||
cloneLinkElement.setAttribute('href', newThemeUrl);
|
||||
cloneLinkElement.addEventListener('load', () => {
|
||||
linkElement.remove();
|
||||
cloneLinkElement.setAttribute('id', linkElementId);
|
||||
cloneLinkElement.setAttribute('id', linkElementId + '-clone');
|
||||
cloneLinkElement.setAttribute('href', newThemeUrl);
|
||||
cloneLinkElement.addEventListener('load', () => {
|
||||
linkElement.remove();
|
||||
cloneLinkElement.setAttribute('id', linkElementId);
|
||||
|
||||
if (callback) {
|
||||
callback();
|
||||
}
|
||||
});
|
||||
linkElement.parentNode && linkElement.parentNode.insertBefore(cloneLinkElement, linkElement.nextSibling);
|
||||
if (callback) {
|
||||
callback();
|
||||
}
|
||||
});
|
||||
linkElement.parentNode && linkElement.parentNode.insertBefore(cloneLinkElement, linkElement.nextSibling);
|
||||
}
|
||||
}
|
||||
|
||||
export default {
|
||||
|
|
Loading…
Reference in New Issue