mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-28 11:25:25 +03:00
178 lines
6.0 KiB
Vue
178 lines
6.0 KiB
Vue
<template>
|
|
<div id="dashy" :style="topLevelStyleModifications" :class="subPageClassName">
|
|
<EditModeTopBanner v-if="isEditMode" />
|
|
<LoadingScreen :isLoading="isLoading" v-if="shouldShowSplash" />
|
|
<Header :pageInfo="pageInfo" />
|
|
<router-view v-if="!isFetching" />
|
|
<Footer :text="footerText" v-if="visibleComponents.footer && !isFetching" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
|
|
import Header from '@/components/PageStrcture/Header.vue';
|
|
import Footer from '@/components/PageStrcture/Footer.vue';
|
|
import EditModeTopBanner from '@/components/InteractiveEditor/EditModeTopBanner.vue';
|
|
import LoadingScreen from '@/components/PageStrcture/LoadingScreen.vue';
|
|
import { welcomeMsg } from '@/utils/CoolConsole';
|
|
import ErrorHandler from '@/utils/ErrorHandler';
|
|
import Keys from '@/utils/StoreMutations';
|
|
import {
|
|
localStorageKeys,
|
|
splashScreenTime,
|
|
language as defaultLanguage,
|
|
} from '@/utils/defaults';
|
|
|
|
export default {
|
|
name: 'app',
|
|
components: {
|
|
Header,
|
|
Footer,
|
|
LoadingScreen,
|
|
EditModeTopBanner,
|
|
},
|
|
data() {
|
|
return {
|
|
isLoading: true, // Set to false after mount complete
|
|
isFetching: true, // Set to false after the conf has been fetched
|
|
};
|
|
},
|
|
watch: {
|
|
isEditMode(isEditMode) {
|
|
// When in edit mode, show confirmation dialog on page exit
|
|
window.onbeforeunload = isEditMode ? this.confirmExit : null;
|
|
},
|
|
config() {
|
|
this.isFetching = false;
|
|
},
|
|
},
|
|
computed: {
|
|
/* If the user has specified custom text for footer - get it */
|
|
footerText() {
|
|
return this.pageInfo && this.pageInfo.footerText ? this.pageInfo.footerText : '';
|
|
},
|
|
/* Determine if splash screen should be shown */
|
|
shouldShowSplash() {
|
|
return (this.appConfig.showSplashScreen);
|
|
},
|
|
config() {
|
|
return this.$store.state.config;
|
|
},
|
|
appConfig() {
|
|
return this.$store.getters.appConfig;
|
|
},
|
|
pageInfo() {
|
|
return this.$store.getters.pageInfo;
|
|
},
|
|
sections() {
|
|
return this.$store.getters.pageInfo;
|
|
},
|
|
visibleComponents() {
|
|
return this.$store.getters.visibleComponents;
|
|
},
|
|
isEditMode() {
|
|
return this.$store.state.editMode;
|
|
},
|
|
subPageClassName() {
|
|
const currentSubPage = this.$store.state.currentConfigInfo;
|
|
return (currentSubPage && currentSubPage.pageId) ? currentSubPage.pageId : '';
|
|
},
|
|
topLevelStyleModifications() {
|
|
const vc = this.visibleComponents;
|
|
if (!vc.footer && !vc.pageTitle) {
|
|
return '--footer-height: 1rem;';
|
|
} else if (!vc.footer) {
|
|
return '--footer-height: 5rem;';
|
|
} else if (!vc.pageTitle) {
|
|
return '--footer-height: 4rem;';
|
|
}
|
|
return '';
|
|
},
|
|
},
|
|
methods: {
|
|
/* Injects the users custom CSS as a style tag */
|
|
injectCustomStyles(usersCss) {
|
|
const style = document.createElement('style');
|
|
style.textContent = usersCss;
|
|
document.head.append(style);
|
|
},
|
|
/* Hide splash screen, either after 2 seconds, or immediately based on user preference */
|
|
hideSplash() {
|
|
if (this.shouldShowSplash) {
|
|
setTimeout(() => { this.isLoading = false; }, splashScreenTime || 1000);
|
|
} else {
|
|
this.isLoading = false;
|
|
}
|
|
},
|
|
|
|
/* Auto-detects users language from browser/ os, when not specified */
|
|
autoDetectLanguage(availibleLocales) {
|
|
const isLangSupported = (languageList, userLang) => languageList
|
|
.map(lang => lang.toLowerCase()).find((lang) => lang === userLang.toLowerCase());
|
|
|
|
const usersBorwserLang1 = window.navigator.language || ''; // e.g. en-GB or or ''
|
|
const usersBorwserLang2 = usersBorwserLang1.split('-')[0]; // e.g. en or undefined
|
|
const usersSpairLangs = window.navigator.languages; // e.g [en, en-GB, en-US]
|
|
return isLangSupported(availibleLocales, usersBorwserLang1)
|
|
|| isLangSupported(availibleLocales, usersBorwserLang2)
|
|
|| usersSpairLangs.find((spair) => isLangSupported(availibleLocales, spair))
|
|
|| defaultLanguage;
|
|
},
|
|
|
|
/* Get users language, if not available then call auto-detect */
|
|
getLanguage() {
|
|
const availibleLocales = this.$i18n.availableLocales; // All available locales
|
|
const usersLang = localStorage[localStorageKeys.LANGUAGE] || this.appConfig.language;
|
|
if (usersLang) {
|
|
if (availibleLocales.includes(usersLang)) {
|
|
return usersLang;
|
|
} else {
|
|
ErrorHandler(`Unsupported Language: '${usersLang}'`);
|
|
}
|
|
}
|
|
return this.autoDetectLanguage(availibleLocales);
|
|
},
|
|
|
|
/* Fetch or detect users language, then apply it */
|
|
applyLanguage() {
|
|
const language = this.getLanguage();
|
|
this.$store.commit(Keys.SET_LANGUAGE, language);
|
|
this.$i18n.locale = language;
|
|
document.getElementsByTagName('html')[0].setAttribute('lang', language);
|
|
},
|
|
/* If placeholder element still visible, hide it */
|
|
hideLoader() {
|
|
const loader = document.getElementById('loader');
|
|
if (loader) loader.style.display = 'none';
|
|
},
|
|
/* Called when in edit mode and navigating away from page */
|
|
confirmExit(e) {
|
|
e.preventDefault();
|
|
return 'You may have unsaved edits. Are you sure you want to exit the page?';
|
|
},
|
|
},
|
|
/* Basic initialization tasks on app load */
|
|
async mounted() {
|
|
await this.$store.dispatch(Keys.INITIALIZE_CONFIG); // Initialize config before moving on
|
|
this.applyLanguage(); // Apply users local language
|
|
this.hideSplash(); // Hide the splash screen, if visible
|
|
if (this.appConfig.customCss) { // Inject users custom CSS, if present
|
|
const cleanedCss = this.appConfig.customCss.replace(/<\/?[^>]+(>|$)/g, '');
|
|
this.injectCustomStyles(cleanedCss);
|
|
}
|
|
this.hideLoader(); // If initial placeholder still visible, hide it
|
|
welcomeMsg(); // Show message in console
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/* Import styles used globally throughout the app */
|
|
@import '@/styles/global-styles.scss';
|
|
@import '@/styles/color-palette.scss';
|
|
@import '@/styles/dimensions.scss';
|
|
@import '@/styles/color-themes.scss';
|
|
@import '@/styles/typography.scss';
|
|
@import '@/styles/user-defined-themes.scss';
|
|
|
|
</style>
|