### What problem does this PR solve? feat: Add tooltip to clean_html item #2908 ### Type of change - [ ] Bug Fix (non-breaking change which fixes an issue) - [x] New Feature (non-breaking change which adds functionality) - [ ] Documentation Update - [ ] Refactoring - [ ] Performance Improvement - [ ] Other (please describe):tags/v0.14.0
| proxy: [ | proxy: [ | ||||
| { | { | ||||
| context: ['/api', '/v1'], | context: ['/api', '/v1'], | ||||
| target: 'http://127.0.0.1:9380/', | |||||
| target: 'http://127.0.0.1:9456/', | |||||
| changeOrigin: true, | changeOrigin: true, | ||||
| ws: true, | ws: true, | ||||
| logger: console, | logger: console, | 
| method: 'Method', | method: 'Method', | ||||
| timeout: 'Timeout', | timeout: 'Timeout', | ||||
| headers: 'Headers', | headers: 'Headers', | ||||
| cleanHtml: 'Clean html', | |||||
| cleanHtml: 'Clean HTML', | |||||
| cleanHtmlTip: | |||||
| 'If the response is HTML formatted and only the primary content wanted, please toggle it on.', | |||||
| reference: 'Reference', | reference: 'Reference', | ||||
| input: 'Input', | input: 'Input', | ||||
| parameter: 'Parameter', | |||||
| }, | }, | ||||
| footer: { | footer: { | ||||
| profile: 'All rights reserved @ React', | profile: 'All rights reserved @ React', | 
| method: '方法', | method: '方法', | ||||
| timeout: '超時', | timeout: '超時', | ||||
| headers: '請求頭', | headers: '請求頭', | ||||
| cleanHtml: '清除 html', | |||||
| cleanHtml: '清除 HTML', | |||||
| cleanHtmlTip: '如果回應是 HTML 格式並且只需要主要內容,請將其開啟。', | |||||
| reference: '引用', | reference: '引用', | ||||
| input: '輸入', | input: '輸入', | ||||
| parameter: '參數', | |||||
| }, | }, | ||||
| footer: { | footer: { | ||||
| profile: '“保留所有權利 @ react”', | profile: '“保留所有權利 @ react”', | 
| method: '方法', | method: '方法', | ||||
| timeout: '超时', | timeout: '超时', | ||||
| headers: '请求头', | headers: '请求头', | ||||
| cleanHtml: '清除 html', | |||||
| cleanHtml: '清除 HTML', | |||||
| cleanHtmlTip: '如果响应是 HTML 格式且只需要主要内容,请将其打开。', | |||||
| reference: '引用', | reference: '引用', | ||||
| input: '输入', | input: '输入', | ||||
| parameter: '参数', | |||||
| }, | }, | ||||
| footer: { | footer: { | ||||
| profile: 'All rights reserved @ React', | profile: 'All rights reserved @ React', | 
| import { EditableCell, EditableRow } from '@/components/editable-cell'; | import { EditableCell, EditableRow } from '@/components/editable-cell'; | ||||
| import { useTranslate } from '@/hooks/common-hooks'; | import { useTranslate } from '@/hooks/common-hooks'; | ||||
| import { DeleteOutlined } from '@ant-design/icons'; | import { DeleteOutlined } from '@ant-design/icons'; | ||||
| import { Button, Flex, Input, Select, Table, TableProps } from 'antd'; | |||||
| import { Button, Collapse, Flex, Input, Select, Table, TableProps } from 'antd'; | |||||
| import { useBuildComponentIdSelectOptions } from '../../hooks'; | import { useBuildComponentIdSelectOptions } from '../../hooks'; | ||||
| import { IInvokeVariable } from '../../interface'; | import { IInvokeVariable } from '../../interface'; | ||||
| import { useHandleOperateParameters } from './hooks'; | import { useHandleOperateParameters } from './hooks'; | ||||
| }, | }, | ||||
| }; | }; | ||||
| const DynamicVariables = ({ nodeId }: IProps) => { | |||||
| const DynamicVariablesForm = ({ nodeId }: IProps) => { | |||||
| const { t } = useTranslate('flow'); | const { t } = useTranslate('flow'); | ||||
| const options = useBuildComponentIdSelectOptions(nodeId); | const options = useBuildComponentIdSelectOptions(nodeId); | ||||
| ]; | ]; | ||||
| return ( | return ( | ||||
| <section> | |||||
| <Flex justify="end"> | |||||
| <Button size="small" onClick={handleAdd}> | |||||
| {t('add')} | |||||
| </Button> | |||||
| </Flex> | |||||
| <Table | |||||
| dataSource={dataSource} | |||||
| columns={columns} | |||||
| rowKey={'id'} | |||||
| className={styles.variableTable} | |||||
| components={components} | |||||
| rowClassName={() => styles.editableRow} | |||||
| scroll={{ x: true }} | |||||
| bordered | |||||
| /> | |||||
| </section> | |||||
| <Collapse | |||||
| className={styles.dynamicParameterVariable} | |||||
| defaultActiveKey={['1']} | |||||
| items={[ | |||||
| { | |||||
| key: '1', | |||||
| label: ( | |||||
| <Flex justify={'space-between'}> | |||||
| <span className={styles.title}>{t('parameter')}</span> | |||||
| <Button size="small" onClick={handleAdd}> | |||||
| {t('add')} | |||||
| </Button> | |||||
| </Flex> | |||||
| ), | |||||
| children: ( | |||||
| <Table | |||||
| dataSource={dataSource} | |||||
| columns={columns} | |||||
| rowKey={'id'} | |||||
| components={components} | |||||
| rowClassName={() => styles.editableRow} | |||||
| scroll={{ x: true }} | |||||
| bordered | |||||
| /> | |||||
| ), | |||||
| }, | |||||
| ]} | |||||
| /> | |||||
| ); | ); | ||||
| }; | }; | ||||
| export default DynamicVariables; | |||||
| export default DynamicVariablesForm; | 
| import get from 'lodash/get'; | import get from 'lodash/get'; | ||||
| import { ChangeEventHandler, useCallback, useMemo } from 'react'; | |||||
| import { | |||||
| ChangeEventHandler, | |||||
| MouseEventHandler, | |||||
| useCallback, | |||||
| useMemo, | |||||
| } from 'react'; | |||||
| import { v4 as uuid } from 'uuid'; | import { v4 as uuid } from 'uuid'; | ||||
| import { IGenerateParameter, IInvokeVariable } from '../../interface'; | import { IGenerateParameter, IInvokeVariable } from '../../interface'; | ||||
| import useGraphStore from '../../store'; | import useGraphStore from '../../store'; | ||||
| [updateNodeForm, nodeId, dataSource], | [updateNodeForm, nodeId, dataSource], | ||||
| ); | ); | ||||
| const handleAdd = useCallback(() => { | |||||
| updateNodeForm(nodeId, { | |||||
| variables: [ | |||||
| ...dataSource, | |||||
| { | |||||
| id: uuid(), | |||||
| key: '', | |||||
| component_id: undefined, | |||||
| value: '', | |||||
| }, | |||||
| ], | |||||
| }); | |||||
| }, [dataSource, nodeId, updateNodeForm]); | |||||
| const handleAdd: MouseEventHandler = useCallback( | |||||
| (e) => { | |||||
| e.preventDefault(); | |||||
| e.stopPropagation(); | |||||
| updateNodeForm(nodeId, { | |||||
| variables: [ | |||||
| ...dataSource, | |||||
| { | |||||
| id: uuid(), | |||||
| key: '', | |||||
| component_id: undefined, | |||||
| value: '', | |||||
| }, | |||||
| ], | |||||
| }); | |||||
| }, | |||||
| [dataSource, nodeId, updateNodeForm], | |||||
| ); | |||||
| const handleSave = (row: IGenerateParameter) => { | const handleSave = (row: IGenerateParameter) => { | ||||
| const newData = [...dataSource]; | const newData = [...dataSource]; | 
| .variableTable { | |||||
| margin-top: 14px; | |||||
| } | |||||
| .editableRow { | .editableRow { | ||||
| :global(.editable-cell) { | :global(.editable-cell) { | ||||
| position: relative; | position: relative; | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| .dynamicParameterVariable { | |||||
| background-color: #ebe9e9; | |||||
| :global(.ant-collapse-content) { | |||||
| background-color: #f6f6f6; | |||||
| } | |||||
| :global(.ant-collapse-content-box) { | |||||
| padding: 0 !important; | |||||
| } | |||||
| margin-bottom: 20px; | |||||
| .title { | |||||
| font-weight: 600; | |||||
| font-size: 16px; | |||||
| } | |||||
| .variableType { | |||||
| width: 30%; | |||||
| } | |||||
| .variableValue { | |||||
| flex: 1; | |||||
| } | |||||
| .addButton { | |||||
| color: rgb(22, 119, 255); | |||||
| font-weight: 600; | |||||
| } | |||||
| } | 
| import { useTranslation } from 'react-i18next'; | import { useTranslation } from 'react-i18next'; | ||||
| import { useSetLlmSetting } from '../../hooks'; | import { useSetLlmSetting } from '../../hooks'; | ||||
| import { IOperatorForm } from '../../interface'; | import { IOperatorForm } from '../../interface'; | ||||
| import DynamicVariables from './dynamic-variables'; | |||||
| import DynamicVariablesForm from './dynamic-variables'; | |||||
| enum Method { | enum Method { | ||||
| GET = 'GET', | GET = 'GET', | ||||
| <Form.Item name={'proxy'} label={t('flow.proxy')}> | <Form.Item name={'proxy'} label={t('flow.proxy')}> | ||||
| <Input /> | <Input /> | ||||
| </Form.Item> | </Form.Item> | ||||
| <Form.Item name={'clean_html'} label={t('flow.cleanHtml')}> | |||||
| <Form.Item | |||||
| name={'clean_html'} | |||||
| label={t('flow.cleanHtml')} | |||||
| tooltip={t('flow.cleanHtmlTip')} | |||||
| > | |||||
| <Switch /> | <Switch /> | ||||
| </Form.Item> | </Form.Item> | ||||
| <DynamicVariables nodeId={node?.id}></DynamicVariables> | |||||
| <DynamicVariablesForm nodeId={node?.id}></DynamicVariablesForm> | |||||
| </Form> | </Form> | ||||
| </> | </> | ||||
| ); | ); |