File size: 10,880 Bytes
126ef31 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | <template>
<div class="space-y-4">
<!-- Headers key-value rows -->
<div>
<label class="input-label">{{ t('admin.channelMonitor.advanced.headers') }}</label>
<div class="space-y-1.5">
<div
v-for="(row, i) in headerRows"
:key="i"
class="flex items-center gap-2"
>
<input
v-model="row.name"
type="text"
spellcheck="false"
:placeholder="t('admin.channelMonitor.advanced.headerNamePlaceholder')"
class="input w-52 flex-none font-mono text-xs"
@blur="commitHeaders"
/>
<input
v-model="row.value"
type="text"
spellcheck="false"
:placeholder="t('admin.channelMonitor.advanced.headerValuePlaceholder')"
class="input flex-1 font-mono text-xs"
@blur="commitHeaders"
/>
<button
type="button"
class="flex-none rounded p-1 text-gray-400 hover:bg-red-50 hover:text-red-600 dark:hover:bg-red-500/10 dark:hover:text-red-400"
:title="t('common.delete')"
@click="removeRow(i)"
>
<svg class="h-4 w-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
</svg>
</button>
</div>
<button
type="button"
class="inline-flex items-center gap-1 rounded border border-dashed border-gray-300 px-2 py-1 text-xs text-gray-500 hover:border-primary-400 hover:text-primary-600 dark:border-dark-600 dark:text-gray-400 dark:hover:border-primary-500 dark:hover:text-primary-400"
@click="addRow"
>
<svg class="h-3.5 w-3.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m8-8H4" />
</svg>
{{ t('admin.channelMonitor.advanced.headerAddRow') }}
</button>
</div>
<p v-if="headersError" class="mt-1 text-xs text-red-500">{{ headersError }}</p>
<p v-else class="mt-1 text-xs text-gray-400">
{{ t('admin.channelMonitor.advanced.headersHint') }}
</p>
</div>
<!-- Body mode radio -->
<div>
<label class="input-label">{{ t('admin.channelMonitor.advanced.bodyMode') }}</label>
<div class="grid grid-cols-3 gap-3">
<button
v-for="opt in bodyModeOptions"
:key="opt.value"
type="button"
class="rounded-lg border-2 px-3 py-2 text-sm font-medium transition-colors"
:class="bodyModeButtonClass(opt.value)"
@click="updateBodyMode(opt.value)"
>
{{ opt.label }}
</button>
</div>
<p class="mt-1 text-xs text-gray-400">
{{ bodyModeHint }}
</p>
</div>
<!-- Body JSON (仅当 mode != off) -->
<div v-if="bodyOverrideMode !== 'off'">
<div class="mb-1 flex items-center justify-between">
<label class="input-label !mb-0">{{ t('admin.channelMonitor.advanced.bodyJson') }}</label>
<button
type="button"
class="text-xs text-primary-600 hover:underline disabled:cursor-not-allowed disabled:text-gray-400 disabled:no-underline dark:text-primary-400"
:disabled="!bodyText.trim()"
@click="formatBody"
>
{{ t('admin.channelMonitor.advanced.bodyJsonFormat') }}
</button>
</div>
<textarea
v-model="bodyText"
rows="10"
:placeholder="bodyPlaceholder"
class="input font-mono text-xs"
style="white-space: pre; overflow-wrap: normal; overflow-x: auto;"
spellcheck="false"
@blur="commitBody"
/>
<p v-if="bodyError" class="mt-1 text-xs text-red-500">{{ bodyError }}</p>
<p v-else class="mt-1 text-xs text-gray-400">
{{ t('admin.channelMonitor.advanced.bodyJsonHint') }}
</p>
</div>
</div>
</template>
<script setup lang="ts">
import { computed, ref, watch } from 'vue'
import { useI18n } from 'vue-i18n'
import type { APIMode, BodyOverrideMode, Provider } from '@/api/admin/channelMonitor'
import {
API_MODE_RESPONSES,
PROVIDER_OPENAI,
} from '@/constants/channelMonitor'
const props = defineProps<{
provider?: Provider
apiMode?: APIMode
extraHeaders: Record<string, string>
bodyOverrideMode: BodyOverrideMode
bodyOverride: Record<string, unknown> | null
}>()
const emit = defineEmits<{
(e: 'update:extraHeaders', value: Record<string, string>): void
(e: 'update:bodyOverrideMode', value: BodyOverrideMode): void
(e: 'update:bodyOverride', value: Record<string, unknown> | null): void
}>()
const { t } = useI18n()
// ---- Headers key-value rows ----
interface HeaderRow {
name: string
value: string
}
const headerRows = ref<HeaderRow[]>(toRows(props.extraHeaders))
const headersError = ref('')
watch(
() => props.extraHeaders,
(v) => {
// 外部重置时(切换平台 / 应用模板)同步行。
// 同值不回写,避免每次 commit 都把行重排。
if (!isSameHeaderMap(toMap(headerRows.value), v)) {
headerRows.value = toRows(v)
}
headersError.value = ''
},
)
function toRows(h: Record<string, string>): HeaderRow[] {
const entries = Object.entries(h || {})
if (entries.length === 0) return [{ name: '', value: '' }]
return entries.map(([name, value]) => ({ name, value }))
}
function toMap(rows: HeaderRow[]): Record<string, string> {
const out: Record<string, string> = {}
for (const row of rows) {
const name = row.name.trim()
if (name === '') continue
out[name] = row.value
}
return out
}
function isSameHeaderMap(a: Record<string, string>, b: Record<string, string>): boolean {
const ak = Object.keys(a)
const bk = Object.keys(b || {})
if (ak.length !== bk.length) return false
for (const k of ak) {
if (a[k] !== b[k]) return false
}
return true
}
function commitHeaders() {
// 空白 name + 空白 value 的行允许保留作为"占位新行",不报错;
// name 非空但 value 为空(或反之)都视为用户正在编辑,同样不报错。
// 只在 name 里含冒号这种明显不合法时兜一下。
for (const row of headerRows.value) {
const name = row.name.trim()
if (name === '') continue
if (name.includes(':') || /\s/.test(name)) {
headersError.value = t('admin.channelMonitor.advanced.headerNameInvalid', { name })
return
}
}
headersError.value = ''
emit('update:extraHeaders', toMap(headerRows.value))
}
function addRow() {
headerRows.value.push({ name: '', value: '' })
}
function removeRow(index: number) {
headerRows.value.splice(index, 1)
if (headerRows.value.length === 0) {
headerRows.value.push({ name: '', value: '' })
}
commitHeaders()
}
// ---- Body mode + JSON ----
const bodyText = ref(serializeBody(props.bodyOverride))
const bodyError = ref('')
watch(
() => props.bodyOverride,
(v) => {
bodyText.value = serializeBody(v)
bodyError.value = ''
},
)
function commitBody() {
if (props.bodyOverrideMode === 'off') {
return
}
const trimmed = bodyText.value.trim()
if (trimmed === '') {
emit('update:bodyOverride', null)
bodyError.value = ''
return
}
try {
const parsed = JSON.parse(trimmed)
if (parsed === null || typeof parsed !== 'object' || Array.isArray(parsed)) {
bodyError.value = t('admin.channelMonitor.advanced.bodyJsonObjectError')
return
}
emit('update:bodyOverride', parsed as Record<string, unknown>)
bodyError.value = ''
} catch (e) {
bodyError.value =
t('admin.channelMonitor.advanced.bodyJsonError') +
': ' +
(e instanceof Error ? e.message : String(e))
}
}
function formatBody() {
const trimmed = bodyText.value.trim()
if (trimmed === '') return
try {
const parsed = JSON.parse(trimmed)
bodyText.value = JSON.stringify(parsed, null, 2)
bodyError.value = ''
// 同步把校验过的对象提交,避免格式化后焦点未移走时父组件读到旧值
if (parsed && typeof parsed === 'object' && !Array.isArray(parsed)) {
emit('update:bodyOverride', parsed as Record<string, unknown>)
}
} catch (e) {
bodyError.value =
t('admin.channelMonitor.advanced.bodyJsonError') +
': ' +
(e instanceof Error ? e.message : String(e))
}
}
function serializeBody(body: Record<string, unknown> | null): string {
if (!body || Object.keys(body).length === 0) return ''
return JSON.stringify(body, null, 2)
}
function updateBodyMode(mode: BodyOverrideMode) {
emit('update:bodyOverrideMode', mode)
// 切换到 off 时清掉 body(提示用户)
if (mode === 'off') {
emit('update:bodyOverride', null)
}
}
const bodyModeOptions = computed<{ value: BodyOverrideMode; label: string }[]>(() => [
{ value: 'off', label: t('admin.channelMonitor.advanced.bodyModeOff') },
{ value: 'merge', label: t('admin.channelMonitor.advanced.bodyModeMerge') },
{ value: 'replace', label: t('admin.channelMonitor.advanced.bodyModeReplace') },
])
function bodyModeButtonClass(mode: BodyOverrideMode): string {
const active = props.bodyOverrideMode === mode
if (active) {
return 'border-primary-500 bg-primary-50 text-primary-700 dark:bg-primary-500/15 dark:text-primary-300 dark:border-primary-400'
}
return 'border-gray-200 bg-white text-gray-600 hover:border-primary-300 dark:border-dark-700 dark:bg-dark-800 dark:text-gray-400'
}
const bodyModeHint = computed(() => {
switch (props.bodyOverrideMode) {
case 'merge':
return t('admin.channelMonitor.advanced.bodyModeHintMerge')
case 'replace':
return t('admin.channelMonitor.advanced.bodyModeHintReplace')
default:
return t('admin.channelMonitor.advanced.bodyModeHintOff')
}
})
const bodyPlaceholder = computed(() => {
if (props.provider === PROVIDER_OPENAI && props.apiMode === API_MODE_RESPONSES) {
if (props.bodyOverrideMode === 'merge') {
return '{\n "max_output_tokens": 20\n}'
}
return '{\n "model": "gpt-4o-mini",\n "instructions": "You are a health check endpoint. Reply briefly.",\n "input": "Reply with exactly: ok",\n "max_output_tokens": 20,\n "stream": false\n}'
}
if (props.provider === PROVIDER_OPENAI) {
if (props.bodyOverrideMode === 'merge') {
return '{\n "max_tokens": 20\n}'
}
return '{\n "model": "gpt-4o-mini",\n "messages": [{"role":"user","content":"Reply with exactly: ok"}],\n "max_tokens": 20,\n "stream": false\n}'
}
if (props.bodyOverrideMode === 'merge') {
return '{\n "system": "You are Claude Code..."\n}'
}
return '{\n "model": "claude-x",\n "messages": [{"role":"user","content":"hi"}],\n "max_tokens": 10\n}'
})
</script>
|