63 lines
2.2 KiB
Vue
63 lines
2.2 KiB
Vue
<script setup lang="ts">
|
||
import type { NdmSwitchDiagInfo, NdmSwitchResultVO } from '@/apis';
|
||
import { DeviceHardwareCard, DeviceHeaderCard, SwitchHistoryDiagCard, SwitchPortCard } from '@/components';
|
||
import { useSettingStore } from '@/stores';
|
||
import { destr } from 'destr';
|
||
import { NCard, NFlex, NTabPane, NTabs } from 'naive-ui';
|
||
import { storeToRefs } from 'pinia';
|
||
import { computed, ref, toRefs } from 'vue';
|
||
|
||
const props = defineProps<{
|
||
stationCode: string;
|
||
ndmSwitch: NdmSwitchResultVO;
|
||
}>();
|
||
|
||
const settingStore = useSettingStore();
|
||
const { debugModeEnabled } = storeToRefs(settingStore);
|
||
|
||
const { stationCode, ndmSwitch } = toRefs(props);
|
||
|
||
const lastDiagInfo = computed(() => {
|
||
const result = destr<any>(ndmSwitch.value.lastDiagInfo);
|
||
if (!result) return null;
|
||
if (typeof result !== 'object') return null;
|
||
return result as NdmSwitchDiagInfo;
|
||
});
|
||
|
||
const cpuUsage = computed(() => lastDiagInfo.value?.cpuRatio);
|
||
const memUsage = computed(() => lastDiagInfo.value?.memoryRatio);
|
||
|
||
const portInfoList = computed(() => lastDiagInfo.value?.info?.portInfoList ?? []);
|
||
|
||
const selectedTab = ref('设备状态');
|
||
</script>
|
||
|
||
<template>
|
||
<NCard size="small">
|
||
<NTabs v-model:value="selectedTab" size="small">
|
||
<NTabPane name="设备状态">
|
||
<NFlex vertical>
|
||
<DeviceHeaderCard :station-code="stationCode" :device="ndmSwitch" />
|
||
<DeviceHardwareCard :cpu-usage="cpuUsage" :mem-usage="memUsage" />
|
||
<SwitchPortCard :port-info-list="portInfoList" />
|
||
</NFlex>
|
||
</NTabPane>
|
||
<NTabPane name="历史诊断" tab="历史诊断">
|
||
<!-- 历史诊断组件中包含请求逻辑,当改变选择的设备时需要重新发起请求,因此添加显式的key触发组件的更新 -->
|
||
<SwitchHistoryDiagCard :station-code="stationCode" :ndm-switch="ndmSwitch" :key="ndmSwitch.id" />
|
||
</NTabPane>
|
||
<!-- <NTabPane name="设备配置" tab="设备配置"></NTabPane> -->
|
||
<NTabPane v-if="debugModeEnabled" name="原始数据" tab="原始数据">
|
||
<pre class="raw-data">{{ { ...ndmSwitch, lastDiagInfo } }}</pre>
|
||
</NTabPane>
|
||
</NTabs>
|
||
</NCard>
|
||
</template>
|
||
|
||
<style scoped lang="scss">
|
||
.raw-data {
|
||
white-space: pre-wrap;
|
||
word-break: break-all;
|
||
}
|
||
</style>
|