mirror of
https://github.com/langgenius/dify.git
synced 2026-05-13 00:33:37 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Yansong Zhang <916125788@qq.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: hj24 <mambahj24@gmail.com> Co-authored-by: hj24 <huangjian@dify.ai> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Co-authored-by: CodingOnStar <hanxujiang@dify.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Ayush Baluni <73417844+aayushbaluni@users.noreply.github.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: jimcody1995 <jjimcody@gmail.com> Co-authored-by: James <63717587+jamesrayammons@users.noreply.github.com> Co-authored-by: Yunlu Wen <yunlu.wen@dify.ai> Co-authored-by: Stephen Zhou <hi@hyoban.cc> Co-authored-by: Coding On Star <447357187@qq.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jerryzai <jerryzh8710@protonmail.com> Co-authored-by: NVIDIAN <speedy.hpc@hotmail.com> Co-authored-by: ai-hpc <ai-hpc@users.noreply.github.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: Junghwan <70629228+shaun0927@users.noreply.github.com> Co-authored-by: HeYinKazune <70251095+HeYin-OS@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: Jingyi <jingyi.qi@dify.ai> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com> Co-authored-by: sxxtony <166789813+sxxtony@users.noreply.github.com>
112 lines
4.2 KiB
TypeScript
112 lines
4.2 KiB
TypeScript
import {
|
|
RiAddLine,
|
|
RiArrowDownSLine,
|
|
} from '@remixicon/react'
|
|
import * as React from 'react'
|
|
import { useEffect, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { ApiConnectionMod } from '@/app/components/base/icons/src/vender/solid/development'
|
|
import { useExternalKnowledgeApi } from '@/context/external-knowledge-api-context'
|
|
import { useModalContext } from '@/context/modal-context'
|
|
import { useRouter } from '@/next/navigation'
|
|
|
|
type ApiItem = {
|
|
value: string
|
|
name: string
|
|
url: string
|
|
}
|
|
|
|
type ExternalApiSelectProps = {
|
|
items: ApiItem[]
|
|
value?: string
|
|
onSelect: (item: ApiItem) => void
|
|
}
|
|
|
|
const ExternalApiSelect: React.FC<ExternalApiSelectProps> = ({ items, value, onSelect }) => {
|
|
const { t } = useTranslation()
|
|
const [isOpen, setIsOpen] = useState(false)
|
|
const [selectedItem, setSelectedItem] = useState<ApiItem | null>(
|
|
items.find(item => item.value === value) || null,
|
|
)
|
|
const { setShowExternalKnowledgeAPIModal } = useModalContext()
|
|
const { mutateExternalKnowledgeApis } = useExternalKnowledgeApi()
|
|
const router = useRouter()
|
|
|
|
useEffect(() => {
|
|
const newSelectedItem = items.find(item => item.value === value) || null
|
|
setSelectedItem(newSelectedItem)
|
|
}, [value, items])
|
|
|
|
const handleAddNewAPI = () => {
|
|
setShowExternalKnowledgeAPIModal({
|
|
payload: { name: '', settings: { endpoint: '', api_key: '' } },
|
|
onSaveCallback: async () => {
|
|
mutateExternalKnowledgeApis()
|
|
router.refresh()
|
|
},
|
|
onCancelCallback: () => {
|
|
mutateExternalKnowledgeApis()
|
|
},
|
|
isEditMode: false,
|
|
})
|
|
}
|
|
|
|
const handleSelect = (item: ApiItem) => {
|
|
setSelectedItem(item)
|
|
onSelect(item)
|
|
setIsOpen(false)
|
|
}
|
|
|
|
return (
|
|
<div className="relative w-full">
|
|
<div
|
|
className={`flex cursor-pointer items-center justify-between gap-0.5 self-stretch rounded-lg bg-components-input-bg-normal px-2
|
|
py-1 hover:bg-state-base-hover-alt ${isOpen && 'bg-state-base-hover-alt'}`}
|
|
onClick={() => setIsOpen(!isOpen)}
|
|
>
|
|
{selectedItem
|
|
? (
|
|
<div className="flex items-center gap-2 self-stretch rounded-lg p-1">
|
|
<ApiConnectionMod className="h-4 w-4 text-text-secondary" />
|
|
<div className="flex grow items-center">
|
|
<span className="overflow-hidden system-sm-regular text-ellipsis text-components-input-text-filled">{selectedItem.name}</span>
|
|
</div>
|
|
</div>
|
|
)
|
|
: (
|
|
<span className="system-sm-regular text-components-input-text-placeholder">{t('selectExternalKnowledgeAPI.placeholder', { ns: 'dataset' })}</span>
|
|
)}
|
|
<RiArrowDownSLine className={`h-4 w-4 text-text-quaternary transition-transform ${isOpen ? 'text-text-secondary' : ''}`} />
|
|
</div>
|
|
{isOpen && (
|
|
<div className="absolute z-10 mt-1 w-full rounded-xl border bg-components-panel-bg-blur shadow-lg">
|
|
{items.map(item => (
|
|
<div
|
|
key={item.value}
|
|
className="flex cursor-pointer items-center p-1"
|
|
onClick={() => handleSelect(item)}
|
|
>
|
|
<div className="flex w-full items-center gap-2 self-stretch rounded-lg p-2 hover:bg-state-base-hover">
|
|
<ApiConnectionMod className="h-4 w-4 text-text-secondary" />
|
|
<span className="grow overflow-hidden system-sm-medium text-ellipsis text-text-secondary">{item.name}</span>
|
|
<span className="overflow-hidden text-right system-xs-regular text-ellipsis text-text-tertiary">{item.url}</span>
|
|
</div>
|
|
</div>
|
|
))}
|
|
<div className="flex flex-col items-start self-stretch p-1">
|
|
<div
|
|
className="flex cursor-pointer items-center gap-2 self-stretch rounded-lg p-2 hover:bg-state-base-hover"
|
|
onClick={handleAddNewAPI}
|
|
>
|
|
<RiAddLine className="h-4 w-4 text-text-secondary" />
|
|
<span className="grow overflow-hidden system-sm-medium text-ellipsis text-text-secondary">{t('createNewExternalAPI', { ns: 'dataset' })}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ExternalApiSelect
|