blob: fdf58de496f0f1b8d481288dc6336503800db9d1 [file] [log] [blame]
<template>
<page-section :section-title="$t('pageHardwareStatus.chassis')">
<b-table :items="chassis" :fields="fields">
<!-- Expand chevron icon -->
<template v-slot:cell(expandRow)="row">
<b-button
variant="link"
data-test-id="hardwareStatus-button-expandChassis"
@click="row.toggleDetails"
>
<icon-chevron />
</b-button>
</template>
<!-- Health -->
<template v-slot:cell(health)="{ value }">
<status-icon :status="statusIcon(value)" />
{{ value }}
</template>
<template v-slot:row-details="{ item }">
<b-container fluid>
<b-row>
<b-col sm="6" xl="4">
<dl>
<!-- Chassis type -->
<dt>{{ $t('pageHardwareStatus.table.chassisType') }}:</dt>
<dd>{{ tableFormatter(item.chassisType) }}</dd>
<br />
<!-- Manufacturer -->
<dt>{{ $t('pageHardwareStatus.table.manufacturer') }}:</dt>
<dd>{{ tableFormatter(item.manufacturer) }}</dd>
<br />
<!-- Power state -->
<dt>{{ $t('pageHardwareStatus.table.powerState') }}:</dt>
<dd>{{ tableFormatter(item.powerState) }}</dd>
</dl>
</b-col>
<b-col sm="6" xl="4">
<dl>
<!-- Health rollup -->
<dt>
{{ $t('pageHardwareStatus.table.statusHealthRollup') }}:
</dt>
<dd>{{ tableFormatter(item.healthRollup) }}</dd>
<br />
<!-- Status state -->
<dt>{{ $t('pageHardwareStatus.table.statusState') }}:</dt>
<dd>{{ tableFormatter(item.statusState) }}</dd>
</dl>
</b-col>
</b-row>
</b-container>
</template>
</b-table>
</page-section>
</template>
<script>
import PageSection from '@/components/Global/PageSection';
import IconChevron from '@carbon/icons-vue/es/chevron--down/20';
import StatusIcon from '@/components/Global/StatusIcon';
import TableDataFormatterMixin from '@/components/Mixins/TableDataFormatterMixin';
export default {
components: { IconChevron, PageSection, StatusIcon },
mixins: [TableDataFormatterMixin],
data() {
return {
fields: [
{
key: 'expandRow',
label: '',
tdClass: 'table-row-expand'
},
{
key: 'id',
label: this.$t('pageHardwareStatus.table.id'),
formatter: this.tableFormatter
},
{
key: 'health',
label: this.$t('pageHardwareStatus.table.health'),
formatter: this.tableFormatter
},
{
key: 'partNumber',
label: this.$t('pageHardwareStatus.table.partNumber'),
formatter: this.tableFormatter
},
{
key: 'serialNumber',
label: this.$t('pageHardwareStatus.table.serialNumber'),
formatter: this.tableFormatter
}
]
};
},
computed: {
chassis() {
return this.$store.getters['chassis/chassis'];
}
},
created() {
this.$store.dispatch('chassis/getChassisInfo').finally(() => {
// Emit initial data fetch complete to parent component
this.$root.$emit('hardwareStatus::chassis::complete');
});
}
};
</script>