From 9f498c83df1520ae45ef9b48a73de786f3adba11 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 10 Mar 2025 08:47:46 +0100 Subject: [PATCH] test: refs #6994 add json-link front test --- src/components/common/VnJsonValue.vue | 14 +++++--- .../common/__tests__/VnJsonValue.spec.js | 34 ++++++++++++------- 2 files changed, 31 insertions(+), 17 deletions(-) diff --git a/src/components/common/VnJsonValue.vue b/src/components/common/VnJsonValue.vue index 331c72d0a..f89918d2c 100644 --- a/src/components/common/VnJsonValue.vue +++ b/src/components/common/VnJsonValue.vue @@ -4,7 +4,7 @@ import { toDateString } from 'src/filters'; import { useDescriptorStore } from 'src/stores/useDescriptorStore'; const props = defineProps({ - value: { type: [String, Number, Boolean, Object], default: undefined }, + value: { type: Object, default: undefined }, name: { type: String, default: undefined }, }); @@ -32,6 +32,7 @@ const updateValue = () => { Math.round((propsValue.value + Number.EPSILON) * 1000) / 1000 ).toString(); } + cssClass = isLink(cssClass); break; case 'boolean': t = propsValue.value ? '✓' : '✗'; @@ -40,8 +41,9 @@ const updateValue = () => { case 'string': t = propsValue.value.length <= maxStrLen - ? propsValue + ? propsValue.value : propsValue.value.substring(0, maxStrLen) + '...'; + cssClass = isLink(cssClass); break; case 'object': if (propsValue.value instanceof Date) { @@ -56,6 +58,11 @@ const updateValue = () => { } }; +function isLink(cssClass) { + if (!descriptorStore.has(props.name)) return cssClass; + return 'link json-link'; +} + watch(() => props.value, updateValue); updateValue(); @@ -63,10 +70,9 @@ updateValue();