feat: add more event for jsonViewer (#5546)

* 为JsonViewer添加事件支持
This commit is contained in:
Netfan
2025-02-17 10:41:09 +08:00
committed by GitHub
parent 799934171a
commit b6b97accb1
4 changed files with 112 additions and 31 deletions

View File

@@ -26,8 +26,8 @@ export const json1 = {
],
};
export const json2 = `
{
export const json2 = JSON.parse(`
{
"id": "chatcmpl-123",
"object": "chat.completion",
"created": 1677652288,
@@ -46,6 +46,21 @@ export const json2 = `
"completion_tokens": 12,
"total_tokens": 21,
"debug_mode": true
}
},
"debug": {
"startAt": "2021-08-01T00:00:00Z",
"logs": [
{
"timestamp": "2021-08-01T00:00:00Z",
"message": "This is a debug message",
"extra":[ "extra1", "extra2" ]
},
{
"timestamp": "2021-08-01T00:00:01Z",
"message": "This is another debug message",
"extra":[ "extra3", "extra4" ]
}
]
}
}
`;
`);

View File

@@ -1,9 +1,23 @@
<script lang="ts" setup>
import type { JsonViewerAction, JsonViewerValue } from '@vben/common-ui';
import { JsonViewer, Page } from '@vben/common-ui';
import { Card } from 'ant-design-vue';
import { Card, message } from 'ant-design-vue';
import { json1, json2 } from './data';
function handleKeyClick(key: string) {
message.info(`点击了Key ${key}`);
}
function handleValueClick(value: JsonViewerValue) {
message.info(`点击了Value ${JSON.stringify(value)}`);
}
function handleCopied(_event: JsonViewerAction) {
message.success('已复制JSON');
}
</script>
<template>
<Page
@@ -11,16 +25,27 @@ import { json1, json2 } from './data';
description="一个渲染 JSON 结构数据的组件,支持复制、展开等,简单易用"
>
<Card title="默认配置">
<JsonViewer v-model="json1" />
<JsonViewer :value="json1" />
</Card>
<Card title="可复制、默认展开3层、显示边框" class="mt-4">
<Card title="可复制、默认展开3层、显示边框、事件处理" class="mt-4">
<JsonViewer
v-model="json2"
:value="json2"
:expand-depth="3"
copyable
:sort="false"
@key-click="handleKeyClick"
@value-click="handleValueClick"
@copied="handleCopied"
boxed
/>
</Card>
<Card title="预览模式" class="mt-4">
<JsonViewer
:value="json2"
copyable
preview-mode
:show-array-index="false"
/>
</Card>
</Page>
</template>