summaryrefslogtreecommitdiff
path: root/src/views/_sila/HardwareStatus/Inventory/InventoryTableChassis.vue
diff options
context:
space:
mode:
authorAnna Tsyganova <ATSyganova@IBS.RU>2022-07-08 11:32:33 +0300
committerAnna Tsyganova <ATSyganova@IBS.RU>2022-07-08 11:32:33 +0300
commitf12e602ab84f2a4ae28a064ed2058f57b9cf9bc3 (patch)
tree02fb24ee79bc558eebc374aa77c6aed7964a69d2 /src/views/_sila/HardwareStatus/Inventory/InventoryTableChassis.vue
parent40c493597703305ae732b414bda83a4f00b25745 (diff)
downloadwebui-vue-f12e602ab84f2a4ae28a064ed2058f57b9cf9bc3.tar.xz
Fix a little global components
Issue: SILABMC-191
Diffstat (limited to 'src/views/_sila/HardwareStatus/Inventory/InventoryTableChassis.vue')
-rw-r--r--src/views/_sila/HardwareStatus/Inventory/InventoryTableChassis.vue191
1 files changed, 0 insertions, 191 deletions
diff --git a/src/views/_sila/HardwareStatus/Inventory/InventoryTableChassis.vue b/src/views/_sila/HardwareStatus/Inventory/InventoryTableChassis.vue
deleted file mode 100644
index b49cec7f..00000000
--- a/src/views/_sila/HardwareStatus/Inventory/InventoryTableChassis.vue
+++ /dev/null
@@ -1,191 +0,0 @@
-<template>
- <page-section :section-title="$t('pageInventory.chassis')">
- <b-table
- responsive="md"
- hover
- :items="chassis"
- :fields="fields"
- show-empty
- :empty-text="$t('global.table.emptyMessage')"
- :busy="isBusy"
- >
- <!-- Expand chevron icon -->
- <template #cell(expandRow)="row">
- <b-button
- variant="link"
- data-test-id="hardwareStatus-button-expandChassis"
- :title="expandRowLabel"
- class="btn-icon-only"
- @click="toggleRowDetails(row)"
- >
- <icon-chevron />
- <span class="sr-only">{{ expandRowLabel }}</span>
- </b-button>
- </template>
-
- <!-- Health -->
- <template #cell(health)="{ value }">
- <status-icon :status="statusIcon(value)" />
- {{ value }}
- </template>
- <!-- Toggle identify LED -->
- <template #cell(identifyLed)="row">
- <b-form-checkbox
- v-if="hasIdentifyLed(row.item.identifyLed)"
- v-model="row.item.identifyLed"
- name="switch"
- switch
- @change="toggleIdentifyLedValue(row.item)"
- >
- <span v-if="row.item.identifyLed">
- {{ $t('global.status.on') }}
- </span>
- <span v-else> {{ $t('global.status.off') }} </span>
- </b-form-checkbox>
- <div v-else>--</div>
- </template>
- <template #row-details="{ item }">
- <b-container fluid>
- <b-row>
- <b-col class="mt-2" sm="6" xl="6">
- <dl>
- <!-- Name -->
- <dt>{{ $t('pageInventory.table.name') }}:</dt>
- <dd>{{ dataFormatter(item.name) }}</dd>
- <!-- Part number -->
- <dt>{{ $t('pageInventory.table.partNumber') }}:</dt>
- <dd>{{ dataFormatter(item.partNumber) }}</dd>
- <!-- Serial Number -->
- <dt>{{ $t('pageInventory.table.serialNumber') }}:</dt>
- <dd>{{ dataFormatter(item.serialNumber) }}</dd>
- <!-- Model -->
- <dt>{{ $t('pageInventory.table.model') }}:</dt>
- <dd class="mb-2">
- {{ dataFormatter(item.model) }}
- </dd>
- <!-- Asset tag -->
- <dt>{{ $t('pageInventory.table.assetTag') }}:</dt>
- <dd class="mb-2">
- {{ dataFormatter(item.assetTag) }}
- </dd>
- </dl>
- </b-col>
- <b-col class="mt-2" sm="6" xl="6">
- <dl>
- <!-- Status state -->
- <dt>{{ $t('pageInventory.table.statusState') }}:</dt>
- <dd>{{ dataFormatter(item.statusState) }}</dd>
- <!-- Power state -->
- <dt>{{ $t('pageInventory.table.power') }}:</dt>
- <dd>{{ dataFormatter(item.power) }}</dd>
- <!-- Health rollup -->
- <dt>{{ $t('pageInventory.table.healthRollup') }}:</dt>
- <dd>{{ dataFormatter(item.healthRollup) }}</dd>
- </dl>
- </b-col>
- </b-row>
- <div class="section-divider mb-3 mt-3"></div>
- <b-row>
- <b-col class="mt-2" sm="6" xl="6">
- <dl>
- <!-- Manufacturer -->
- <dt>{{ $t('pageInventory.table.manufacturer') }}:</dt>
- <dd>{{ dataFormatter(item.manufacturer) }}</dd>
- <!-- Chassis Type -->
- <dt>{{ $t('pageInventory.table.chassisType') }}:</dt>
- <dd>{{ dataFormatter(item.chassisType) }}</dd>
- </dl>
- </b-col>
- <b-col class="mt-2" sm="6" xl="6">
- <dl>
- <!-- Min power -->
- <dt>{{ $t('pageInventory.table.minPowerWatts') }}:</dt>
- <dd>{{ dataFormatter(item.minPowerWatts) }}</dd>
- <!-- Max power -->
- <dt>{{ $t('pageInventory.table.maxPowerWatts') }}:</dt>
- <dd>{{ dataFormatter(item.maxPowerWatts) }}</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 BVToastMixin from '@/components/Mixins/BVToastMixin';
-import StatusIcon from '@/components/Global/StatusIcon';
-
-import TableRowExpandMixin, {
- expandRowLabel,
-} from '@/components/Mixins/TableRowExpandMixin';
-import DataFormatterMixin from '@/components/Mixins/DataFormatterMixin';
-
-export default {
- components: { IconChevron, PageSection, StatusIcon },
- mixins: [BVToastMixin, TableRowExpandMixin, DataFormatterMixin],
- data() {
- return {
- isBusy: true,
- fields: [
- {
- key: 'expandRow',
- label: '',
- tdClass: 'table-row-expand',
- },
- {
- key: 'id',
- label: this.$t('pageInventory.table.id'),
- formatter: this.dataFormatter,
- },
- {
- key: 'health',
- label: this.$t('pageInventory.table.health'),
- formatter: this.dataFormatter,
- tdClass: 'text-nowrap',
- },
- {
- key: 'locationNumber',
- label: this.$t('pageInventory.table.locationNumber'),
- formatter: this.dataFormatter,
- },
- {
- key: 'identifyLed',
- label: this.$t('pageInventory.table.identifyLed'),
- formatter: this.dataFormatter,
- },
- ],
- expandRowLabel: expandRowLabel,
- };
- },
- 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('hardware-status-chassis-complete');
- this.isBusy = false;
- });
- },
- methods: {
- toggleIdentifyLedValue(row) {
- this.$store
- .dispatch('chassis/updateIdentifyLedValue', {
- uri: row.uri,
- identifyLed: row.identifyLed,
- })
- .catch(({ message }) => this.errorToast(message));
- },
- // TO DO: Remove this method when the LocationIndicatorActive is added from backend.
- hasIdentifyLed(identifyLed) {
- return typeof identifyLed === 'boolean';
- },
- },
-};
-</script>