blob: 58b092da9a687f935ef9263a93a30664104de4c0 [file] [log] [blame]
Yoshie Muranakab89a53c2020-06-15 13:25:46 -07001<template>
2 <page-section :section-title="$t('pageHardwareStatus.fans')">
Yoshie Muranakac069c672020-06-18 14:21:50 -07003 <b-row>
4 <b-col sm="6" md="5" xl="4">
Dixsie Wolmers9b22b492020-09-07 21:26:06 -05005 <search
Sukanya Pandeyedb8a772020-10-29 11:33:42 +05306 @change-search="onChangeSearchInput"
7 @clear-search="onClearSearchInput"
Dixsie Wolmers9b22b492020-09-07 21:26:06 -05008 />
Yoshie Muranakac069c672020-06-18 14:21:50 -07009 </b-col>
Sukanya Pandey99010962020-07-27 21:44:47 +053010 <b-col sm="6" md="3" xl="2">
11 <table-cell-count
12 :filtered-items-count="filteredRows"
13 :total-number-of-cells="fans.length"
14 ></table-cell-count>
15 </b-col>
Yoshie Muranakac069c672020-06-18 14:21:50 -070016 </b-row>
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070017 <b-table
18 sort-icon-left
19 no-sort-reset
Sukanya Pandeyfde429e2020-09-14 20:48:39 +053020 hover
SurenNeware5e25e282020-07-08 15:57:23 +053021 responsive="md"
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070022 sort-by="health"
SurenNeware307382e2020-07-27 20:45:14 +053023 show-empty
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070024 :items="fans"
25 :fields="fields"
26 :sort-desc="true"
27 :sort-compare="sortCompare"
Yoshie Muranakac069c672020-06-18 14:21:50 -070028 :filter="searchFilter"
SurenNeware307382e2020-07-27 20:45:14 +053029 :empty-text="$t('global.table.emptyMessage')"
SurenNeware156a0e62020-08-28 19:20:03 +053030 :empty-filtered-text="$t('global.table.emptySearchMessage')"
Sukanya Pandey99010962020-07-27 21:44:47 +053031 @filtered="onFiltered"
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070032 >
33 <!-- Expand chevron icon -->
Derick Montague602e98a2020-10-21 16:20:00 -050034 <template #cell(expandRow)="row">
Dixsie Wolmers83133762020-07-15 08:45:19 -050035 <b-button
36 variant="link"
37 data-test-id="hardwareStatus-button-expandFans"
Dixsie Wolmersb53e0862020-09-08 14:13:38 -050038 :aria-label="expandRowLabel"
Dixsie Wolmers30f11f82020-11-10 16:07:56 -060039 :title="expandRowLabel"
40 class="btn-icon-only"
Dixsie Wolmersb53e0862020-09-08 14:13:38 -050041 @click="toggleRowDetails(row)"
Dixsie Wolmers83133762020-07-15 08:45:19 -050042 >
Dixsie Wolmers30f11f82020-11-10 16:07:56 -060043 <icon-chevron />
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070044 </b-button>
45 </template>
46
47 <!-- Health -->
Derick Montague602e98a2020-10-21 16:20:00 -050048 <template #cell(health)="{ value }">
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070049 <status-icon :status="statusIcon(value)" />
50 {{ value }}
51 </template>
52
Derick Montague602e98a2020-10-21 16:20:00 -050053 <template #row-details="{ item }">
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070054 <b-container fluid>
55 <b-row>
56 <b-col sm="6" xl="4">
57 <dl>
58 <!-- Status state -->
59 <dt>{{ $t('pageHardwareStatus.table.statusState') }}:</dt>
60 <dd>{{ tableFormatter(item.statusState) }}</dd>
61 </dl>
62 </b-col>
63 </b-row>
64 </b-container>
65 </template>
66 </b-table>
67 </page-section>
68</template>
69
70<script>
71import PageSection from '@/components/Global/PageSection';
72import IconChevron from '@carbon/icons-vue/es/chevron--down/20';
Sukanya Pandey99010962020-07-27 21:44:47 +053073import TableCellCount from '@/components/Global/TableCellCount';
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070074
75import StatusIcon from '@/components/Global/StatusIcon';
Yoshie Muranaka386df452020-06-18 12:45:13 -070076import TableDataFormatterMixin from '@/components/Mixins/TableDataFormatterMixin';
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070077import TableSortMixin from '@/components/Mixins/TableSortMixin';
Yoshie Muranakac069c672020-06-18 14:21:50 -070078import Search from '@/components/Global/Search';
Dixsie Wolmers9b22b492020-09-07 21:26:06 -050079import SearchFilterMixin from '@/components/Mixins/SearchFilterMixin';
Dixsie Wolmersb53e0862020-09-08 14:13:38 -050080import TableRowExpandMixin from '@/components/Mixins/TableRowExpandMixin';
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070081
82export default {
Sukanya Pandey99010962020-07-27 21:44:47 +053083 components: { IconChevron, PageSection, StatusIcon, Search, TableCellCount },
Dixsie Wolmersb53e0862020-09-08 14:13:38 -050084 mixins: [
85 TableRowExpandMixin,
86 TableDataFormatterMixin,
87 TableSortMixin,
Derick Montague602e98a2020-10-21 16:20:00 -050088 SearchFilterMixin,
Dixsie Wolmersb53e0862020-09-08 14:13:38 -050089 ],
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070090 data() {
91 return {
92 fields: [
93 {
94 key: 'expandRow',
95 label: '',
96 tdClass: 'table-row-expand',
Derick Montague602e98a2020-10-21 16:20:00 -050097 sortable: false,
Yoshie Muranakab89a53c2020-06-15 13:25:46 -070098 },
99 {
100 key: 'id',
101 label: this.$t('pageHardwareStatus.table.id'),
102 formatter: this.tableFormatter,
Derick Montague602e98a2020-10-21 16:20:00 -0500103 sortable: true,
Yoshie Muranakab89a53c2020-06-15 13:25:46 -0700104 },
105 {
106 key: 'health',
107 label: this.$t('pageHardwareStatus.table.health'),
108 formatter: this.tableFormatter,
Dixsie Wolmersa04d46f2020-10-22 06:34:56 -0500109 sortable: true,
Derick Montague602e98a2020-10-21 16:20:00 -0500110 tdClass: 'text-nowrap',
Yoshie Muranakab89a53c2020-06-15 13:25:46 -0700111 },
112 {
113 key: 'partNumber',
114 label: this.$t('pageHardwareStatus.table.partNumber'),
115 formatter: this.tableFormatter,
Derick Montague602e98a2020-10-21 16:20:00 -0500116 sortable: true,
Yoshie Muranakab89a53c2020-06-15 13:25:46 -0700117 },
118 {
119 key: 'serialNumber',
120 label: this.$t('pageHardwareStatus.table.serialNumber'),
121 formatter: this.tableFormatter,
Derick Montague602e98a2020-10-21 16:20:00 -0500122 sortable: true,
123 },
Yoshie Muranakac069c672020-06-18 14:21:50 -0700124 ],
Derick Montague602e98a2020-10-21 16:20:00 -0500125 searchTotalFilteredRows: 0,
Yoshie Muranakab89a53c2020-06-15 13:25:46 -0700126 };
127 },
128 computed: {
Sukanya Pandey99010962020-07-27 21:44:47 +0530129 filteredRows() {
130 return this.searchFilter
131 ? this.searchTotalFilteredRows
132 : this.fans.length;
133 },
Yoshie Muranakab89a53c2020-06-15 13:25:46 -0700134 fans() {
135 return this.$store.getters['fan/fans'];
Derick Montague602e98a2020-10-21 16:20:00 -0500136 },
Yoshie Muranakab89a53c2020-06-15 13:25:46 -0700137 },
138 created() {
139 this.$store.dispatch('fan/getFanInfo').finally(() => {
Gunnar Millsdefc9e22020-07-07 20:29:03 -0500140 // Emit initial data fetch complete to parent component
Sukanya Pandeyedb8a772020-10-29 11:33:42 +0530141 this.$root.$emit('hardware-status-fans-complete');
Yoshie Muranakab89a53c2020-06-15 13:25:46 -0700142 });
143 },
144 methods: {
145 sortCompare(a, b, key) {
146 if (key === 'health') {
147 return this.sortStatus(a, b, key);
148 }
Yoshie Muranakac069c672020-06-18 14:21:50 -0700149 },
Sukanya Pandey99010962020-07-27 21:44:47 +0530150 onFiltered(filteredItems) {
151 this.searchTotalFilteredRows = filteredItems.length;
Derick Montague602e98a2020-10-21 16:20:00 -0500152 },
153 },
Yoshie Muranakab89a53c2020-06-15 13:25:46 -0700154};
155</script>