summaryrefslogtreecommitdiff
path: root/src/views/_sila/Processors/Dynamic/ProcessorsDynamicPage.vue
blob: 76d519c06a7063413ad593ffade600584d2b41b1 (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
62
63
64
65
66
67
<template>
  <b-container fluid="xl">
    <page-title :description="$t('appPageTitle.dynamicInformation')" />
    <table-date-picker
      :class="{ disabledDiv: loading }"
      :time-scale="timeScale"
      @changePeriod="onChangePeriod"
    />
    <cpu-temp :time-scale="timeScale"></cpu-temp>
    <cpu-power :time-scale="timeScale"></cpu-power>
  </b-container>
</template>
<script>
import PageTitle from '@/components/_sila/Global/PageTitle';

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

import CpuPower from './CpuPower';
import CpuTemp from './CpuTemp';

export default {
  components: {
    CpuPower,
    CpuTemp,
    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('cpu-temp', (loading) => this.onLoading(loading));
      this.$root.$on('cpu-power', (loading) => this.onLoading(loading));
    },
    onLoading(loading) {
      console.log('loading!!!', loading);
      loading ? this.startLoader() : this.endLoader();
    },
  },
};
</script>