blob: 044691187b69c93424163b960a26d485c3ae50ce [file] [log] [blame]
Yoshie Muranaka22d4d522020-12-03 10:58:35 -08001<template>
2 <b-container fluid="xl">
3 <page-title />
4 <b-row>
5 <b-col sm="6" lg="5" xl="4">
Yoshie Muranakaf415a082020-12-07 13:04:11 -08006 <page-section :section-title="$t('pageDumps.initiateDump')">
Yoshie Muranaka22d4d522020-12-03 10:58:35 -08007 <dumps-form />
8 </page-section>
9 </b-col>
10 </b-row>
11 <b-row>
12 <b-col xl="10">
Yoshie Muranakaf415a082020-12-07 13:04:11 -080013 <page-section :section-title="$t('pageDumps.dumpsAvailableOnBmc')">
Yoshie Muranaka22d4d522020-12-03 10:58:35 -080014 <b-row class="align-items-start">
15 <b-col sm="8" xl="6" class="d-sm-flex align-items-end">
16 <search
17 :placeholder="$t('pageDumps.table.searchDumps')"
18 @change-search="onChangeSearchInput"
19 @clear-search="onClearSearchInput"
20 />
21 <div class="ml-sm-4">
22 <table-cell-count
Sukanya Pandeye39b95d2021-08-23 18:11:02 +053023 :filtered-items-count="filteredRows"
24 :total-number-of-cells="allDumps.length"
Yoshie Muranaka22d4d522020-12-03 10:58:35 -080025 ></table-cell-count>
26 </div>
27 </b-col>
28 <b-col sm="8" md="7" xl="6">
29 <table-date-filter @change="onChangeDateTimeFilter" />
30 </b-col>
31 </b-row>
Sukanya Pandeye39b95d2021-08-23 18:11:02 +053032 <b-row>
33 <b-col class="text-right">
34 <table-filter
35 :filters="tableFilters"
36 @filter-change="onFilterChange"
37 />
38 </b-col>
39 </b-row>
Yoshie Muranaka22d4d522020-12-03 10:58:35 -080040 <table-toolbar
41 :selected-items-count="selectedRows.length"
42 :actions="batchActions"
43 @clear-selected="clearSelectedRows($refs.table)"
44 @batch-action="onTableBatchAction"
45 />
46 <b-table
47 ref="table"
48 show-empty
49 hover
50 sort-icon-left
51 no-sort-reset
Yoshie Muranakaf415a082020-12-07 13:04:11 -080052 sort-desc
Yoshie Muranaka22d4d522020-12-03 10:58:35 -080053 selectable
54 no-select-on-click
55 responsive="md"
56 sort-by="dateTime"
57 :fields="fields"
Sukanya Pandeye39b95d2021-08-23 18:11:02 +053058 :items="filteredDumps"
Yoshie Muranaka22d4d522020-12-03 10:58:35 -080059 :empty-text="$t('global.table.emptyMessage')"
60 :empty-filtered-text="$t('global.table.emptySearchMessage')"
61 :filter="searchFilter"
Kenneth Fullbright41057852021-12-27 16:19:37 -060062 :busy="isBusy"
Nikhil Ashokad7cd12c2024-05-28 11:56:41 +053063 @filtered="onFiltered"
Kenneth Fullbright41057852021-12-27 16:19:37 -060064 @row-selected="onRowSelected($event, filteredTableItems.length)"
Yoshie Muranaka22d4d522020-12-03 10:58:35 -080065 >
66 <!-- Checkbox column -->
67 <template #head(checkbox)>
68 <b-form-checkbox
69 v-model="tableHeaderCheckboxModel"
70 :indeterminate="tableHeaderCheckboxIndeterminate"
71 @change="onChangeHeaderCheckbox($refs.table)"
72 >
73 <span class="sr-only">{{ $t('global.table.selectAll') }}</span>
74 </b-form-checkbox>
75 </template>
76 <template #cell(checkbox)="row">
77 <b-form-checkbox
78 v-model="row.rowSelected"
79 @change="toggleSelectRow($refs.table, row.index)"
80 >
81 <span class="sr-only">{{ $t('global.table.selectItem') }}</span>
82 </b-form-checkbox>
83 </template>
84
85 <!-- Date and Time column -->
86 <template #cell(dateTime)="{ value }">
Surya Vde23ea22024-07-11 15:19:46 +053087 <p class="mb-0">{{ $filters.formatDate(value) }}</p>
88 <p class="mb-0">{{ $filters.formatTime(value) }}</p>
Yoshie Muranaka22d4d522020-12-03 10:58:35 -080089 </template>
90
91 <!-- Size column -->
92 <template #cell(size)="{ value }">
93 {{ convertBytesToMegabytes(value) }} MB
94 </template>
95
96 <!-- Actions column -->
97 <template #cell(actions)="row">
98 <table-row-action
99 v-for="(action, index) in row.item.actions"
100 :key="index"
101 :value="action.value"
102 :title="action.title"
Yoshie Muranakaa87f3e72021-01-04 14:08:04 -0800103 :download-location="row.item.data"
Sneha Patel3f9cfa22021-06-04 16:06:08 -0500104 :export-name="exportFileName(row)"
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800105 @click-table-action="onTableRowAction($event, row.item)"
106 >
107 <template #icon>
Yoshie Muranakaa87f3e72021-01-04 14:08:04 -0800108 <icon-download v-if="action.value === 'download'" />
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800109 <icon-delete v-if="action.value === 'delete'" />
110 </template>
111 </table-row-action>
112 </template>
113 </b-table>
114 </page-section>
115 </b-col>
116 </b-row>
Sukanya Pandeyf7000cd2021-08-26 18:34:49 +0530117 <!-- Table pagination -->
118 <b-row>
119 <b-col sm="6" xl="5">
120 <b-form-group
121 class="table-pagination-select"
122 :label="$t('global.table.itemsPerPage')"
123 label-for="pagination-items-per-page"
124 >
125 <b-form-select
126 id="pagination-items-per-page"
127 v-model="perPage"
128 :options="itemsPerPageOptions"
129 />
130 </b-form-group>
131 </b-col>
132 <b-col sm="6" xl="5">
133 <b-pagination
134 v-model="currentPage"
135 first-number
136 last-number
137 :per-page="perPage"
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530138 :total-rows="getTotalRowCount()"
Sukanya Pandeyf7000cd2021-08-26 18:34:49 +0530139 aria-controls="table-dump-entries"
140 />
141 </b-col>
142 </b-row>
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800143 </b-container>
144</template>
145
146<script>
147import IconDelete from '@carbon/icons-vue/es/trash-can/20';
Yoshie Muranakaa87f3e72021-01-04 14:08:04 -0800148import IconDownload from '@carbon/icons-vue/es/download/20';
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800149import DumpsForm from './DumpsForm';
150import PageSection from '@/components/Global/PageSection';
151import PageTitle from '@/components/Global/PageTitle';
152import Search from '@/components/Global/Search';
153import TableCellCount from '@/components/Global/TableCellCount';
154import TableDateFilter from '@/components/Global/TableDateFilter';
155import TableRowAction from '@/components/Global/TableRowAction';
156import TableToolbar from '@/components/Global/TableToolbar';
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800157import BVTableSelectableMixin, {
158 selectedRows,
159 tableHeaderCheckboxModel,
160 tableHeaderCheckboxIndeterminate,
161} from '@/components/Mixins/BVTableSelectableMixin';
Yoshie Muranakaf415a082020-12-07 13:04:11 -0800162import BVToastMixin from '@/components/Mixins/BVToastMixin';
Sukanya Pandeyf7000cd2021-08-26 18:34:49 +0530163import BVPaginationMixin, {
164 currentPage,
165 perPage,
166 itemsPerPageOptions,
167} from '@/components/Mixins/BVPaginationMixin';
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800168import LoadingBarMixin from '@/components/Mixins/LoadingBarMixin';
169import SearchFilterMixin, {
170 searchFilter,
171} from '@/components/Mixins/SearchFilterMixin';
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530172import TableFilter from '@/components/Global/TableFilter';
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800173import TableFilterMixin from '@/components/Mixins/TableFilterMixin';
Surya Vde23ea22024-07-11 15:19:46 +0530174import i18n from '@/i18n';
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800175
176export default {
177 components: {
178 DumpsForm,
179 IconDelete,
Yoshie Muranakaa87f3e72021-01-04 14:08:04 -0800180 IconDownload,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800181 PageSection,
182 PageTitle,
183 Search,
184 TableCellCount,
185 TableDateFilter,
186 TableRowAction,
187 TableToolbar,
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530188 TableFilter,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800189 },
190 mixins: [
191 BVTableSelectableMixin,
Yoshie Muranakaf415a082020-12-07 13:04:11 -0800192 BVToastMixin,
Sukanya Pandeyf7000cd2021-08-26 18:34:49 +0530193 BVPaginationMixin,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800194 LoadingBarMixin,
195 SearchFilterMixin,
196 TableFilterMixin,
197 ],
198 beforeRouteLeave(to, from, next) {
199 // Hide loader if the user navigates to another page
200 // before request is fulfilled.
201 this.hideLoader();
202 next();
203 },
204 data() {
205 return {
Kenneth Fullbright41057852021-12-27 16:19:37 -0600206 isBusy: true,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800207 fields: [
208 {
209 key: 'checkbox',
210 sortable: false,
211 },
212 {
213 key: 'dateTime',
Surya Vde23ea22024-07-11 15:19:46 +0530214 label: i18n.global.t('pageDumps.table.dateAndTime'),
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800215 sortable: true,
216 },
217 {
218 key: 'dumpType',
Surya Vde23ea22024-07-11 15:19:46 +0530219 label: i18n.global.t('pageDumps.table.dumpType'),
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800220 sortable: true,
221 },
222 {
223 key: 'id',
Surya Vde23ea22024-07-11 15:19:46 +0530224 label: i18n.global.t('pageDumps.table.id'),
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800225 sortable: true,
226 },
227 {
228 key: 'size',
Surya Vde23ea22024-07-11 15:19:46 +0530229 label: i18n.global.t('pageDumps.table.size'),
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800230 sortable: true,
231 },
232 {
233 key: 'actions',
234 sortable: false,
235 label: '',
236 tdClass: 'text-right text-nowrap',
237 },
238 ],
239 batchActions: [
240 {
241 value: 'delete',
Surya Vde23ea22024-07-11 15:19:46 +0530242 label: i18n.global.t('global.action.delete'),
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800243 },
244 ],
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530245 tableFilters: [
246 {
247 key: 'dumpType',
Surya Vde23ea22024-07-11 15:19:46 +0530248 label: i18n.global.t('pageDumps.table.dumpType'),
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530249 values: [
250 'BMC Dump Entry',
251 'Hostboot Dump Entry',
252 'Resource Dump Entry',
253 'System Dump Entry',
254 ],
255 },
256 ],
257 activeFilters: [],
Sukanya Pandeyf7000cd2021-08-26 18:34:49 +0530258 currentPage: currentPage,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800259 filterEndDate: null,
260 filterStartDate: null,
Sukanya Pandeyf7000cd2021-08-26 18:34:49 +0530261 itemsPerPageOptions: itemsPerPageOptions,
262 perPage: perPage,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800263 searchFilter,
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530264 searchTotalFilteredRows: 0,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800265 selectedRows,
266 tableHeaderCheckboxIndeterminate,
267 tableHeaderCheckboxModel,
268 };
269 },
270 computed: {
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530271 filteredRows() {
272 return this.searchFilter
273 ? this.searchTotalFilteredRows
274 : this.filteredDumps.length;
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800275 },
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530276 allDumps() {
277 return this.$store.getters['dumps/allDumps'].map((item) => {
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800278 return {
279 ...item,
280 actions: [
281 {
Yoshie Muranakaa87f3e72021-01-04 14:08:04 -0800282 value: 'download',
Surya Vde23ea22024-07-11 15:19:46 +0530283 title: i18n.global.t('global.action.download'),
Yoshie Muranakaa87f3e72021-01-04 14:08:04 -0800284 },
285 {
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800286 value: 'delete',
Surya Vde23ea22024-07-11 15:19:46 +0530287 title: i18n.global.t('global.action.delete'),
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800288 },
289 ],
290 };
291 });
292 },
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530293 filteredDumpsByDate() {
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800294 return this.getFilteredTableDataByDate(
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530295 this.allDumps,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800296 this.filterStartDate,
297 this.filterEndDate,
Ed Tanous81323992024-02-27 11:26:24 -0800298 'dateTime',
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800299 );
300 },
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530301 filteredDumps() {
302 return this.getFilteredTableData(
303 this.filteredDumpsByDate,
Ed Tanous81323992024-02-27 11:26:24 -0800304 this.activeFilters,
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530305 );
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800306 },
307 },
308 created() {
309 this.startLoader();
Kees Trommel210b1272024-06-26 13:10:50 +0200310 this.$store.dispatch('dumps/getAllDumps').finally(() => {
Kenneth Fullbright41057852021-12-27 16:19:37 -0600311 this.endLoader();
312 this.isBusy = false;
313 });
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800314 },
315 methods: {
316 convertBytesToMegabytes(bytes) {
317 return parseFloat((bytes / 1000000).toFixed(3));
318 },
Sukanya Pandeye39b95d2021-08-23 18:11:02 +0530319 onFilterChange({ activeFilters }) {
320 this.activeFilters = activeFilters;
321 },
322 onFiltered(filteredItems) {
323 this.searchTotalFilteredRows = filteredItems.length;
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800324 },
325 onChangeDateTimeFilter({ fromDate, toDate }) {
326 this.filterStartDate = fromDate;
327 this.filterEndDate = toDate;
328 },
Yoshie Muranakaf415a082020-12-07 13:04:11 -0800329 onTableRowAction(action, dump) {
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800330 if (action === 'delete') {
331 this.$bvModal
Surya Vde23ea22024-07-11 15:19:46 +0530332 .msgBoxConfirm(
333 i18n.global.t('pageDumps.modal.deleteDumpConfirmation'),
334 {
335 title: i18n.global.t('pageDumps.modal.deleteDump'),
336 okTitle: i18n.global.t('pageDumps.modal.deleteDump'),
337 cancelTitle: i18n.global.t('global.action.cancel'),
338 autoFocusButton: 'ok',
339 },
340 )
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800341 .then((deleteConfrimed) => {
Yoshie Muranakaf415a082020-12-07 13:04:11 -0800342 if (deleteConfrimed) {
343 this.$store
344 .dispatch('dumps/deleteDumps', [dump])
345 .then((messages) => {
346 messages.forEach(({ type, message }) => {
347 if (type === 'success') {
348 this.successToast(message);
349 } else if (type === 'error') {
350 this.errorToast(message);
351 }
352 });
353 });
354 }
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800355 });
356 }
357 },
358 onTableBatchAction(action) {
359 if (action === 'delete') {
360 this.$bvModal
361 .msgBoxConfirm(
Surya Vde23ea22024-07-11 15:19:46 +0530362 i18n.global.t(
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800363 'pageDumps.modal.deleteDumpConfirmation',
Ed Tanous81323992024-02-27 11:26:24 -0800364 this.selectedRows.length,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800365 ),
366 {
Surya Vde23ea22024-07-11 15:19:46 +0530367 title: i18n.global.t(
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800368 'pageDumps.modal.deleteDump',
Ed Tanous81323992024-02-27 11:26:24 -0800369 this.selectedRows.length,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800370 ),
Surya Vde23ea22024-07-11 15:19:46 +0530371 okTitle: i18n.global.t(
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800372 'pageDumps.modal.deleteDump',
Ed Tanous81323992024-02-27 11:26:24 -0800373 this.selectedRows.length,
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800374 ),
Surya Vde23ea22024-07-11 15:19:46 +0530375 cancelTitle: i18n.global.t('global.action.cancel'),
Paul Fertserd1ef18e2024-04-06 08:04:14 +0000376 autoFocusButton: 'ok',
Ed Tanous81323992024-02-27 11:26:24 -0800377 },
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800378 )
379 .then((deleteConfrimed) => {
Yoshie Muranakaf415a082020-12-07 13:04:11 -0800380 if (deleteConfrimed) {
381 if (this.selectedRows.length === this.dumps.length) {
382 this.$store
383 .dispatch('dumps/deleteAllDumps')
384 .then((success) => this.successToast(success))
385 .catch(({ message }) => this.errorToast(message));
386 } else {
387 this.$store
388 .dispatch('dumps/deleteDumps', this.selectedRows)
389 .then((messages) => {
390 messages.forEach(({ type, message }) => {
391 if (type === 'success') {
392 this.successToast(message);
393 } else if (type === 'error') {
394 this.errorToast(message);
395 }
396 });
397 });
398 }
399 }
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800400 });
401 }
402 },
Sneha Patel3f9cfa22021-06-04 16:06:08 -0500403 exportFileName(row) {
Gunnar Millscc79a532021-11-30 19:33:42 -0600404 let filename = row.item.dumpType + '_' + row.item.id + '.tar.xz';
Sneha Patel3f9cfa22021-06-04 16:06:08 -0500405 filename = filename.replace(RegExp(' ', 'g'), '_');
406 return filename;
407 },
Yoshie Muranaka22d4d522020-12-03 10:58:35 -0800408 },
409};
410</script>