chore: fix function name typo (#23306)

This commit is contained in:
Matri Qi
2025-08-03 10:09:26 +08:00
committed by GitHub
parent 58608f51da
commit 99a4bd82b5
8 changed files with 15 additions and 15 deletions

View File

@@ -11,7 +11,7 @@ import SelectTypeItem from '../select-type-item'
import Field from './field' import Field from './field'
import Input from '@/app/components/base/input' import Input from '@/app/components/base/input'
import Toast from '@/app/components/base/toast' import Toast from '@/app/components/base/toast'
import { checkKeys, getNewVarInWorkflow, replaceSpaceWithUnderscreInVarNameInput } from '@/utils/var' import { checkKeys, getNewVarInWorkflow, replaceSpaceWithUnderscoreInVarNameInput } from '@/utils/var'
import ConfigContext from '@/context/debug-configuration' import ConfigContext from '@/context/debug-configuration'
import type { InputVar, MoreInfo, UploadFileSetting } from '@/app/components/workflow/types' import type { InputVar, MoreInfo, UploadFileSetting } from '@/app/components/workflow/types'
import Modal from '@/app/components/base/modal' import Modal from '@/app/components/base/modal'
@@ -111,7 +111,7 @@ const ConfigModal: FC<IConfigModalProps> = ({
}, [checkVariableName, tempPayload.label]) }, [checkVariableName, tempPayload.label])
const handleVarNameChange = useCallback((e: ChangeEvent<any>) => { const handleVarNameChange = useCallback((e: ChangeEvent<any>) => {
replaceSpaceWithUnderscreInVarNameInput(e.target) replaceSpaceWithUnderscoreInVarNameInput(e.target)
const value = e.target.value const value = e.target.value
const { isValid, errorKey, errorMessageKey } = checkKeys([value], true) const { isValid, errorKey, errorMessageKey } = checkKeys([value], true)
if (!isValid) { if (!isValid) {

View File

@@ -8,7 +8,7 @@ import RemoveButton from '../remove-button'
import VarTypePicker from './var-type-picker' import VarTypePicker from './var-type-picker'
import Input from '@/app/components/base/input' import Input from '@/app/components/base/input'
import type { VarType } from '@/app/components/workflow/types' import type { VarType } from '@/app/components/workflow/types'
import { checkKeys, replaceSpaceWithUnderscreInVarNameInput } from '@/utils/var' import { checkKeys, replaceSpaceWithUnderscoreInVarNameInput } from '@/utils/var'
import type { ToastHandle } from '@/app/components/base/toast' import type { ToastHandle } from '@/app/components/base/toast'
import Toast from '@/app/components/base/toast' import Toast from '@/app/components/base/toast'
import { useDebounceFn } from 'ahooks' import { useDebounceFn } from 'ahooks'
@@ -62,7 +62,7 @@ const OutputVarList: FC<Props> = ({
return (e: React.ChangeEvent<HTMLInputElement>) => { return (e: React.ChangeEvent<HTMLInputElement>) => {
const oldKey = list[index].variable const oldKey = list[index].variable
replaceSpaceWithUnderscreInVarNameInput(e.target) replaceSpaceWithUnderscoreInVarNameInput(e.target)
const newKey = e.target.value const newKey = e.target.value
toastHandler?.clear?.() toastHandler?.clear?.()

View File

@@ -8,7 +8,7 @@ import VarReferencePicker from './var-reference-picker'
import Input from '@/app/components/base/input' import Input from '@/app/components/base/input'
import type { ValueSelector, Var, Variable } from '@/app/components/workflow/types' import type { ValueSelector, Var, Variable } from '@/app/components/workflow/types'
import { VarType as VarKindType } from '@/app/components/workflow/nodes/tool/types' import { VarType as VarKindType } from '@/app/components/workflow/nodes/tool/types'
import { checkKeys, replaceSpaceWithUnderscreInVarNameInput } from '@/utils/var' import { checkKeys, replaceSpaceWithUnderscoreInVarNameInput } from '@/utils/var'
import type { ToastHandle } from '@/app/components/base/toast' import type { ToastHandle } from '@/app/components/base/toast'
import Toast from '@/app/components/base/toast' import Toast from '@/app/components/base/toast'
import { ReactSortable } from 'react-sortablejs' import { ReactSortable } from 'react-sortablejs'
@@ -74,7 +74,7 @@ const VarList: FC<Props> = ({
const handleVarNameChange = useCallback((index: number) => { const handleVarNameChange = useCallback((index: number) => {
return (e: React.ChangeEvent<HTMLInputElement>) => { return (e: React.ChangeEvent<HTMLInputElement>) => {
replaceSpaceWithUnderscreInVarNameInput(e.target) replaceSpaceWithUnderscoreInVarNameInput(e.target)
const newKey = e.target.value const newKey = e.target.value

View File

@@ -10,7 +10,7 @@ import type {
LoopVariable, LoopVariable,
LoopVariablesComponentShape, LoopVariablesComponentShape,
} from '@/app/components/workflow/nodes/loop/types' } from '@/app/components/workflow/nodes/loop/types'
import { checkKeys, replaceSpaceWithUnderscreInVarNameInput } from '@/utils/var' import { checkKeys, replaceSpaceWithUnderscoreInVarNameInput } from '@/utils/var'
import Toast from '@/app/components/base/toast' import Toast from '@/app/components/base/toast'
type ItemProps = { type ItemProps = {
@@ -36,7 +36,7 @@ const Item = ({
return true return true
} }
const handleUpdateItemLabel = useCallback((e: any) => { const handleUpdateItemLabel = useCallback((e: any) => {
replaceSpaceWithUnderscreInVarNameInput(e.target) replaceSpaceWithUnderscoreInVarNameInput(e.target)
if (!!e.target.value && !checkVariableName(e.target.value)) if (!!e.target.value && !checkVariableName(e.target.value))
return return
handleUpdateLoopVariable(item.id, { label: e.target.value }) handleUpdateLoopVariable(item.id, { label: e.target.value })

View File

@@ -15,7 +15,7 @@ import { VarType } from '@/app/components/workflow/types'
import type { NodeOutPutVar, ValueSelector, Var } from '@/app/components/workflow/types' import type { NodeOutPutVar, ValueSelector, Var } from '@/app/components/workflow/types'
import { VarType as VarKindType } from '@/app/components/workflow/nodes/tool/types' import { VarType as VarKindType } from '@/app/components/workflow/nodes/tool/types'
import { Folder } from '@/app/components/base/icons/src/vender/line/files' import { Folder } from '@/app/components/base/icons/src/vender/line/files'
import { checkKeys, replaceSpaceWithUnderscreInVarNameInput } from '@/utils/var' import { checkKeys, replaceSpaceWithUnderscoreInVarNameInput } from '@/utils/var'
import Toast from '@/app/components/base/toast' import Toast from '@/app/components/base/toast'
const i18nPrefix = 'workflow.nodes.variableAssigner' const i18nPrefix = 'workflow.nodes.variableAssigner'
@@ -89,7 +89,7 @@ const VarGroupItem: FC<Props> = ({
}] = useBoolean(false) }] = useBoolean(false)
const handleGroupNameChange = useCallback((e: ChangeEvent<any>) => { const handleGroupNameChange = useCallback((e: ChangeEvent<any>) => {
replaceSpaceWithUnderscreInVarNameInput(e.target) replaceSpaceWithUnderscoreInVarNameInput(e.target)
const value = e.target.value const value = e.target.value
const { isValid, errorKey, errorMessageKey } = checkKeys([value], false) const { isValid, errorKey, errorMessageKey } = checkKeys([value], false)
if (!isValid) { if (!isValid) {

View File

@@ -16,7 +16,7 @@ import type { ConversationVariable } from '@/app/components/workflow/types'
import { CodeLanguage } from '@/app/components/workflow/nodes/code/types' import { CodeLanguage } from '@/app/components/workflow/nodes/code/types'
import { ChatVarType } from '@/app/components/workflow/panel/chat-variable-panel/type' import { ChatVarType } from '@/app/components/workflow/panel/chat-variable-panel/type'
import cn from '@/utils/classnames' import cn from '@/utils/classnames'
import { checkKeys, replaceSpaceWithUnderscreInVarNameInput } from '@/utils/var' import { checkKeys, replaceSpaceWithUnderscoreInVarNameInput } from '@/utils/var'
export type ModalPropsType = { export type ModalPropsType = {
chatVar?: ConversationVariable chatVar?: ConversationVariable
@@ -144,7 +144,7 @@ const ChatVariableModal = ({
} }
const handleVarNameChange = (e: React.ChangeEvent<HTMLInputElement>) => { const handleVarNameChange = (e: React.ChangeEvent<HTMLInputElement>) => {
replaceSpaceWithUnderscreInVarNameInput(e.target) replaceSpaceWithUnderscoreInVarNameInput(e.target)
if (!!e.target.value && !checkVariableName(e.target.value)) if (!!e.target.value && !checkVariableName(e.target.value))
return return
setName(e.target.value || '') setName(e.target.value || '')

View File

@@ -10,7 +10,7 @@ import { ToastContext } from '@/app/components/base/toast'
import { useStore } from '@/app/components/workflow/store' import { useStore } from '@/app/components/workflow/store'
import type { EnvironmentVariable } from '@/app/components/workflow/types' import type { EnvironmentVariable } from '@/app/components/workflow/types'
import cn from '@/utils/classnames' import cn from '@/utils/classnames'
import { checkKeys, replaceSpaceWithUnderscreInVarNameInput } from '@/utils/var' import { checkKeys, replaceSpaceWithUnderscoreInVarNameInput } from '@/utils/var'
export type ModalPropsType = { export type ModalPropsType = {
env?: EnvironmentVariable env?: EnvironmentVariable
@@ -44,7 +44,7 @@ const VariableModal = ({
} }
const handleVarNameChange = (e: React.ChangeEvent<HTMLInputElement>) => { const handleVarNameChange = (e: React.ChangeEvent<HTMLInputElement>) => {
replaceSpaceWithUnderscreInVarNameInput(e.target) replaceSpaceWithUnderscoreInVarNameInput(e.target)
if (!!e.target.value && !checkVariableName(e.target.value)) if (!!e.target.value && !checkVariableName(e.target.value))
return return
setName(e.target.value || '') setName(e.target.value || '')

View File

@@ -121,7 +121,7 @@ export function getMarketplaceUrl(path: string, params?: Record<string, string |
return `${MARKETPLACE_URL_PREFIX}${path}?${searchParams.toString()}` return `${MARKETPLACE_URL_PREFIX}${path}?${searchParams.toString()}`
} }
export const replaceSpaceWithUnderscreInVarNameInput = (input: HTMLInputElement) => { export const replaceSpaceWithUnderscoreInVarNameInput = (input: HTMLInputElement) => {
const start = input.selectionStart const start = input.selectionStart
const end = input.selectionEnd const end = input.selectionEnd