|
@@ -16,6 +16,7 @@ import { DEFAULT_VALUE_MAX_LEN, getMaxVarNameLength } from '@/config'
|
|
import { checkKeys, getNewVar } from '@/utils/var'
|
|
import { checkKeys, getNewVar } from '@/utils/var'
|
|
import Switch from '@/app/components/base/switch'
|
|
import Switch from '@/app/components/base/switch'
|
|
import Toast from '@/app/components/base/toast'
|
|
import Toast from '@/app/components/base/toast'
|
|
|
|
+import { Timeout } from 'ahooks/lib/useRequest/src/types'
|
|
|
|
|
|
export type IConfigVarProps = {
|
|
export type IConfigVarProps = {
|
|
promptVariables: PromptVariable[]
|
|
promptVariables: PromptVariable[]
|
|
@@ -23,6 +24,8 @@ export type IConfigVarProps = {
|
|
onPromptVariablesChange?: (promptVariables: PromptVariable[]) => void
|
|
onPromptVariablesChange?: (promptVariables: PromptVariable[]) => void
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+let conflictTimer: Timeout
|
|
|
|
+
|
|
const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVariablesChange }) => {
|
|
const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVariablesChange }) => {
|
|
const { t } = useTranslation()
|
|
const { t } = useTranslation()
|
|
const hasVar = promptVariables.length > 0
|
|
const hasVar = promptVariables.length > 0
|
|
@@ -34,11 +37,9 @@ const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVar
|
|
return obj
|
|
return obj
|
|
})()
|
|
})()
|
|
|
|
|
|
- const updatePromptVariable = (key: string, updateKey: string, newValue: any) => {
|
|
|
|
- if (!(key in promptVariableObj))
|
|
|
|
- return
|
|
|
|
- const newPromptVariables = promptVariables.map((item) => {
|
|
|
|
- if (item.key === key) {
|
|
|
|
|
|
+ const updatePromptVariable = (index: number, updateKey: string, newValue: any) => {
|
|
|
|
+ const newPromptVariables = promptVariables.map((item, i) => {
|
|
|
|
+ if (i === index) {
|
|
return {
|
|
return {
|
|
...item,
|
|
...item,
|
|
[updateKey]: newValue,
|
|
[updateKey]: newValue,
|
|
@@ -51,11 +52,9 @@ const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVar
|
|
onPromptVariablesChange?.(newPromptVariables)
|
|
onPromptVariablesChange?.(newPromptVariables)
|
|
}
|
|
}
|
|
|
|
|
|
- const batchUpdatePromptVariable = (key: string, updateKeys: string[], newValues: any[]) => {
|
|
|
|
- if (!(key in promptVariableObj))
|
|
|
|
- return
|
|
|
|
- const newPromptVariables = promptVariables.map((item) => {
|
|
|
|
- if (item.key === key) {
|
|
|
|
|
|
+ const batchUpdatePromptVariable = (index: number, updateKeys: string[], newValues: any[]) => {
|
|
|
|
+ const newPromptVariables = promptVariables.map((item, i) => {
|
|
|
|
+ if (i === index) {
|
|
const newItem: any = { ...item }
|
|
const newItem: any = { ...item }
|
|
updateKeys.forEach((updateKey, i) => {
|
|
updateKeys.forEach((updateKey, i) => {
|
|
newItem[updateKey] = newValues[i]
|
|
newItem[updateKey] = newValues[i]
|
|
@@ -68,8 +67,8 @@ const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVar
|
|
|
|
|
|
onPromptVariablesChange?.(newPromptVariables)
|
|
onPromptVariablesChange?.(newPromptVariables)
|
|
}
|
|
}
|
|
-
|
|
|
|
const updatePromptKey = (index: number, newKey: string) => {
|
|
const updatePromptKey = (index: number, newKey: string) => {
|
|
|
|
+ clearTimeout(conflictTimer)
|
|
const { isValid, errorKey, errorMessageKey } = checkKeys([newKey], true)
|
|
const { isValid, errorKey, errorMessageKey } = checkKeys([newKey], true)
|
|
if (!isValid) {
|
|
if (!isValid) {
|
|
Toast.notify({
|
|
Toast.notify({
|
|
@@ -78,6 +77,7 @@ const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVar
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+
|
|
const newPromptVariables = promptVariables.map((item, i) => {
|
|
const newPromptVariables = promptVariables.map((item, i) => {
|
|
if (i === index) {
|
|
if (i === index) {
|
|
return {
|
|
return {
|
|
@@ -85,10 +85,20 @@ const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVar
|
|
key: newKey,
|
|
key: newKey,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
return item
|
|
return item
|
|
})
|
|
})
|
|
|
|
|
|
|
|
+ conflictTimer = setTimeout(() => {
|
|
|
|
+ const isKeyExists = promptVariables.some(item => item.key.trim() === newKey.trim())
|
|
|
|
+ if (isKeyExists) {
|
|
|
|
+ Toast.notify({
|
|
|
|
+ type: 'error',
|
|
|
|
+ message: t(`appDebug.varKeyError.keyAlreadyExists`, { key: newKey }),
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ },1000)
|
|
|
|
+
|
|
onPromptVariablesChange?.(newPromptVariables)
|
|
onPromptVariablesChange?.(newPromptVariables)
|
|
}
|
|
}
|
|
|
|
|
|
@@ -196,7 +206,7 @@ const ConfigVar: FC<IConfigVarProps> = ({ promptVariables, readonly, onPromptVar
|
|
type="text"
|
|
type="text"
|
|
placeholder={key}
|
|
placeholder={key}
|
|
value={name}
|
|
value={name}
|
|
- onChange={e => updatePromptVariable(key, 'name', e.target.value)}
|
|
|
|
|
|
+ onChange={e => updatePromptVariable(index, 'name', e.target.value)}
|
|
maxLength={getMaxVarNameLength(name)}
|
|
maxLength={getMaxVarNameLength(name)}
|
|
className="h-6 leading-6 block w-full rounded-md border-0 py-1.5 text-gray-900 placeholder:text-gray-400 focus:outline-none focus:ring-1 focus:ring-inset focus:ring-gray-200"
|
|
className="h-6 leading-6 block w-full rounded-md border-0 py-1.5 text-gray-900 placeholder:text-gray-400 focus:outline-none focus:ring-1 focus:ring-inset focus:ring-gray-200"
|
|
/>)
|
|
/>)
|