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>
|
2023-01-30 22:50:55 +00:00
|
|
|
import News from '@/assets/data/news.json';
|
2023-02-28 08:29:30 +00:00
|
|
|
import EventBus from '@/layouts/AppEventBus';
|
2022-09-09 14:35:31 +00:00
|
|
|
|
2022-09-09 10:25:14 +00:00
|
|
|
export default {
|
|
|
|
themeChangeListener: null,
|
|
|
|
newsActivate: null,
|
2023-02-28 08:29:30 +00:00
|
|
|
newsService: null,
|
2022-09-09 10:25:14 +00:00
|
|
|
data() {
|
|
|
|
return {
|
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
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
2023-01-30 22:50:55 +00:00
|
|
|
this.newsActivate = () => {
|
|
|
|
this.$appState.announcement = News;
|
|
|
|
const itemString = localStorage.getItem(this.$appState.storageKey);
|
2022-12-08 12:26:57 +00:00
|
|
|
|
2023-01-30 22:50:55 +00:00
|
|
|
if (itemString) {
|
|
|
|
const item = JSON.parse(itemString);
|
2022-12-08 12:26:57 +00:00
|
|
|
|
2023-02-28 08:29:30 +00:00
|
|
|
if (!item.hiddenNews || item.hiddenNews !== News.id) {
|
2022-09-09 10:25:14 +00:00
|
|
|
this.$appState.newsActive = true;
|
2023-02-28 08:29:30 +00:00
|
|
|
} else this.$appState.newsActive = false;
|
|
|
|
} else {
|
2023-01-30 22:50:55 +00:00
|
|
|
this.$appState.newsActive = true;
|
|
|
|
}
|
|
|
|
};
|
2022-09-09 10:25:14 +00:00
|
|
|
|
|
|
|
this.themeChangeListener = (event) => {
|
2023-03-03 07:02:10 +00:00
|
|
|
this.$primevue.changeTheme(this.$appState.theme, event.theme, 'theme-link', () => {
|
|
|
|
this.$appState.theme = event.theme;
|
|
|
|
this.$appState.darkTheme = event.dark;
|
2022-09-09 10:25:14 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
EventBus.on('theme-change', this.themeChangeListener);
|
2023-01-30 22:50:55 +00:00
|
|
|
EventBus.on('news-activate', this.newsActivate);
|
2022-09-09 10:25:14 +00:00
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
EventBus.off('theme-change', this.themeChangeListener);
|
2023-01-30 22:50:55 +00:00
|
|
|
EventBus.off('news-activate', this.newsActivate);
|
2022-09-09 10:25:14 +00:00
|
|
|
}
|
2022-09-14 14:26:41 +00:00
|
|
|
};
|
|
|
|
</script>
|
2022-12-09 09:02:20 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
2023-03-04 17:18:40 +00:00
|
|
|
@import '@docsearch/css';
|
2023-02-28 08:29:30 +00:00
|
|
|
@import '@/assets/styles/layout/landing/landing.scss';
|
|
|
|
@import '@/assets/styles/layout/layout.scss';
|
2022-12-09 09:02:20 +00:00
|
|
|
</style>
|