mirror of
https://github.com/langgenius/dify.git
synced 2026-05-11 23:18:39 +08:00
75 lines
2.3 KiB
TypeScript
75 lines
2.3 KiB
TypeScript
import { cn } from '@langgenius/dify-ui/cn'
|
|
import { Popover, PopoverContent, PopoverTrigger } from '@langgenius/dify-ui/popover'
|
|
import * as React from 'react'
|
|
import { useCallback, useState } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import SecretKeyModal from '@/app/components/develop/secret-key/secret-key-modal'
|
|
import Indicator from '@/app/components/header/indicator'
|
|
import Card from './card'
|
|
|
|
type ServiceApiProps = {
|
|
apiBaseUrl: string
|
|
}
|
|
|
|
const ServiceApi = ({
|
|
apiBaseUrl,
|
|
}: ServiceApiProps) => {
|
|
const { t } = useTranslation()
|
|
const [open, setOpen] = useState(false)
|
|
const [isSecretKeyModalVisible, setIsSecretKeyModalVisible] = useState(false)
|
|
|
|
const handleOpenSecretKeyModal = useCallback(() => {
|
|
setIsSecretKeyModalVisible(true)
|
|
}, [])
|
|
|
|
const handleCloseSecretKeyModal = useCallback(() => {
|
|
setIsSecretKeyModalVisible(false)
|
|
}, [])
|
|
|
|
return (
|
|
<div>
|
|
<Popover
|
|
open={open}
|
|
onOpenChange={setOpen}
|
|
>
|
|
<PopoverTrigger
|
|
render={(
|
|
<button type="button" className="w-full border-none bg-transparent p-0 text-left">
|
|
<div className={cn(
|
|
'relative flex h-8 cursor-pointer items-center gap-2 rounded-lg border-[0.5px] border-components-button-secondary-border-hover bg-components-button-secondary-bg px-3',
|
|
open ? 'bg-components-button-secondary-bg-hover' : 'hover:bg-components-button-secondary-bg-hover',
|
|
)}
|
|
>
|
|
<Indicator
|
|
className={cn('shrink-0')}
|
|
color={
|
|
apiBaseUrl ? 'green' : 'yellow'
|
|
}
|
|
/>
|
|
<div className="grow system-sm-medium text-text-secondary">{t('serviceApi.title', { ns: 'dataset' })}</div>
|
|
</div>
|
|
</button>
|
|
)}
|
|
/>
|
|
<PopoverContent
|
|
placement="top-start"
|
|
sideOffset={4}
|
|
alignOffset={-4}
|
|
popupClassName="border-none bg-transparent shadow-none"
|
|
>
|
|
<Card
|
|
apiBaseUrl={apiBaseUrl}
|
|
onOpenSecretKeyModal={handleOpenSecretKeyModal}
|
|
/>
|
|
</PopoverContent>
|
|
</Popover>
|
|
<SecretKeyModal
|
|
isShow={isSecretKeyModalVisible}
|
|
onClose={handleCloseSecretKeyModal}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(ServiceApi)
|