mirror of
https://github.com/langgenius/dify.git
synced 2025-07-30 21:10:18 +00:00

Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: Yeuoly <admin@srmxy.cn>
189 lines
5.6 KiB
TypeScript
189 lines
5.6 KiB
TypeScript
import {
|
|
memo,
|
|
useCallback,
|
|
useRef,
|
|
useState,
|
|
} from 'react'
|
|
import { RiExternalLinkLine } from '@remixicon/react'
|
|
import {
|
|
useForm,
|
|
useStore,
|
|
} from '@tanstack/react-form'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Modal from '@/app/components/base/modal/modal'
|
|
import {
|
|
useDeletePluginOAuthCustomClientHook,
|
|
useInvalidPluginOAuthClientSchemaHook,
|
|
useSetPluginOAuthCustomClientHook,
|
|
} from '../hooks/use-credential'
|
|
import type { PluginPayload } from '../types'
|
|
import AuthForm from '@/app/components/base/form/form-scenarios/auth'
|
|
import type {
|
|
FormRefObject,
|
|
FormSchema,
|
|
} from '@/app/components/base/form/types'
|
|
import { useToastContext } from '@/app/components/base/toast'
|
|
import Button from '@/app/components/base/button'
|
|
import { useRenderI18nObject } from '@/hooks/use-i18n'
|
|
|
|
type OAuthClientSettingsProps = {
|
|
pluginPayload: PluginPayload
|
|
onClose?: () => void
|
|
editValues?: Record<string, any>
|
|
disabled?: boolean
|
|
schemas: FormSchema[]
|
|
onAuth?: () => Promise<void>
|
|
hasOriginalClientParams?: boolean
|
|
onUpdate?: () => void
|
|
}
|
|
const OAuthClientSettings = ({
|
|
pluginPayload,
|
|
onClose,
|
|
editValues,
|
|
disabled,
|
|
schemas,
|
|
onAuth,
|
|
hasOriginalClientParams,
|
|
onUpdate,
|
|
}: OAuthClientSettingsProps) => {
|
|
const { t } = useTranslation()
|
|
const { notify } = useToastContext()
|
|
const [doingAction, setDoingAction] = useState(false)
|
|
const doingActionRef = useRef(doingAction)
|
|
const handleSetDoingAction = useCallback((value: boolean) => {
|
|
doingActionRef.current = value
|
|
setDoingAction(value)
|
|
}, [])
|
|
const defaultValues = schemas.reduce((acc, schema) => {
|
|
if (schema.default)
|
|
acc[schema.name] = schema.default
|
|
return acc
|
|
}, {} as Record<string, any>)
|
|
const { mutateAsync: setPluginOAuthCustomClient } = useSetPluginOAuthCustomClientHook(pluginPayload)
|
|
const invalidPluginOAuthClientSchema = useInvalidPluginOAuthClientSchemaHook(pluginPayload)
|
|
const formRef = useRef<FormRefObject>(null)
|
|
const handleConfirm = useCallback(async () => {
|
|
if (doingActionRef.current)
|
|
return
|
|
|
|
try {
|
|
const {
|
|
isCheckValidated,
|
|
values,
|
|
} = formRef.current?.getFormValues({
|
|
needCheckValidatedValues: true,
|
|
needTransformWhenSecretFieldIsPristine: true,
|
|
}) || { isCheckValidated: false, values: {} }
|
|
if (!isCheckValidated)
|
|
throw new Error('error')
|
|
const {
|
|
__oauth_client__,
|
|
...restValues
|
|
} = values
|
|
|
|
handleSetDoingAction(true)
|
|
await setPluginOAuthCustomClient({
|
|
client_params: restValues,
|
|
enable_oauth_custom_client: __oauth_client__ === 'custom',
|
|
})
|
|
notify({
|
|
type: 'success',
|
|
message: t('common.api.actionSuccess'),
|
|
})
|
|
|
|
onClose?.()
|
|
onUpdate?.()
|
|
invalidPluginOAuthClientSchema()
|
|
}
|
|
finally {
|
|
handleSetDoingAction(false)
|
|
}
|
|
}, [onClose, onUpdate, invalidPluginOAuthClientSchema, setPluginOAuthCustomClient, notify, t, handleSetDoingAction])
|
|
|
|
const handleConfirmAndAuthorize = useCallback(async () => {
|
|
await handleConfirm()
|
|
if (onAuth)
|
|
await onAuth()
|
|
}, [handleConfirm, onAuth])
|
|
const { mutateAsync: deletePluginOAuthCustomClient } = useDeletePluginOAuthCustomClientHook(pluginPayload)
|
|
const handleRemove = useCallback(async () => {
|
|
if (doingActionRef.current)
|
|
return
|
|
|
|
try {
|
|
handleSetDoingAction(true)
|
|
await deletePluginOAuthCustomClient()
|
|
notify({
|
|
type: 'success',
|
|
message: t('common.api.actionSuccess'),
|
|
})
|
|
onClose?.()
|
|
onUpdate?.()
|
|
invalidPluginOAuthClientSchema()
|
|
}
|
|
finally {
|
|
handleSetDoingAction(false)
|
|
}
|
|
}, [onUpdate, invalidPluginOAuthClientSchema, deletePluginOAuthCustomClient, notify, t, handleSetDoingAction, onClose])
|
|
const form = useForm({
|
|
defaultValues: editValues || defaultValues,
|
|
})
|
|
const __oauth_client__ = useStore(form.store, s => s.values.__oauth_client__)
|
|
const helpField = schemas.find(schema => schema.url && schema.help)
|
|
const renderI18nObject = useRenderI18nObject()
|
|
return (
|
|
<Modal
|
|
title={t('plugin.auth.oauthClientSettings')}
|
|
confirmButtonText={t('plugin.auth.saveAndAuth')}
|
|
cancelButtonText={t('plugin.auth.saveOnly')}
|
|
extraButtonText={t('common.operation.cancel')}
|
|
showExtraButton
|
|
extraButtonVariant='secondary'
|
|
onExtraButtonClick={onClose}
|
|
onClose={onClose}
|
|
onCancel={handleConfirm}
|
|
onConfirm={handleConfirmAndAuthorize}
|
|
disabled={disabled || doingAction}
|
|
footerSlot={
|
|
__oauth_client__ === 'custom' && hasOriginalClientParams && (
|
|
<div className='grow'>
|
|
<Button
|
|
variant='secondary'
|
|
className='text-components-button-destructive-secondary-text'
|
|
disabled={disabled || doingAction || !editValues}
|
|
onClick={handleRemove}
|
|
>
|
|
{t('common.operation.remove')}
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|
|
>
|
|
<>
|
|
<AuthForm
|
|
formFromProps={form}
|
|
ref={formRef}
|
|
formSchemas={schemas}
|
|
defaultValues={editValues || defaultValues}
|
|
disabled={disabled}
|
|
/>
|
|
{
|
|
helpField && __oauth_client__ === 'custom' && (
|
|
<a
|
|
className='system-xs-regular mt-4 flex items-center text-text-accent'
|
|
href={helpField?.url}
|
|
target='_blank'
|
|
>
|
|
<span className='break-all'>
|
|
{renderI18nObject(helpField?.help as any)}
|
|
</span>
|
|
<RiExternalLinkLine className='ml-1 h-3 w-3' />
|
|
</a>
|
|
)}
|
|
</>
|
|
</Modal>
|
|
)
|
|
}
|
|
|
|
export default memo(OAuthClientSettings)
|