2025-07-28 16:55:40 +08:00
|
|
|
import React from 'react'
|
|
|
|
import Divider from '@/app/components/base/divider'
|
|
|
|
import Button from '@/app/components/base/button'
|
|
|
|
import { RiBookOpenLine, RiEqualizer2Line } from '@remixicon/react'
|
|
|
|
import type { CredentialSelectorProps } from './credential-selector'
|
|
|
|
import CredentialSelector from './credential-selector'
|
2025-07-29 14:52:17 +08:00
|
|
|
import Tooltip from '@/app/components/base/tooltip'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
2025-07-28 16:55:40 +08:00
|
|
|
|
|
|
|
type HeaderProps = {
|
|
|
|
docTitle: string
|
|
|
|
docLink: string
|
|
|
|
onClickConfiguration?: () => void
|
|
|
|
} & CredentialSelectorProps
|
|
|
|
|
|
|
|
const Header = ({
|
|
|
|
docTitle,
|
|
|
|
docLink,
|
|
|
|
onClickConfiguration,
|
|
|
|
...rest
|
|
|
|
}: HeaderProps) => {
|
2025-07-29 14:52:17 +08:00
|
|
|
const { t } = useTranslation()
|
|
|
|
|
2025-07-28 16:55:40 +08:00
|
|
|
return (
|
|
|
|
<div className='flex items-center gap-x-2'>
|
|
|
|
<div className='flex shrink-0 grow items-center gap-x-1'>
|
|
|
|
<CredentialSelector
|
|
|
|
{...rest}
|
|
|
|
/>
|
|
|
|
<Divider type='vertical' className='mx-1 h-3.5' />
|
2025-07-29 14:52:17 +08:00
|
|
|
<Tooltip
|
|
|
|
popupContent={t('datasetPipeline.configurationTip', { pluginName: rest.pluginName })}
|
|
|
|
position='top'
|
2025-07-28 16:55:40 +08:00
|
|
|
>
|
2025-07-29 14:52:17 +08:00
|
|
|
<Button
|
|
|
|
variant='ghost'
|
|
|
|
size='small'
|
|
|
|
className='size-6 px-1'
|
|
|
|
>
|
|
|
|
<RiEqualizer2Line
|
|
|
|
className='h-4 w-4'
|
|
|
|
onClick={onClickConfiguration}
|
|
|
|
/>
|
|
|
|
</Button>
|
|
|
|
</Tooltip>
|
2025-07-28 16:55:40 +08:00
|
|
|
</div>
|
|
|
|
<a
|
|
|
|
className='system-xs-medium flex items-center gap-x-1 overflow-hidden text-text-accent'
|
|
|
|
href={docLink}
|
|
|
|
target='_blank'
|
|
|
|
rel='noopener noreferrer'
|
|
|
|
>
|
|
|
|
<RiBookOpenLine className='size-3.5 shrink-0' />
|
|
|
|
<span className='grow truncate' title={docTitle}>{docTitle}</span>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default React.memo(Header)
|