egg_tools/test/inject.ts
zhaoyingbo 0e0c0512ce
All checks were successful
/ release (push) Successful in 29s
feat(lark-msg): 修改注入变量的位置
2024-10-16 12:14:05 +00:00

52 lines
1.3 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { has, isArray, isObject, mapValues } from "lodash"
const variables = {
content: "分析中,请稍等...",
requestId: "1988fcc0-6ca8-4015-b256-b19945c33117",
xName: "Group Agent",
xAuthor: "AI创新应用组",
xIcon: "🔥",
}
const content = {
config: { update_multi: true },
elements: [
{ tag: "markdown", content: "分析中,请稍等..." },
{ tag: "hr" },
{
tag: "note",
elements: [
{
tag: "plain_text",
content:
"💡 功能由AI创新应用组提供支持Rid1988fcc0-6ca8-4015-b256-b19945c33117",
},
],
},
],
header: {
template: "purple",
title: { content: "🔥 感谢使用 Group Agent", tag: "plain_text" },
},
}
const injectVariables = (obj: any): any => {
type Obj = { value: any }
console.log("🚀 ~ obj:", obj)
if (isObject(obj) && !isArray((obj as Obj))) {
if (has(obj, "value") && isObject(obj.value)) {
return {
...obj,
value: { ...(obj as Obj).value, ...variables },
}
}
return mapValues(obj, injectVariables)
} else if (isArray(obj)) {
return obj.map(injectVariables)
}
return obj
}
const finalContent = injectVariables(content)
console.log("🚀 ~ finalContent:", finalContent)