120 lines
3.9 KiB
Vue
120 lines
3.9 KiB
Vue
<template>
|
|
<div id="app">
|
|
<component :is="config.beforeLayout" />
|
|
<component :is="layout">
|
|
<router-view :key="$route.path" />
|
|
</component>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import * as Sentry from '@sentry/vue';
|
|
import moment from 'moment';
|
|
import { getLangCookie, setLangCookie } from '@/i18n';
|
|
|
|
export const config = { beforeLayout: null };
|
|
|
|
export default {
|
|
name: 'App',
|
|
async created() {
|
|
if (!(await this.$store.dispatch('httpRequest/getCattrStatus'))) {
|
|
if (this.$route.name !== 'api.error') {
|
|
await this.$router.replace({ name: 'api.error' });
|
|
return;
|
|
}
|
|
|
|
return;
|
|
} else {
|
|
if (this.$route.name === 'api.error') {
|
|
await this.$router.replace('/');
|
|
return;
|
|
}
|
|
}
|
|
|
|
const userApi = this.$store.getters['user/apiService'];
|
|
if (userApi.token()) {
|
|
try {
|
|
this.$Loading.start();
|
|
await userApi.checkApiAuth();
|
|
await userApi.getCompanyData();
|
|
|
|
Sentry.setUser({
|
|
full_name: this.$store.state.user.user.data.full_name,
|
|
id: this.$store.state.user.user.data.id,
|
|
role: this.$store.state.user.user.data.role_id,
|
|
locale: this.$store.state.user.user.data.user_language,
|
|
});
|
|
} catch (e) {
|
|
console.log(e);
|
|
// Whoops
|
|
} finally {
|
|
this.$Loading.finish();
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
if (sessionStorage.getItem('logout')) {
|
|
this.$store.dispatch('user/setLoggedInStatus', null);
|
|
sessionStorage.removeItem('logout');
|
|
}
|
|
},
|
|
methods: {
|
|
setUserLocale() {
|
|
const user = this.$store.getters['user/user'];
|
|
const cookieLang = getLangCookie();
|
|
// Set user locale after auth
|
|
if (user.user_language) {
|
|
this.$i18n.locale = user.user_language;
|
|
setLangCookie(user.user_language);
|
|
moment.locale(user.user_language);
|
|
} else if (cookieLang) {
|
|
this.$i18n.locale = cookieLang;
|
|
moment.locale(cookieLang);
|
|
}
|
|
},
|
|
},
|
|
computed: {
|
|
isLoggedIn() {
|
|
// Somehow this is the only place in vue lifecycle which is working as it should be
|
|
// All the other places brake locale in different places
|
|
this.setUserLocale();
|
|
return this.$store.getters['user/loggedIn'];
|
|
},
|
|
layout() {
|
|
return this.$route.meta.layout || 'default-layout';
|
|
},
|
|
config() {
|
|
return config;
|
|
},
|
|
},
|
|
watch: {
|
|
isLoggedIn(status) {
|
|
if (status) {
|
|
this.$router.push({ path: '/' });
|
|
} else {
|
|
const reason = this.$store.getters['user/lastLogoutReason'];
|
|
const message =
|
|
reason === null ? 'You has been logged out' : `You has been logged out. Reason: ${reason}`;
|
|
|
|
this.$Notify({
|
|
title: 'Warning',
|
|
message,
|
|
type: 'warning',
|
|
});
|
|
this.$router.push({ name: 'auth.login' });
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import 'sass/app';
|
|
|
|
.at-loading-bar {
|
|
&__inner {
|
|
transition: width 0.5s linear;
|
|
}
|
|
}
|
|
</style>
|