82 lines
2.3 KiB
Vue
82 lines
2.3 KiB
Vue
<script>
|
|
import Banner from 'dashboard/components/ui/Banner.vue';
|
|
import { LOCAL_STORAGE_KEYS } from 'dashboard/constants/localStorage';
|
|
import { LocalStorage } from 'shared/helpers/localStorage';
|
|
import { mapGetters } from 'vuex';
|
|
import { useAdmin } from 'dashboard/composables/useAdmin';
|
|
import { hasAnUpdateAvailable } from './versionCheckHelper';
|
|
|
|
export default {
|
|
components: { Banner },
|
|
props: {
|
|
latestChatwootVersion: { type: String, default: '' },
|
|
},
|
|
setup() {
|
|
const { isAdmin } = useAdmin();
|
|
return {
|
|
isAdmin,
|
|
};
|
|
},
|
|
data() {
|
|
return { userDismissedBanner: false };
|
|
},
|
|
computed: {
|
|
...mapGetters({ globalConfig: 'globalConfig/get' }),
|
|
updateAvailable() {
|
|
return hasAnUpdateAvailable(
|
|
this.latestChatwootVersion,
|
|
this.globalConfig.appVersion
|
|
);
|
|
},
|
|
bannerMessage() {
|
|
return this.$t('GENERAL_SETTINGS.UPDATE_CHATWOOT', {
|
|
latestChatwootVersion: this.latestChatwootVersion,
|
|
});
|
|
},
|
|
shouldShowBanner() {
|
|
return (
|
|
!this.userDismissedBanner &&
|
|
this.globalConfig.displayManifest &&
|
|
this.updateAvailable &&
|
|
!this.isVersionNotificationDismissed(this.latestChatwootVersion) &&
|
|
this.isAdmin
|
|
);
|
|
},
|
|
},
|
|
methods: {
|
|
isVersionNotificationDismissed(version) {
|
|
const dismissedVersions =
|
|
LocalStorage.get(LOCAL_STORAGE_KEYS.DISMISSED_UPDATES) || [];
|
|
return dismissedVersions.includes(version);
|
|
},
|
|
dismissUpdateBanner() {
|
|
let updatedDismissedItems =
|
|
LocalStorage.get(LOCAL_STORAGE_KEYS.DISMISSED_UPDATES) || [];
|
|
if (updatedDismissedItems instanceof Array) {
|
|
updatedDismissedItems.push(this.latestChatwootVersion);
|
|
} else {
|
|
updatedDismissedItems = [this.latestChatwootVersion];
|
|
}
|
|
LocalStorage.set(
|
|
LOCAL_STORAGE_KEYS.DISMISSED_UPDATES,
|
|
updatedDismissedItems
|
|
);
|
|
this.userDismissedBanner = true;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<!-- eslint-disable-next-line vue/no-root-v-if -->
|
|
<template>
|
|
<Banner
|
|
v-if="shouldShowBanner"
|
|
color-scheme="primary"
|
|
:banner-message="bannerMessage"
|
|
href-link="https://github.com/chatwoot/chatwoot/releases"
|
|
:href-link-text="$t('GENERAL_SETTINGS.LEARN_MORE')"
|
|
has-close-button
|
|
@close="dismissUpdateBanner"
|
|
/>
|
|
</template>
|