summaryrefslogtreecommitdiff
path: root/src/views/_sila/Fans/Static/FansStaticPage.vue
blob: 810aeb4bf37c36f3bd8def836f04e5796c6e4fc2 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<template>
  <b-container fluid="xl">
    <page-title :description="$t('appPageTitle.specification')" />
    <page-section :section-small-title="$t('pageFans.installedFans')">
      <b-table
        responsive="md"
        show-empty
        :items="fans"
        :busy="isBusy"
        :fields="fields"
        :empty-text="$t('global.table.emptyMessage')"
      >
        <template #cell(status)="{ value }">
          <status-icon :status="statusIcon(value)" />
          {{ value }}
        </template>
      </b-table>
    </page-section>
  </b-container>
</template>

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

import DataFormatterMixin from '@/components/_sila/Mixins/DataFormatterMixin';
import LoadingBarMixin from '@/components/_sila/Mixins/LoadingBarMixin';

import StatusIcon from '@/components/_sila//Global/StatusIcon';

export default {
  components: { PageTitle, PageSection, StatusIcon },
  mixins: [DataFormatterMixin, LoadingBarMixin],
  data() {
    return {
      isBusy: true,
      fields: [
        {
          key: 'name',
          label: this.$t('pageFans.table.name'),
          formatter: this.dataFormatter,
          thStyle: { width: '25%' },
        },
        {
          key: 'health',
          label: this.$t('pageFans.table.health'),
          formatter: this.dataFormatter,
          thStyle: { width: '25%' },
          tdClass: 'text-nowrap',
        },
        {
          key: 'type',
          label: this.$t('pageFans.table.type'),
          formatter: this.dataFormatter,
          thStyle: { width: '25%' },
        },
        {
          key: 'speedRPM',
          label: this.$t('pageFans.table.currentValue'),
          formatter: this.dataFormatter,
          thStyle: { width: '25%' },
        },
      ],
    };
  },

  computed: {
    fans() {
      return this.$store.getters['fan/fans'];
    },
  },

  created() {
    this.startLoader();
    this.$store.dispatch('fan/getFanInfo').finally(() => {
      this.endLoader();
      this.isBusy = false;
    });
  },
};
</script>