mirror of
https://github.com/langgenius/dify.git
synced 2025-12-16 20:52:32 +00:00
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: jyong <718720800@qq.com> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: quicksand <quicksandzn@gmail.com> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: Yongtao Huang <yongtaoh2022@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Harry <xh001x@hotmail.com>
126 lines
3.8 KiB
TypeScript
126 lines
3.8 KiB
TypeScript
import {
|
|
useCallback,
|
|
useRef,
|
|
useState,
|
|
} from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useToastContext } from '@/app/components/base/toast'
|
|
import type { PluginPayload } from '../types'
|
|
import {
|
|
useDeletePluginCredentialHook,
|
|
useSetPluginDefaultCredentialHook,
|
|
useUpdatePluginCredentialHook,
|
|
} from '../hooks/use-credential'
|
|
|
|
export const usePluginAuthAction = (
|
|
pluginPayload: PluginPayload,
|
|
onUpdate?: () => void,
|
|
) => {
|
|
const { t } = useTranslation()
|
|
const { notify } = useToastContext()
|
|
const pendingOperationCredentialId = useRef<string | null>(null)
|
|
const [deleteCredentialId, setDeleteCredentialId] = useState<string | null>(null)
|
|
const { mutateAsync: deletePluginCredential } = useDeletePluginCredentialHook(pluginPayload)
|
|
const openConfirm = useCallback((credentialId?: string) => {
|
|
if (credentialId)
|
|
pendingOperationCredentialId.current = credentialId
|
|
|
|
setDeleteCredentialId(pendingOperationCredentialId.current)
|
|
}, [])
|
|
const closeConfirm = useCallback(() => {
|
|
setDeleteCredentialId(null)
|
|
pendingOperationCredentialId.current = null
|
|
}, [])
|
|
const [doingAction, setDoingAction] = useState(false)
|
|
const doingActionRef = useRef(doingAction)
|
|
const handleSetDoingAction = useCallback((doing: boolean) => {
|
|
doingActionRef.current = doing
|
|
setDoingAction(doing)
|
|
}, [])
|
|
const [editValues, setEditValues] = useState<Record<string, any> | null>(null)
|
|
const handleConfirm = useCallback(async () => {
|
|
if (doingActionRef.current)
|
|
return
|
|
if (!pendingOperationCredentialId.current) {
|
|
setDeleteCredentialId(null)
|
|
return
|
|
}
|
|
try {
|
|
handleSetDoingAction(true)
|
|
await deletePluginCredential({ credential_id: pendingOperationCredentialId.current })
|
|
notify({
|
|
type: 'success',
|
|
message: t('common.api.actionSuccess'),
|
|
})
|
|
onUpdate?.()
|
|
setDeleteCredentialId(null)
|
|
pendingOperationCredentialId.current = null
|
|
setEditValues(null)
|
|
}
|
|
finally {
|
|
handleSetDoingAction(false)
|
|
}
|
|
}, [deletePluginCredential, onUpdate, notify, t, handleSetDoingAction])
|
|
const handleEdit = useCallback((id: string, values: Record<string, any>) => {
|
|
pendingOperationCredentialId.current = id
|
|
setEditValues(values)
|
|
}, [])
|
|
const handleRemove = useCallback(() => {
|
|
setDeleteCredentialId(pendingOperationCredentialId.current)
|
|
}, [])
|
|
const { mutateAsync: setPluginDefaultCredential } = useSetPluginDefaultCredentialHook(pluginPayload)
|
|
const handleSetDefault = useCallback(async (id: string) => {
|
|
if (doingActionRef.current)
|
|
return
|
|
try {
|
|
handleSetDoingAction(true)
|
|
await setPluginDefaultCredential(id)
|
|
notify({
|
|
type: 'success',
|
|
message: t('common.api.actionSuccess'),
|
|
})
|
|
onUpdate?.()
|
|
}
|
|
finally {
|
|
handleSetDoingAction(false)
|
|
}
|
|
}, [setPluginDefaultCredential, onUpdate, notify, t, handleSetDoingAction])
|
|
const { mutateAsync: updatePluginCredential } = useUpdatePluginCredentialHook(pluginPayload)
|
|
const handleRename = useCallback(async (payload: {
|
|
credential_id: string
|
|
name: string
|
|
}) => {
|
|
if (doingActionRef.current)
|
|
return
|
|
try {
|
|
handleSetDoingAction(true)
|
|
await updatePluginCredential(payload)
|
|
notify({
|
|
type: 'success',
|
|
message: t('common.api.actionSuccess'),
|
|
})
|
|
onUpdate?.()
|
|
}
|
|
finally {
|
|
handleSetDoingAction(false)
|
|
}
|
|
}, [updatePluginCredential, notify, t, handleSetDoingAction, onUpdate])
|
|
|
|
return {
|
|
doingAction,
|
|
handleSetDoingAction,
|
|
openConfirm,
|
|
closeConfirm,
|
|
deleteCredentialId,
|
|
setDeleteCredentialId,
|
|
handleConfirm,
|
|
editValues,
|
|
setEditValues,
|
|
handleEdit,
|
|
handleRemove,
|
|
handleSetDefault,
|
|
handleRename,
|
|
pendingOperationCredentialId,
|
|
}
|
|
}
|