From fea3552774cd7528e0c8fc38fb24d03a1464092b Mon Sep 17 00:00:00 2001 From: t8y2 <1156263951@qq.com> Date: Wed, 13 May 2026 11:12:32 +0800 Subject: [PATCH] feat: add Redis member detail viewer --- src/components/redis/RedisValueViewer.vue | 151 ++++++++++++++++++++-- src/i18n/locales/en.ts | 4 + src/i18n/locales/es.ts | 4 + src/i18n/locales/zh-CN.ts | 4 + src/lib/redisValuePresentation.ts | 26 ++++ tests/redisValuePresentation.test.ts | 24 ++++ 6 files changed, 199 insertions(+), 14 deletions(-) create mode 100644 src/lib/redisValuePresentation.ts create mode 100644 tests/redisValuePresentation.test.ts diff --git a/src/components/redis/RedisValueViewer.vue b/src/components/redis/RedisValueViewer.vue index 76f1abc04..0165c8b01 100644 --- a/src/components/redis/RedisValueViewer.vue +++ b/src/components/redis/RedisValueViewer.vue @@ -1,13 +1,15 @@