summaryrefslogtreecommitdiff
path: root/src/views/_sila/Fans/Dynamic/FansDynamicPage.vue
blob: eaf3777ce96257ef179c6c3c482a93c505fd0798 (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
<template>
  <b-container fluid="xl">
    <page-title :description="$t('appPageTitle.dynamicInformation')" />
    <table-date-picker
      :class="{ disabledDiv: loading }"
      :time-scale="timeScale"
      @changePeriod="onChangePeriod"
    />
    <fan-speed-cpu :time-scale="timeScale"></fan-speed-cpu>
    <fan-speed-system :time-scale="timeScale"></fan-speed-system>
  </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 FanSpeedCpu from './FanSpeedCpu';
import FanSpeedSystem from './FanSpeedSystem';

export default {
  components: { FanSpeedCpu, FanSpeedSystem, 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.startProgress();
      this.resetZoom();
    },
    startProgress() {
      this.startLoader();
      this.$root.$on('fan-cpu', (loading) => this.onLoading(loading));
      this.$root.$on('fan-system', (loading) => this.onLoading(loading));
    },
    onLoading(loading) {
      loading ? this.startLoader() : this.endLoader();
    },
  },
};
</script>