summaryrefslogtreecommitdiff
path: root/src/views/_sila/Fans
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-07-19 18:39:57 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-07-19 18:44:00 +0300
commit61657800f556ebbb1e6041d5d85a99368b73ff3b (patch)
tree618aec32ac4c3b3c0485d195bd87c83633047f06 /src/views/_sila/Fans
parentf8fcf3957a749b349a33bae2691bca2883a981c3 (diff)
downloadwebui-vue-61657800f556ebbb1e6041d5d85a99368b73ff3b.tar.xz
SILABMC-52 Add page Fans Static, Fans Store, tab Fans
Diffstat (limited to 'src/views/_sila/Fans')
-rw-r--r--src/views/_sila/Fans/Static/FansStaticPage.vue81
-rw-r--r--src/views/_sila/Fans/Static/index.js2
2 files changed, 83 insertions, 0 deletions
diff --git a/src/views/_sila/Fans/Static/FansStaticPage.vue b/src/views/_sila/Fans/Static/FansStaticPage.vue
new file mode 100644
index 00000000..810aeb4b
--- /dev/null
+++ b/src/views/_sila/Fans/Static/FansStaticPage.vue
@@ -0,0 +1,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>
diff --git a/src/views/_sila/Fans/Static/index.js b/src/views/_sila/Fans/Static/index.js
new file mode 100644
index 00000000..9a5d913d
--- /dev/null
+++ b/src/views/_sila/Fans/Static/index.js
@@ -0,0 +1,2 @@
+import FansStaticPage from './FansStaticPage.vue';
+export default FansStaticPage;