mirror of
https://github.com/langgenius/dify.git
synced 2026-07-28 23:59:34 +08:00
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import type { FC } from 'react'
|
|
import { CopyFeedbackNew } from '@/app/components/base/copy-feedback'
|
|
|
|
type CardProps = {
|
|
log: { role: string; text: string }[]
|
|
}
|
|
const Card: FC<CardProps> = ({ log }) => {
|
|
return (
|
|
<>
|
|
{log.length === 1 && (
|
|
<div className="px-4 py-2">
|
|
<div className="whitespace-pre-line text-text-secondary">{log[0]!.text}</div>
|
|
</div>
|
|
)}
|
|
{log.length > 1 && (
|
|
<div>
|
|
{log.map((item, index) => (
|
|
<div
|
|
key={index}
|
|
className="group/card mb-2 rounded-xl px-4 pt-2 pb-4 last-of-type:mb-0 hover:bg-state-base-hover"
|
|
>
|
|
<div className="flex h-8 items-center justify-between">
|
|
<div className="font-semibold text-[#2D31A6]">{item.role.toUpperCase()}</div>
|
|
<CopyFeedbackNew
|
|
className="hidden size-6 group-hover/card:block"
|
|
content={item.text}
|
|
/>
|
|
</div>
|
|
<div className="whitespace-pre-line text-text-secondary">{item.text}</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default Card
|