mirror of
https://github.com/langgenius/dify.git
synced 2026-03-12 02:28:54 +08:00
95 lines
2.6 KiB
TypeScript
95 lines
2.6 KiB
TypeScript
import {
|
|
memo,
|
|
useMemo,
|
|
} from 'react'
|
|
import AddOAuthButton from './add-oauth-button'
|
|
import type { AddOAuthButtonProps } from './add-oauth-button'
|
|
import AddApiKeyButton from './add-api-key-button'
|
|
import type { AddApiKeyButtonProps } from './add-api-key-button'
|
|
import type { PluginPayload } from '../types'
|
|
|
|
type AuthorizeProps = {
|
|
pluginPayload: PluginPayload
|
|
theme?: 'primary' | 'secondary'
|
|
showDivider?: boolean
|
|
canOAuth?: boolean
|
|
canApiKey?: boolean
|
|
disabled?: boolean
|
|
}
|
|
const Authorize = ({
|
|
pluginPayload,
|
|
theme = 'primary',
|
|
showDivider = true,
|
|
canOAuth,
|
|
canApiKey,
|
|
disabled,
|
|
}: AuthorizeProps) => {
|
|
const oAuthButtonProps: AddOAuthButtonProps = useMemo(() => {
|
|
if (theme === 'secondary') {
|
|
return {
|
|
buttonText: !canApiKey ? 'Add OAuth Authorization' : 'Add OAuth',
|
|
buttonVariant: 'secondary',
|
|
className: 'hover:bg-components-button-secondary-bg',
|
|
buttonLeftClassName: 'hover:bg-components-button-secondary-bg-hover',
|
|
buttonRightClassName: 'hover:bg-components-button-secondary-bg-hover',
|
|
dividerClassName: 'bg-divider-regular opacity-100',
|
|
pluginPayload,
|
|
}
|
|
}
|
|
|
|
return {
|
|
buttonText: !canApiKey ? 'Use OAuth Authorization' : 'Use OAuth',
|
|
pluginPayload,
|
|
}
|
|
}, [canApiKey, theme, pluginPayload])
|
|
|
|
const apiKeyButtonProps: AddApiKeyButtonProps = useMemo(() => {
|
|
if (theme === 'secondary') {
|
|
return {
|
|
pluginPayload,
|
|
buttonVariant: 'secondary',
|
|
buttonText: !canOAuth ? 'API Key Authorization Configuration' : 'Add API Key',
|
|
}
|
|
}
|
|
return {
|
|
pluginPayload,
|
|
buttonText: !canOAuth ? 'API Key Authorization Configuration' : 'Use API Key',
|
|
buttonVariant: !canOAuth ? 'primary' : 'secondary-accent',
|
|
}
|
|
}, [canOAuth, theme, pluginPayload])
|
|
|
|
return (
|
|
<>
|
|
<div className='flex items-center space-x-1.5'>
|
|
{
|
|
canOAuth && (
|
|
<AddOAuthButton
|
|
{...oAuthButtonProps}
|
|
disabled={disabled}
|
|
/>
|
|
)
|
|
}
|
|
{
|
|
showDivider && canOAuth && canApiKey && (
|
|
<div className='system-2xs-medium-uppercase flex shrink-0 flex-col items-center justify-between text-text-tertiary'>
|
|
<div className='h-2 w-[1px] bg-divider-subtle'></div>
|
|
or
|
|
<div className='h-2 w-[1px] bg-divider-subtle'></div>
|
|
</div>
|
|
)
|
|
}
|
|
{
|
|
canApiKey && (
|
|
<AddApiKeyButton
|
|
{...apiKeyButtonProps}
|
|
disabled={disabled}
|
|
/>
|
|
)
|
|
}
|
|
</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default memo(Authorize)
|