dify/web/app/components/datasets/extra-info/service-api/card.tsx
yyh c9503fd818
fix(web): three small UX fixes on /datasets and /plugins (#35514)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-04-23 06:46:54 +00:00

106 lines
3.7 KiB
TypeScript

import { Button } from '@langgenius/dify-ui/button'
import { PopoverClose } from '@langgenius/dify-ui/popover'
import { RiBookOpenLine, RiKey2Line } from '@remixicon/react'
import * as React from 'react'
import { useTranslation } from 'react-i18next'
import CopyFeedback from '@/app/components/base/copy-feedback'
import { ApiAggregate } from '@/app/components/base/icons/src/vender/knowledge'
import Indicator from '@/app/components/header/indicator'
import { useDatasetApiAccessUrl } from '@/hooks/use-api-access-url'
import Link from '@/next/link'
type CardProps = {
apiBaseUrl: string
onOpenSecretKeyModal: () => void
}
const Card = ({
apiBaseUrl,
onOpenSecretKeyModal,
}: CardProps) => {
const { t } = useTranslation()
const apiReferenceUrl = useDatasetApiAccessUrl()
return (
<div className="flex w-[360px] flex-col rounded-xl border border-components-panel-border bg-components-panel-bg shadow-lg shadow-shadow-shadow-1">
<div className="flex flex-col gap-y-3 p-4">
<div className="flex items-center gap-x-3">
<div className="flex grow items-center gap-x-2">
<div className="flex size-6 shrink-0 items-center justify-center rounded-lg border-[0.5px] border-divider-subtle bg-util-colors-blue-brand-blue-brand-500 shadow-md shadow-shadow-shadow-5">
<ApiAggregate className="size-4 text-text-primary-on-surface" />
</div>
<div className="grow truncate system-sm-semibold text-text-secondary">
{t('serviceApi.card.title', { ns: 'dataset' })}
</div>
</div>
<div className="flex items-center gap-x-1">
<Indicator
className="shrink-0"
color={
apiBaseUrl ? 'green' : 'yellow'
}
/>
<div
className="system-xs-semibold-uppercase text-text-success"
>
{t('serviceApi.enabled', { ns: 'dataset' })}
</div>
</div>
</div>
<div className="flex flex-col">
<div className="system-xs-regular leading-6 text-text-tertiary">
{t('serviceApi.card.endpoint', { ns: 'dataset' })}
</div>
<div className="flex h-8 items-center gap-0.5 rounded-lg bg-components-input-bg-normal p-1 pl-2">
<div className="flex h-4 min-w-0 flex-1 items-start justify-start gap-2 px-1">
<div className="truncate system-xs-medium text-text-secondary">
{apiBaseUrl}
</div>
</div>
<CopyFeedback
content={apiBaseUrl}
/>
</div>
</div>
</div>
{/* Actions */}
<div className="flex gap-x-1 border-t-[0.5px] border-divider-subtle p-4">
<PopoverClose
render={(
<Button
variant="ghost"
size="small"
className="gap-x-px text-text-tertiary"
onClick={onOpenSecretKeyModal}
>
<RiKey2Line className="size-3.5 shrink-0" />
<span className="px-[3px] system-xs-medium">
{t('serviceApi.card.apiKey', { ns: 'dataset' })}
</span>
</Button>
)}
/>
<Link
href={apiReferenceUrl}
target="_blank"
rel="noopener noreferrer"
>
<Button
variant="ghost"
size="small"
className="gap-x-px text-text-tertiary"
>
<RiBookOpenLine className="size-3.5 shrink-0" />
<span className="px-[3px] system-xs-medium">
{t('serviceApi.card.apiReference', { ns: 'dataset' })}
</span>
</Button>
</Link>
</div>
</div>
)
}
export default React.memo(Card)