Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: Garfield Dai <dai.hai@foxmail.com> Co-authored-by: chenhe <guchenhe@gmail.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn>
82 lines
2.8 KiB
TypeScript
82 lines
2.8 KiB
TypeScript
import type { FC } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { useSWRConfig } from 'swr'
|
|
import type { ModelProvider } from '../declarations'
|
|
import {
|
|
CustomConfigurationStatusEnum,
|
|
PreferredProviderTypeEnum,
|
|
} from '../declarations'
|
|
import { useUpdateModelList } from '../hooks'
|
|
import PrioritySelector from './priority-selector'
|
|
import PriorityUseTip from './priority-use-tip'
|
|
import Indicator from '@/app/components/header/indicator'
|
|
import { Settings01 } from '@/app/components/base/icons/src/vender/line/general'
|
|
import Button from '@/app/components/base/button'
|
|
import { changeModelProviderPriority } from '@/service/common'
|
|
import { useToastContext } from '@/app/components/base/toast'
|
|
|
|
type CredentialPanelProps = {
|
|
provider: ModelProvider
|
|
onSetup: () => void
|
|
}
|
|
const CredentialPanel: FC<CredentialPanelProps> = ({
|
|
provider,
|
|
onSetup,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const { notify } = useToastContext()
|
|
const { mutate } = useSWRConfig()
|
|
const updateModelList = useUpdateModelList()
|
|
const customConfig = provider.custom_configuration
|
|
const systemConfig = provider.system_configuration
|
|
const priorityUseType = provider.preferred_provider_type
|
|
const customConfiged = customConfig.status === CustomConfigurationStatusEnum.active
|
|
|
|
const handleChangePriority = async (key: PreferredProviderTypeEnum) => {
|
|
const res = await changeModelProviderPriority({
|
|
url: `/workspaces/current/model-providers/${provider.provider}/preferred-provider-type`,
|
|
body: {
|
|
preferred_provider_type: key,
|
|
},
|
|
})
|
|
if (res.result === 'success') {
|
|
notify({ type: 'success', message: t('common.actionMsg.modifiedSuccessfully') })
|
|
mutate('/workspaces/current/model-providers')
|
|
updateModelList(1)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className='shrink-0 relative ml-1 p-1 w-[112px] rounded-lg bg-white/[0.3] border-[0.5px] border-black/5'>
|
|
<div className='flex items-center justify-between mb-1 pt-1 pl-2 pr-[7px] h-5 text-xs font-medium text-gray-500'>
|
|
API-KEY
|
|
<Indicator color={customConfiged ? 'green' : 'gray'} />
|
|
</div>
|
|
<div className='flex items-center gap-0.5'>
|
|
<Button
|
|
className='grow px-0 h-6 bg-white text-xs font-medium rounded-md'
|
|
onClick={onSetup}
|
|
>
|
|
<Settings01 className='mr-1 w-3 h-3' />
|
|
{t('common.operation.setup')}
|
|
</Button>
|
|
{
|
|
systemConfig.enabled && customConfiged && (
|
|
<PrioritySelector
|
|
value={priorityUseType}
|
|
onSelect={handleChangePriority}
|
|
/>
|
|
)
|
|
}
|
|
</div>
|
|
{
|
|
priorityUseType === PreferredProviderTypeEnum.custom && systemConfig.enabled && (
|
|
<PriorityUseTip />
|
|
)
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default CredentialPanel
|