blob: a59530549b4341ed12bbcd8739626bd1596e4340 [file] [log] [blame]
Yoshie Muranakae24b17d2020-06-08 11:03:11 -07001<template>
2 <page-section :section-title="$t('pageHardwareStatus.dimmSlot')">
Yoshie Muranaka41770142020-06-18 14:00:55 -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 Muranaka41770142020-06-18 14:00:55 -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="dimms.length"
14 ></table-cell-count>
15 </b-col>
Yoshie Muranaka41770142020-06-18 14:00:55 -070016 </b-row>
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070017 <b-table
18 sort-icon-left
19 no-sort-reset
Sukanya Pandeyfde429e2020-09-14 20:48:39 +053020 hover
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070021 sort-by="health"
SurenNeware5e25e282020-07-08 15:57:23 +053022 responsive="md"
SurenNeware307382e2020-07-27 20:45:14 +053023 show-empty
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070024 :items="dimms"
25 :fields="fields"
26 :sort-desc="true"
27 :sort-compare="sortCompare"
Yoshie Muranaka41770142020-06-18 14:00:55 -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 Muranakae24b17d2020-06-08 11:03:11 -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-expandDimms"
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 Muranakae24b17d2020-06-08 11:03:11 -070044 </b-button>
45 </template>
46
47 <!-- Health -->
Derick Montague602e98a2020-10-21 16:20:00 -050048 <template #cell(health)="{ value }">
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070049 <status-icon :status="statusIcon(value)" />
50 {{ value }}
51 </template>
52
Derick Montague602e98a2020-10-21 16:20:00 -050053 <template #row-details="{ item }">
Yoshie Muranakae24b17d2020-06-08 11:03:11 -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';
73
74import StatusIcon from '@/components/Global/StatusIcon';
Sukanya Pandey99010962020-07-27 21:44:47 +053075import TableCellCount from '@/components/Global/TableCellCount';
76
Yoshie Muranaka386df452020-06-18 12:45:13 -070077import TableDataFormatterMixin from '@/components/Mixins/TableDataFormatterMixin';
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070078import TableSortMixin from '@/components/Mixins/TableSortMixin';
Yoshie Muranaka41770142020-06-18 14:00:55 -070079import Search from '@/components/Global/Search';
Dixsie Wolmers9b22b492020-09-07 21:26:06 -050080import SearchFilterMixin from '@/components/Mixins/SearchFilterMixin';
Dixsie Wolmersb53e0862020-09-08 14:13:38 -050081import TableRowExpandMixin from '@/components/Mixins/TableRowExpandMixin';
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070082
83export default {
Sukanya Pandey99010962020-07-27 21:44:47 +053084 components: { IconChevron, PageSection, StatusIcon, Search, TableCellCount },
Dixsie Wolmersb53e0862020-09-08 14:13:38 -050085 mixins: [
86 TableRowExpandMixin,
87 TableDataFormatterMixin,
88 TableSortMixin,
Derick Montague602e98a2020-10-21 16:20:00 -050089 SearchFilterMixin,
Dixsie Wolmersb53e0862020-09-08 14:13:38 -050090 ],
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070091 data() {
92 return {
93 fields: [
94 {
95 key: 'expandRow',
96 label: '',
97 tdClass: 'table-row-expand',
Derick Montague602e98a2020-10-21 16:20:00 -050098 sortable: false,
Yoshie Muranakae24b17d2020-06-08 11:03:11 -070099 },
100 {
101 key: 'id',
102 label: this.$t('pageHardwareStatus.table.id'),
103 formatter: this.tableFormatter,
Derick Montague602e98a2020-10-21 16:20:00 -0500104 sortable: true,
Yoshie Muranakae24b17d2020-06-08 11:03:11 -0700105 },
106 {
107 key: 'health',
108 label: this.$t('pageHardwareStatus.table.health'),
109 formatter: this.tableFormatter,
Dixsie Wolmersa04d46f2020-10-22 06:34:56 -0500110 sortable: true,
Derick Montague602e98a2020-10-21 16:20:00 -0500111 tdClass: 'text-nowrap',
Yoshie Muranakae24b17d2020-06-08 11:03:11 -0700112 },
113 {
114 key: 'partNumber',
115 label: this.$t('pageHardwareStatus.table.partNumber'),
116 formatter: this.tableFormatter,
Derick Montague602e98a2020-10-21 16:20:00 -0500117 sortable: true,
Yoshie Muranakae24b17d2020-06-08 11:03:11 -0700118 },
119 {
120 key: 'serialNumber',
121 label: this.$t('pageHardwareStatus.table.serialNumber'),
122 formatter: this.tableFormatter,
Derick Montague602e98a2020-10-21 16:20:00 -0500123 sortable: true,
124 },
Yoshie Muranaka41770142020-06-18 14:00:55 -0700125 ],
Derick Montague602e98a2020-10-21 16:20:00 -0500126 searchTotalFilteredRows: 0,
Yoshie Muranakae24b17d2020-06-08 11:03:11 -0700127 };
128 },
129 computed: {
Sukanya Pandey99010962020-07-27 21:44:47 +0530130 filteredRows() {
131 return this.searchFilter
132 ? this.searchTotalFilteredRows
133 : this.dimms.length;
134 },
Yoshie Muranakae24b17d2020-06-08 11:03:11 -0700135 dimms() {
136 return this.$store.getters['memory/dimms'];
Derick Montague602e98a2020-10-21 16:20:00 -0500137 },
Yoshie Muranakae24b17d2020-06-08 11:03:11 -0700138 },
139 created() {
140 this.$store.dispatch('memory/getDimms').finally(() => {
Gunnar Millsdefc9e22020-07-07 20:29:03 -0500141 // Emit initial data fetch complete to parent component
Sukanya Pandeyedb8a772020-10-29 11:33:42 +0530142 this.$root.$emit('hardware-status-dimm-slot-complete');
Yoshie Muranakae24b17d2020-06-08 11:03:11 -0700143 });
144 },
145 methods: {
146 sortCompare(a, b, key) {
147 if (key === 'health') {
148 return this.sortStatus(a, b, key);
149 }
Yoshie Muranaka41770142020-06-18 14:00:55 -0700150 },
Sukanya Pandey99010962020-07-27 21:44:47 +0530151 onFiltered(filteredItems) {
152 this.searchTotalFilteredRows = filteredItems.length;
Derick Montague602e98a2020-10-21 16:20:00 -0500153 },
154 },
Yoshie Muranakae24b17d2020-06-08 11:03:11 -0700155};
156</script>