mirror of
https://github.com/langgenius/dify.git
synced 2026-06-23 04:11:09 +08:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: fatelei <fatelei@gmail.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: 盐粒 Yanli <yanli@dify.ai> Co-authored-by: Charles Yao <chongbinyao33@gmail.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com> Co-authored-by: yunlu.wen <yunlu.wen@dify.ai> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: Jingyi <jingyi.qi@dify.ai> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: hjlarry <hjlarry@163.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xiyuan Chen <52963600+GareArc@users.noreply.github.com> Co-authored-by: gigglewang <gigglewang@dify.ai> Co-authored-by: chariri <w@chariri.moe> Co-authored-by: Evan <2869018789@qq.com> Co-authored-by: zyssyz123 <916125788@qq.com>
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
'use client'
|
|
|
|
import type { FC, ReactNode } from 'react'
|
|
import type { ExternalAPIItem, ExternalAPIListResponse } from '@/models/datasets'
|
|
import { createContext, use, useCallback, useMemo } from 'react'
|
|
import { useExternalKnowledgeApiList } from '@/service/knowledge/use-dataset'
|
|
|
|
type ExternalKnowledgeApiContextType = {
|
|
externalKnowledgeApiList: ExternalAPIItem[]
|
|
mutateExternalKnowledgeApis: () => Promise<ExternalAPIListResponse | undefined>
|
|
isLoading: boolean
|
|
}
|
|
|
|
const ExternalKnowledgeApiContext = createContext<ExternalKnowledgeApiContextType | undefined>(undefined)
|
|
|
|
type ExternalKnowledgeApiProviderProps = {
|
|
children: ReactNode
|
|
enabled?: boolean
|
|
}
|
|
|
|
export const ExternalKnowledgeApiProvider: FC<ExternalKnowledgeApiProviderProps> = ({ children, enabled = true }) => {
|
|
const { data, refetch, isLoading } = useExternalKnowledgeApiList({ enabled })
|
|
|
|
const mutateExternalKnowledgeApis = useCallback(() => {
|
|
if (!enabled)
|
|
return Promise.resolve(undefined)
|
|
|
|
return refetch().then(res => res.data)
|
|
}, [enabled, refetch])
|
|
|
|
const contextValue = useMemo<ExternalKnowledgeApiContextType>(() => ({
|
|
externalKnowledgeApiList: data?.data || [],
|
|
mutateExternalKnowledgeApis,
|
|
isLoading,
|
|
}), [data, mutateExternalKnowledgeApis, isLoading])
|
|
|
|
return (
|
|
<ExternalKnowledgeApiContext.Provider value={contextValue}>
|
|
{children}
|
|
</ExternalKnowledgeApiContext.Provider>
|
|
)
|
|
}
|
|
|
|
export const useExternalKnowledgeApi = () => {
|
|
const context = use(ExternalKnowledgeApiContext)
|
|
if (context === undefined)
|
|
throw new Error('useExternalKnowledgeApi must be used within a ExternalKnowledgeApiProvider')
|
|
|
|
return context
|
|
}
|