7bb8186e43
* chore: Fix self-closing tag issues * Fix merge conflicts Co-authored-by: Fayaz Ahmed <15716057+fayazara@users.noreply.github.com>
112 lines
2.9 KiB
Vue
112 lines
2.9 KiB
Vue
<template>
|
|
<div v-if="!authUIFlags.isFetching" id="app" class="app-wrapper app-root">
|
|
<update-banner :latest-chatwoot-version="latestChatwootVersion" />
|
|
<transition name="fade" mode="out-in">
|
|
<router-view />
|
|
</transition>
|
|
<add-account-modal
|
|
:show="showAddAccountModal"
|
|
:has-accounts="hasAccounts"
|
|
/>
|
|
<woot-snackbar-box />
|
|
<network-notification />
|
|
</div>
|
|
<loading-state v-else />
|
|
</template>
|
|
|
|
<script>
|
|
import { mapGetters } from 'vuex';
|
|
import AddAccountModal from '../dashboard/components/layout/sidebarComponents/AddAccountModal';
|
|
import LoadingState from './components/widgets/LoadingState.vue';
|
|
import NetworkNotification from './components/NetworkNotification';
|
|
import UpdateBanner from './components/app/UpdateBanner.vue';
|
|
import vueActionCable from './helper/actionCable';
|
|
import WootSnackbarBox from './components/SnackbarContainer';
|
|
import {
|
|
registerSubscription,
|
|
verifyServiceWorkerExistence,
|
|
} from './helper/pushHelper';
|
|
|
|
export default {
|
|
name: 'App',
|
|
|
|
components: {
|
|
AddAccountModal,
|
|
LoadingState,
|
|
NetworkNotification,
|
|
UpdateBanner,
|
|
WootSnackbarBox,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
showAddAccountModal: false,
|
|
latestChatwootVersion: null,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
...mapGetters({
|
|
getAccount: 'accounts/getAccount',
|
|
currentUser: 'getCurrentUser',
|
|
globalConfig: 'globalConfig/get',
|
|
authUIFlags: 'getAuthUIFlags',
|
|
currentAccountId: 'getCurrentAccountId',
|
|
}),
|
|
hasAccounts() {
|
|
const { accounts = [] } = this.currentUser || {};
|
|
return accounts.length > 0;
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
currentUser() {
|
|
if (!this.hasAccounts) {
|
|
this.showAddAccountModal = true;
|
|
}
|
|
verifyServiceWorkerExistence(registration =>
|
|
registration.pushManager.getSubscription().then(subscription => {
|
|
if (subscription) {
|
|
registerSubscription();
|
|
}
|
|
})
|
|
);
|
|
},
|
|
currentAccountId() {
|
|
if (this.currentAccountId) {
|
|
this.initializeAccount();
|
|
}
|
|
},
|
|
},
|
|
mounted() {
|
|
this.setLocale(window.chatwootConfig.selectedLocale);
|
|
},
|
|
methods: {
|
|
setLocale(locale) {
|
|
this.$root.$i18n.locale = locale;
|
|
},
|
|
async initializeAccount() {
|
|
await this.$store.dispatch('accounts/get');
|
|
const {
|
|
locale,
|
|
latest_chatwoot_version: latestChatwootVersion,
|
|
} = this.getAccount(this.currentAccountId);
|
|
const { pubsub_token: pubsubToken } = this.currentUser || {};
|
|
this.setLocale(locale);
|
|
this.latestChatwootVersion = latestChatwootVersion;
|
|
vueActionCable.init(pubsubToken);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import './assets/scss/app';
|
|
.update-banner {
|
|
height: var(--space-larger);
|
|
align-items: center;
|
|
font-size: var(--font-size-small) !important;
|
|
}
|
|
</style>
|
|
|
|
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>
|