Files
nocodb/packages/nc-gui/components/webhook/CallLog/ReqResDetailCard.vue
mertmit 69a29568c7 chore: sync
Signed-off-by: mertmit <mertmit99@gmail.com>
2026-01-10 00:21:02 +03:00

181 lines
6.1 KiB
Vue

<script setup lang="ts">
import { defineAsyncComponent } from 'vue'
const props = defineProps<Props>()
const { isDark } = useTheme()
// Define Monaco Editor as an async component
const MonacoEditor = defineAsyncComponent(() => import('~/components/monaco/Editor.vue'))
interface Props {
title: string
headers: Record<string, any>
payload: unknown
params?: Record<string, any>
}
const copyPayloadContent = computed(() => {
return typeof props.payload === 'object' ? JSON.stringify(props.payload, null, 2) : props.payload?.toString()
})
const formattedPayload = computed(() => {
try {
return typeof props.payload === 'object'
? JSON.stringify(props.payload, null, 2)
: JSON.stringify(JSON.parse(props.payload), null, 2)
} catch {
return props.payload
}
})
</script>
<template>
<div class="detail-card">
<div class="detail-title font-weight-bold">{{ title }}</div>
<div class="content">
<div v-if="headers" class="detail-headers">
<span v-if="!headers['nc-script-id']" class="text-nc-content-gray-muted font-weight-bold text-small1">Header</span>
<div v-if="headers['nc-script-id']" class="log-details">
<div class="log-detail-item">
<NcTooltip class="text-small1 min-w-40" show-on-truncate-only>
<template #title>Script ID</template>
<span class="label script"> Script ID </span>
</NcTooltip>
<NcTooltip class="text-small1 max-w-[calc(100%_-_160px)] truncate" show-on-truncate-only>
<template #title>{{ headers['nc-script-id'] }}</template>
<span class="value"> {{ headers['nc-script-id'] }}</span>
</NcTooltip>
</div>
<div class="log-detail-item">
<NcTooltip class="text-small1 min-w-40" show-on-truncate-only>
<template #title>Script Title</template>
<span class="label script"> Script Title </span>
</NcTooltip>
<NcTooltip class="text-small1 max-w-[calc(100%_-_160px)] truncate" show-on-truncate-only>
<template #title>{{ headers['nc-script-title'] }}</template>
<span class="value"> {{ headers['nc-script-title'] }}</span>
</NcTooltip>
</div>
</div>
<div v-else class="log-details">
<div v-for="(value, key) in headers" :key="key" class="log-detail-item">
<NcTooltip class="text-small1 min-w-40" show-on-truncate-only>
<template #title>{{ key }}</template>
<span class="label"> {{ key }} </span>
</NcTooltip>
<NcTooltip class="text-small1 max-w-[calc(100%_-_160px)] truncate" show-on-truncate-only>
<template #title>{{ value }}</template>
<span class="value"> {{ value }}</span>
</NcTooltip>
</div>
</div>
</div>
<div v-if="params && Object.keys(params).length" class="detail-params">
<span class="text-nc-content-gray-muted font-weight-bold text-small1">Parameter</span>
<div class="log-details">
<div v-for="(value, key) in params" :key="key" class="log-detail-item">
<NcTooltip class="text-small1 min-w-40" show-on-truncate-only>
<template #title>{{ key }}</template>
<span class="label"> {{ key }}</span>
</NcTooltip>
<NcTooltip class="text-small1 max-w-[calc(100%_-_160px)]" show-on-truncate-only>
<template #title>{{ value }}</template>
<span class="value"> {{ value }}</span>
</NcTooltip>
</div>
</div>
</div>
<div v-if="payload && Object.keys(payload).length" class="detail-payload -mt-1">
<div class="text-sm text-nc-content-gray-muted font-weight-bold pb-2 flex justify-between items-center">
<span class="text-xs leading-[18px]">Payload</span>
<GeneralCopyButton :content="copyPayloadContent" size="xs" class="!px-1" />
</div>
<Suspense>
<template #default>
<MonacoEditor
:model-value="formattedPayload"
class="min-w-full w-full flex-1 min-h-50 resize-y overflow-auto expanded-editor max-h-screen"
hide-minimap
disable-deep-compare
read-only
:monaco-config="{
lineNumbers: 'on',
scrollbar: {
verticalScrollbarSize: 6,
horizontalScrollbarSize: 6,
},
wordWrap: 'on',
wrappingStrategy: 'advanced',
}"
:monaco-custom-theme="{
base: isDark ? 'vs-dark' : 'vs',
inherit: true,
rules: [],
colors: {
'editor.background': isDark ? '#171717' : '#f9f9fa',
},
}"
@keydown.enter.stop
@keydown.alt.stop
/>
</template>
<template #fallback>
<MonacoLoading class="min-h-50 min-w-full w-full flex-1" />
</template>
</Suspense>
</div>
</div>
</div>
</template>
<style scoped lang="scss">
.detail-card {
@apply flex flex-col w-full border-1 border-nc-border-gray-medium rounded-lg bg-nc-bg-gray-extralight h-full max-h-screen;
& > .detail-title {
@apply border-b border-nc-border-gray-medium px-3 py-2;
}
.content {
@apply flex-1 overflow-auto nc-scrollbar-thin flex flex-col;
& > div:not(:last-child) {
@apply border-b border-nc-border-gray-medium;
}
& > div {
@apply px-3 py-2;
}
.log-details {
@apply flex flex-col gap-1 mt-2;
.log-detail-item {
@apply flex flex-row w-full;
.label:not(.script) {
@apply min-w-40 font-weight-600 text-nc-content-gray-subtle text-small1 lowercase;
}
.value {
@apply min-w-0 text-nc-content-gray-subtle2 font-500 text-small1;
}
}
}
:deep(.monaco-editor) {
@apply !outline-none;
}
.detail-params,
.detail-headers,
.detail-payload {
@apply min-w-80;
}
.detail-payload {
@apply flex-grow;
}
}
}
</style>