123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- 'use client'
- import type { FC } from 'react'
- import React, { useRef, useState } from 'react'
- import { useTranslation } from 'react-i18next'
- import { RiCloseLine } from '@remixicon/react'
- import Toast from '../../base/toast'
- import { ModelTypeEnum } from '../../header/account-setting/model-provider-page/declarations'
- import type { RetrievalConfig } from '@/types/app'
- import RetrievalMethodConfig from '@/app/components/datasets/common/retrieval-method-config'
- import EconomicalRetrievalMethodConfig from '@/app/components/datasets/common/economical-retrieval-method-config'
- import Button from '@/app/components/base/button'
- import { isReRankModelSelected } from '@/app/components/datasets/common/check-rerank-model'
- import { useModelListAndDefaultModelAndCurrentProviderAndModel } from '@/app/components/header/account-setting/model-provider-page/hooks'
- type Props = {
- indexMethod: string
- value: RetrievalConfig
- isShow: boolean
- onHide: () => void
- onSave: (value: RetrievalConfig) => void
- }
- const ModifyRetrievalModal: FC<Props> = ({
- indexMethod,
- value,
- isShow,
- onHide,
- onSave,
- }) => {
- const ref = useRef(null)
- const { t } = useTranslation()
- const [retrievalConfig, setRetrievalConfig] = useState(value)
- // useClickAway(() => {
- // if (ref)
- // onHide()
- // }, ref)
- const {
- modelList: rerankModelList,
- } = useModelListAndDefaultModelAndCurrentProviderAndModel(ModelTypeEnum.rerank)
- const handleSave = () => {
- if (
- !isReRankModelSelected({
- rerankModelList,
- retrievalConfig,
- indexMethod,
- })
- ) {
- Toast.notify({ type: 'error', message: t('appDebug.datasetConfig.rerankModelRequired') })
- return
- }
- onSave(retrievalConfig)
- }
- if (!isShow)
- return null
- return (
- <div
- className='w-full flex flex-col bg-components-panel-bg border-[0.5px] border-components-panel-border rounded-2xl shadow-2xl shadow-shadow-shadow-9'
- style={{
- height: 'calc(100vh - 72px)',
- }}
- ref={ref}
- >
- <div className='shrink-0 flex justify-between pt-3.5 pb-1 px-3 h-15'>
- <div className='text-base font-semibold text-text-primary'>
- <div>{t('datasetSettings.form.retrievalSetting.title')}</div>
- <div className='leading-[18px] text-xs font-normal text-text-tertiary'>
- <a
- target='_blank'
- rel='noopener noreferrer'
- href='https://docs.dify.ai/guides/knowledge-base/create-knowledge-and-upload-documents#id-4-retrieval-settings'
- className='text-text-accent'
- >
- {t('datasetSettings.form.retrievalSetting.learnMore')}
- </a>
- {t('datasetSettings.form.retrievalSetting.description')}
- </div>
- </div>
- <div className='flex'>
- <div
- onClick={onHide}
- className='flex justify-center items-center w-8 h-8 cursor-pointer'
- >
- <RiCloseLine className='w-4 h-4 text-text-tertiary' />
- </div>
- </div>
- </div>
- <div className='px-4 py-2'>
- <div className='mb-1 text-text-secondary text-[13px] leading-6 font-semibold'>
- {t('datasetSettings.form.retrievalSetting.method')}
- </div>
- {indexMethod === 'high_quality'
- ? (
- <RetrievalMethodConfig
- value={retrievalConfig}
- onChange={setRetrievalConfig}
- />
- )
- : (
- <EconomicalRetrievalMethodConfig
- value={retrievalConfig}
- onChange={setRetrievalConfig}
- />
- )}
- </div>
- <div className='flex justify-end p-4 pt-2'>
- <Button className='mr-2 flex-shrink-0' onClick={onHide}>{t('common.operation.cancel')}</Button>
- <Button variant='primary' className='flex-shrink-0' onClick={handleSave} >{t('common.operation.save')}</Button>
- </div>
- </div>
- )
- }
- export default React.memo(ModifyRetrievalModal)
|