primevue-mirror/app.vue

82 lines
2.5 KiB
Vue
Raw Normal View History

2022-09-06 11:52:18 +00:00
<template>
2022-09-14 14:26:41 +00:00
<NuxtLayout :name="layout">
<NuxtPage />
</NuxtLayout>
2022-09-06 11:52:18 +00:00
</template>
2022-09-06 13:53:29 +00:00
<script>
2022-09-09 10:25:14 +00:00
import EventBus from '@/layouts/AppEventBus';
import NewsService from '@/service/NewsService';
2022-09-09 14:35:31 +00:00
2022-09-09 10:25:14 +00:00
export default {
themeChangeListener: null,
newsActivate: null,
newsService: null,
data() {
return {
2022-09-13 11:29:45 +00:00
storageKey: 'primevue',
2022-09-14 14:26:41 +00:00
layout: 'custom'
};
2022-09-13 11:29:45 +00:00
},
watch: {
$route: {
immediate: true,
handler(to) {
if (to.name === 'index') {
2022-09-14 14:26:41 +00:00
this.layout = 'custom';
} else {
2022-09-13 11:29:45 +00:00
this.layout = 'default';
}
}
2022-09-09 10:25:14 +00:00
}
},
created() {
this.newsService = new NewsService();
},
mounted() {
this.newsActivate = () => {
2022-09-14 14:26:41 +00:00
this.newsService.fetchNews().then((data) => {
2022-09-09 10:25:14 +00:00
this.$appState.announcement = data;
2022-09-06 13:53:29 +00:00
2022-09-09 10:25:14 +00:00
const itemString = localStorage.getItem(this.storageKey);
2022-12-08 12:26:57 +00:00
2022-09-09 10:25:14 +00:00
if (itemString) {
const item = JSON.parse(itemString);
2022-12-08 12:26:57 +00:00
2022-09-09 10:25:14 +00:00
if (item.hiddenNews && item.hiddenNews !== data.id) {
this.$appState.newsActive = true;
2022-09-14 14:26:41 +00:00
} else this.$appState.newsActive = false;
} else {
2022-09-09 10:25:14 +00:00
this.$appState.newsActive = true;
}
});
};
this.themeChangeListener = (event) => {
const elementId = 'theme-link';
const linkElement = document.getElementById(elementId);
const cloneLinkElement = linkElement.cloneNode(true);
const newThemeUrl = linkElement.getAttribute('href').replace(this.$appState.theme, event.theme);
cloneLinkElement.setAttribute('id', elementId + '-clone');
cloneLinkElement.setAttribute('href', newThemeUrl);
cloneLinkElement.addEventListener('load', () => {
linkElement.remove();
cloneLinkElement.setAttribute('id', elementId);
});
linkElement.parentNode.insertBefore(cloneLinkElement, linkElement.nextSibling);
2022-09-14 14:26:41 +00:00
2022-09-09 10:25:14 +00:00
this.$appState.theme = event.theme;
this.$appState.darkTheme = event.dark;
};
EventBus.on('theme-change', this.themeChangeListener);
EventBus.on('news-activate', this.newsActivate);
},
beforeUnmount() {
EventBus.off('theme-change', this.themeChangeListener);
EventBus.off('news-activate', this.newsActivate);
}
2022-09-14 14:26:41 +00:00
};
</script>