64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
import type { PromptVariable, UserInputFormItem } from '@/types/app'
|
|
|
|
export function replaceVarWithValues(str: string, promptVariables: PromptVariable[], inputs: Record<string, any>) {
|
|
return str.replace(/\{\{([^}]+)\}\}/g, (match, key) => {
|
|
const name = inputs[key]
|
|
if (name)
|
|
return name
|
|
|
|
const valueObj: PromptVariable | undefined = promptVariables.find(v => v.key === key)
|
|
return valueObj ? `{{${valueObj.key}}}` : match
|
|
})
|
|
}
|
|
|
|
export const userInputsFormToPromptVariables = (useInputs: UserInputFormItem[] | null) => {
|
|
if (!useInputs)
|
|
return []
|
|
const promptVariables: PromptVariable[] = []
|
|
useInputs.forEach((item: any) => {
|
|
const isParagraph = !!item.paragraph
|
|
const [type, content] = (() => {
|
|
if (isParagraph)
|
|
return ['paragraph', item.paragraph]
|
|
|
|
if (item['text-input'])
|
|
return ['string', item['text-input']]
|
|
|
|
if (item.number)
|
|
return ['number', item.number]
|
|
|
|
return ['select', item.select]
|
|
})()
|
|
|
|
if (type === 'string' || type === 'paragraph') {
|
|
promptVariables.push({
|
|
key: content.variable,
|
|
name: content.label,
|
|
required: content.required,
|
|
type,
|
|
max_length: content.max_length,
|
|
options: [],
|
|
})
|
|
}
|
|
else if (type === 'number') {
|
|
promptVariables.push({
|
|
key: content.variable,
|
|
name: content.label,
|
|
required: content.required,
|
|
type,
|
|
options: [],
|
|
})
|
|
}
|
|
else {
|
|
promptVariables.push({
|
|
key: content.variable,
|
|
name: content.label,
|
|
required: content.required,
|
|
type: 'select',
|
|
options: content.options,
|
|
})
|
|
}
|
|
})
|
|
return promptVariables
|
|
}
|