dashy/src/App.vue

150 lines
4.8 KiB
Vue
Raw Normal View History

2019-07-19 16:07:26 +02:00
<template>
<div id="dashy">
<EditModeTopBanner v-if="isEditMode" />
2021-09-11 02:14:23 +02:00
<LoadingScreen :isLoading="isLoading" v-if="shouldShowSplash" />
<Header :pageInfo="pageInfo" />
<router-view />
2021-09-11 02:14:23 +02:00
<Footer :text="footerText" v-if="visibleComponents.footer" />
2019-07-19 16:07:26 +02:00
</div>
</template>
2019-07-20 22:50:29 +02:00
<script>
2021-04-13 13:36:31 +02:00
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';
2021-07-31 19:53:12 +02:00
import { welcomeMsg } from '@/utils/CoolConsole';
2021-09-11 02:14:23 +02:00
import ErrorHandler from '@/utils/ErrorHandler';
import Keys from '@/utils/StoreMutations';
import {
localStorageKeys,
splashScreenTime,
visibleComponents as defaultVisibleComponents,
language as defaultLanguage,
} from '@/utils/defaults';
2019-07-20 22:50:29 +02:00
export default {
name: 'app',
components: {
Header,
2019-09-01 14:38:13 +02:00
Footer,
LoadingScreen,
EditModeTopBanner,
},
data() {
return {
isLoading: true, // Set to false after mount complete
};
2019-09-01 14:38:13 +02:00
},
2021-09-11 02:14:23 +02:00
computed: {
/* If the user has specified custom text for footer - get it */
2021-09-11 02:14:23 +02:00
footerText() {
return this.pageInfo && this.pageInfo.footerText ? this.pageInfo.footerText : '';
},
/* Determine if splash screen should be shown */
shouldShowSplash() {
2021-09-19 23:23:26 +02:00
return (this.visibleComponents || defaultVisibleComponents).splashScreen;
},
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;
},
},
created() {
this.$store.dispatch(Keys.INITIALIZE_CONFIG);
2021-09-11 02:14:23 +02:00
},
methods: {
/* Injects the users custom CSS as a style tag */
2021-05-31 16:17:54 +02:00
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() {
2021-09-11 02:14:23 +02:00
if (this.shouldShowSplash) {
2021-07-07 21:27:45 +02:00
setTimeout(() => { this.isLoading = false; }, splashScreenTime || 1500);
} else {
this.isLoading = false;
}
},
2021-09-11 02:14:23 +02:00
/* 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;
2021-09-11 02:14:23 +02:00
if (usersLang) {
if (availibleLocales.includes(usersLang)) {
return usersLang;
} else {
ErrorHandler(`Unsupported Language: '${usersLang}'`);
}
}
2021-09-11 02:14:23 +02:00
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);
},
2021-09-19 23:23:26 +02:00
hideLoader() {
const loader = document.getElementById('loader');
if (loader) loader.style.display = 'none';
},
2021-05-31 16:17:54 +02:00
},
/* When component mounted, hide splash and initiate the injection of custom styles */
2021-05-31 16:17:54 +02:00
mounted() {
this.applyLanguage();
this.hideSplash();
2021-05-31 16:17:54 +02:00
if (this.appConfig.customCss) {
const cleanedCss = this.appConfig.customCss.replace(/<\/?[^>]+(>|$)/g, '');
this.injectCustomStyles(cleanedCss);
2021-09-19 23:23:26 +02:00
this.hideLoader();
2021-05-31 16:17:54 +02:00
}
2021-07-31 19:53:12 +02:00
welcomeMsg();
},
2019-09-01 14:38:13 +02:00
};
2019-07-20 22:50:29 +02:00
</script>
2019-07-19 16:07:26 +02:00
<style lang="scss">
/* Import styles used globally throughout the app */
2021-04-15 20:30:30 +02:00
@import '@/styles/global-styles.scss';
@import '@/styles/color-palette.scss';
2021-06-17 23:59:56 +02:00
@import '@/styles/dimensions.scss';
2021-04-15 20:30:30 +02:00
@import '@/styles/color-themes.scss';
@import '@/styles/typography.scss';
@import '@/styles/user-defined-themes.scss';
2019-07-20 22:50:29 +02:00
2019-07-19 16:07:26 +02:00
</style>