mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-04 22:50:39 +08:00
168 lines
5.2 KiB
TypeScript
168 lines
5.2 KiB
TypeScript
import { useEffect, useRef, useState } from 'react'
|
|
// import { useTranslation } from 'react-i18next'
|
|
import Textarea from '@/app/components/base/textarea'
|
|
import SchemaEditor from '@/app/components/workflow/nodes/llm/components/json-schema-config-modal/schema-editor'
|
|
import ErrorMessage from '@/app/components/workflow/nodes/llm/components/json-schema-config-modal/error-message'
|
|
import {
|
|
validateArrayString,
|
|
} from '@/app/components/workflow/variable-inspect/utils'
|
|
import { debounce } from 'lodash-es'
|
|
import cn from '@/utils/classnames'
|
|
|
|
export const currentVar = {
|
|
id: 'var-jfkldjjfkldaf-dfhekdfj',
|
|
type: 'node',
|
|
// type: 'conversation',
|
|
// type: 'environment',
|
|
name: 'out_put',
|
|
// var_type: 'string',
|
|
// var_type: 'number',
|
|
// var_type: 'object',
|
|
var_type: 'array[string]',
|
|
// var_type: 'array[number]',
|
|
// var_type: 'array[object]',
|
|
// var_type: 'file',
|
|
// var_type: 'array[file]',
|
|
// value: 'tuituitui',
|
|
value: ['aaa', 'bbb', 'ccc'],
|
|
// value: {
|
|
// abc: '123',
|
|
// def: 456,
|
|
// fff: true,
|
|
// },
|
|
edited: true,
|
|
}
|
|
|
|
const ValueContent = () => {
|
|
const current = currentVar
|
|
const contentContainerRef = useRef<HTMLDivElement>(null)
|
|
const errorMessageRef = useRef<HTMLDivElement>(null)
|
|
const [editorHeight, setEditorHeight] = useState(0)
|
|
const showTextEditor = current.var_type === 'secret' || current.var_type === 'string' || current.var_type === 'number'
|
|
const showJSONEditor = current.var_type === 'object' || current.var_type === 'array[string]' || current.var_type === 'array[number]' || current.var_type === 'array[object]'
|
|
const showFileEditor = current.var_type === 'file' || current.var_type === 'array[file]'
|
|
|
|
const [value, setValue] = useState<any>(current.value ? JSON.stringify(current.value) : '')
|
|
const [jsonSchema, setJsonSchema] = useState(current.value || null)
|
|
const [json, setJson] = useState(JSON.stringify(jsonSchema, null, 2))
|
|
const [parseError, setParseError] = useState<Error | null>(null)
|
|
const [validationError, setValidationError] = useState<string>('')
|
|
|
|
const handleTextChange = (value: string) => {
|
|
if (current.var_type === 'string')
|
|
setValue(value)
|
|
|
|
if (current.var_type === 'number') {
|
|
if (/^-?\d+(\.)?(\d+)?$/.test(value))
|
|
setValue(value)
|
|
}
|
|
}
|
|
|
|
const arrayStringValidate = (value: string) => {
|
|
try {
|
|
const newJSONSchema = JSON.parse(value)
|
|
setParseError(null)
|
|
const result = validateArrayString(newJSONSchema)
|
|
if (!result.success) {
|
|
setValidationError(result.error.message)
|
|
return false
|
|
}
|
|
setValidationError('')
|
|
return true
|
|
}
|
|
catch (error) {
|
|
setValidationError('')
|
|
if (error instanceof Error) {
|
|
setParseError(error)
|
|
return false
|
|
}
|
|
else {
|
|
setParseError(new Error('Invalid JSON'))
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
|
|
const handleEditorChange = (value: string) => {
|
|
if (current.var_type === 'array[string]') {
|
|
setJson(value)
|
|
if (arrayStringValidate(value)) {
|
|
const parsed = JSON.parse(value)
|
|
setJsonSchema(parsed)
|
|
}
|
|
return
|
|
}
|
|
if (current.var_type === 'array[number]') {
|
|
// TODO update array[number]
|
|
}
|
|
if (current.var_type === 'object') {
|
|
// TODO update object
|
|
}
|
|
if (current.var_type === 'array[object]') {
|
|
// TODO update array[object]
|
|
}
|
|
}
|
|
|
|
const handleFileChange = (value: string) => {
|
|
if (current.var_type === 'file') {
|
|
// TODO update file
|
|
}
|
|
if (current.var_type === 'array[file]') {
|
|
// TODO update array[file]
|
|
}
|
|
}
|
|
|
|
// get editor height
|
|
useEffect(() => {
|
|
if (contentContainerRef.current && errorMessageRef.current) {
|
|
const errorMessageObserver = new ResizeObserver((entries) => {
|
|
for (const entry of entries) {
|
|
const { inlineSize } = entry.borderBoxSize[0]
|
|
const height = (contentContainerRef.current as any).clientHeight - inlineSize
|
|
setEditorHeight(height)
|
|
}
|
|
})
|
|
errorMessageObserver.observe(errorMessageRef.current)
|
|
return () => {
|
|
errorMessageObserver.disconnect()
|
|
}
|
|
}
|
|
}, [errorMessageRef.current, setEditorHeight])
|
|
|
|
return (
|
|
<div
|
|
ref={contentContainerRef}
|
|
className='flex h-full flex-col'
|
|
>
|
|
<div className={cn('grow')} style={{ height: `${editorHeight}px` }}>
|
|
{showTextEditor && (
|
|
<Textarea
|
|
readOnly={current.type === 'environment'}
|
|
disabled={current.type === 'environment'}
|
|
className='h-full'
|
|
value={value as any}
|
|
onChange={debounce(e => handleTextChange(e.target.value))}
|
|
/>
|
|
)}
|
|
{showJSONEditor && (
|
|
<SchemaEditor
|
|
className='overflow-y-auto'
|
|
hideTopMenu
|
|
schema={json}
|
|
onUpdate={debounce(handleEditorChange)}
|
|
/>
|
|
)}
|
|
{showFileEditor && (
|
|
<div>TODO</div>
|
|
)}
|
|
</div>
|
|
<div ref={errorMessageRef} className='shrink-0'>
|
|
{parseError && <ErrorMessage className='mt-1' message={parseError.message} />}
|
|
{validationError && <ErrorMessage className='mt-1' message={validationError} />}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ValueContent
|