mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			105 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <transition name="network-notification-fade" tag="div">
 | 
						|
    <div v-show="showNotification" class="ui-notification-container">
 | 
						|
      <div class="ui-notification">
 | 
						|
        <fluent-icon icon="wifi-off" />
 | 
						|
        <p class="ui-notification-text">
 | 
						|
          {{
 | 
						|
            useInstallationName(
 | 
						|
              $t('NETWORK.NOTIFICATION.TEXT'),
 | 
						|
              globalConfig.installationName
 | 
						|
            )
 | 
						|
          }}
 | 
						|
        </p>
 | 
						|
        <woot-button variant="clear" size="small" @click="refreshPage">
 | 
						|
          {{ $t('NETWORK.BUTTON.REFRESH') }}
 | 
						|
        </woot-button>
 | 
						|
        <woot-button
 | 
						|
          variant="smooth"
 | 
						|
          size="small"
 | 
						|
          color-scheme="warning"
 | 
						|
          icon="dismiss-circle"
 | 
						|
          @click="closeNotification"
 | 
						|
        />
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </transition>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
import globalConfigMixin from 'shared/mixins/globalConfigMixin';
 | 
						|
import { mapGetters } from 'vuex';
 | 
						|
import { BUS_EVENTS } from 'shared/constants/busEvents';
 | 
						|
 | 
						|
export default {
 | 
						|
  mixins: [globalConfigMixin],
 | 
						|
 | 
						|
  data() {
 | 
						|
    return {
 | 
						|
      showNotification: !navigator.onLine,
 | 
						|
    };
 | 
						|
  },
 | 
						|
 | 
						|
  computed: {
 | 
						|
    ...mapGetters({ globalConfig: 'globalConfig/get' }),
 | 
						|
  },
 | 
						|
 | 
						|
  mounted() {
 | 
						|
    window.addEventListener('offline', this.updateOnlineStatus);
 | 
						|
    window.bus.$on(BUS_EVENTS.WEBSOCKET_DISCONNECT, () => {
 | 
						|
      this.updateOnlineStatus({ type: 'offline' });
 | 
						|
    });
 | 
						|
  },
 | 
						|
 | 
						|
  beforeDestroy() {
 | 
						|
    window.removeEventListener('offline', this.updateOnlineStatus);
 | 
						|
  },
 | 
						|
 | 
						|
  methods: {
 | 
						|
    refreshPage() {
 | 
						|
      window.location.reload();
 | 
						|
    },
 | 
						|
 | 
						|
    closeNotification() {
 | 
						|
      this.showNotification = false;
 | 
						|
    },
 | 
						|
 | 
						|
    updateOnlineStatus(event) {
 | 
						|
      if (event.type === 'offline') {
 | 
						|
        this.showNotification = true;
 | 
						|
      }
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style scoped lang="scss">
 | 
						|
@import '~dashboard/assets/scss/mixins';
 | 
						|
 | 
						|
.ui-notification-container {
 | 
						|
  max-width: 25rem;
 | 
						|
  position: absolute;
 | 
						|
  right: var(--space-normal);
 | 
						|
  top: var(--space-normal);
 | 
						|
  z-index: var(--z-index-very-high);
 | 
						|
}
 | 
						|
 | 
						|
.ui-notification {
 | 
						|
  display: flex;
 | 
						|
  justify-content: space-between;
 | 
						|
  align-items: center;
 | 
						|
  width: 100%;
 | 
						|
 | 
						|
  background-color: var(--y-100);
 | 
						|
  border-radius: var(--border-radius-medium);
 | 
						|
  box-shadow: var(--shadow-large);
 | 
						|
 | 
						|
  min-width: 15rem;
 | 
						|
  padding: var(--space-normal);
 | 
						|
}
 | 
						|
 | 
						|
.ui-notification-text {
 | 
						|
  margin: 0 var(--space-small);
 | 
						|
}
 | 
						|
</style>
 |