summaryrefslogtreecommitdiff
path: root/src/views/_sila/Memory/Dynamic/MemoryDynamicPage.vue
blob: 16c8202f1691c3ed265d3a22f21f642f4b476ada (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<template>
  <b-container fluid="xl">
    <page-title :description="$t('appPageTitle.dynamicInformation')" />
    <table-date-picker
      :class="{ disabledDiv: loading }"
      :time-scale="timeScale"
      @changePeriod="onChangePeriod"
    />
    <memory-temp :time-scale="timeScale"></memory-temp>
  </b-container>
</template>

<script>
import PageTitle from '@/components/_sila/Global/PageTitle';
import TableDatePicker from '@/components/_sila/Global/TableDatePicker';

import DataFormatterMixin from '@/components/_sila/Mixins/DataFormatterMixin';
import LoadingBarMixin, {
  loading,
} from '@/components/_sila/Mixins/LoadingBarMixin';
import TableFilterMixin from '@/components/_sila/Mixins/TableFilterMixin';

import MemoryTemp from './MemoryTemp';

export default {
  components: { MemoryTemp, PageTitle, TableDatePicker },
  mixins: [DataFormatterMixin, LoadingBarMixin, TableFilterMixin],
  data() {
    return {
      loading,
      timeScale: 'hour',
    };
  },

  created() {
    this.startProgress();
  },

  methods: {
    resetZoom() {
      const resetButton = document.querySelector('.highcharts-reset-zoom');
      if (!resetButton) {
        return;
      }

      resetButton.dispatchEvent(new Event('click'));
    },
    onChangePeriod(period) {
      this.timeScale = period;
      this.resetZoom();
    },
    startProgress() {
      this.startLoader();
      this.$root.$on('memory', (loading) => this.onLoading(loading));
    },
    onLoading(loading) {
      loading ? this.startLoader() : this.endLoader();
    },
  },
};
</script>