reactor:【infra 基础设施】redis 进一步统一代码风格

This commit is contained in:
YunaiV
2025-09-08 23:51:07 +08:00
parent 58ed3bfc2e
commit 6bb4005ae0
5 changed files with 16 additions and 22 deletions

View File

@@ -16,13 +16,13 @@ import Memory from './modules/memory.vue';
const redisData = ref<InfraRedisApi.RedisMonitorInfo>();
/** 统一加载 Redis 数据 */
const loadRedisData = async () => {
async function loadRedisData() {
try {
redisData.value = await getRedisMonitorInfo();
} catch (error) {
console.error('加载 Redis 数据失败', error);
}
};
}
onMounted(() => {
loadRedisData();

View File

@@ -15,7 +15,7 @@ const chartRef = ref<EchartsUIType>();
const { renderEcharts } = useEcharts(chartRef);
/** 渲染命令统计图表 */
const renderCommandStats = () => {
function renderCommandStats() {
if (!props.redisData?.commandStats) {
return;
}
@@ -76,7 +76,7 @@ const renderCommandStats = () => {
},
],
});
};
}
/** 监听数据变化,重新渲染图表 */
watch(
@@ -97,7 +97,5 @@ onMounted(() => {
</script>
<template>
<div>
<EchartsUI ref="chartRef" height="420px" />
</div>
<EchartsUI ref="chartRef" height="420px" />
</template>

View File

@@ -15,7 +15,7 @@ const chartRef = ref<EchartsUIType>();
const { renderEcharts } = useEcharts(chartRef);
/** 解析内存值,移除单位,转为数字 */
const parseMemoryValue = (memStr: string | undefined): number => {
function parseMemoryValue(memStr: string | undefined): number {
if (!memStr) {
return 0;
}
@@ -27,10 +27,10 @@ const parseMemoryValue = (memStr: string | undefined): number => {
} catch {
return 0;
}
};
}
/** 渲染内存使用图表 */
const renderMemoryChart = () => {
function renderMemoryChart() {
if (!props.redisData?.info) {
return;
}
@@ -110,7 +110,7 @@ const renderMemoryChart = () => {
},
],
});
};
}
/** 监听数据变化,重新渲染图表 */
watch(
@@ -131,7 +131,5 @@ onMounted(() => {
</script>
<template>
<div>
<EchartsUI ref="chartRef" height="420px" />
</div>
<EchartsUI ref="chartRef" height="420px" />
</template>