mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-26 08:08:17 +08:00

Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import { useState } from 'react'
|
|
import { RiMoreLine } from '@remixicon/react'
|
|
import {
|
|
PortalToFollowElem,
|
|
PortalToFollowElemContent,
|
|
PortalToFollowElemTrigger,
|
|
} from '@/app/components/base/portal-to-follow-elem'
|
|
import Button from '@/app/components/base/button'
|
|
import type { AgentLogItemWithChildren } from '@/types/workflow'
|
|
|
|
type AgentLogNavMoreProps = {
|
|
options: { id: string; label: string }[]
|
|
onShowAgentOrToolLog: (detail?: AgentLogItemWithChildren) => void
|
|
}
|
|
const AgentLogNavMore = ({
|
|
options,
|
|
onShowAgentOrToolLog,
|
|
}: AgentLogNavMoreProps) => {
|
|
const [open, setOpen] = useState(false)
|
|
|
|
return (
|
|
<PortalToFollowElem
|
|
placement='bottom-start'
|
|
offset={{
|
|
mainAxis: 2,
|
|
crossAxis: -54,
|
|
}}
|
|
open={open}
|
|
onOpenChange={setOpen}
|
|
>
|
|
<PortalToFollowElemTrigger>
|
|
<Button
|
|
className='h-6 w-6'
|
|
variant='ghost-accent'
|
|
>
|
|
<RiMoreLine className='h-4 w-4' />
|
|
</Button>
|
|
</PortalToFollowElemTrigger>
|
|
<PortalToFollowElemContent>
|
|
<div className='w-[136px] rounded-xl border-[0.5px] border-components-panel-border bg-components-panel-bg-blur p-1 shadow-lg'>
|
|
{
|
|
options.map(option => (
|
|
<div
|
|
key={option.id}
|
|
className='system-md-regular flex h-8 cursor-pointer items-center rounded-lg px-2 text-text-secondary hover:bg-state-base-hover'
|
|
onClick={() => {
|
|
onShowAgentOrToolLog(option as AgentLogItemWithChildren)
|
|
setOpen(false)
|
|
}}
|
|
>
|
|
{option.label}
|
|
</div>
|
|
))
|
|
}
|
|
</div>
|
|
</PortalToFollowElemContent>
|
|
</PortalToFollowElem>
|
|
)
|
|
}
|
|
|
|
export default AgentLogNavMore
|