mirror of
https://github.com/langgenius/dify.git
synced 2026-01-26 05:32:12 +08:00
Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
73 lines
1.8 KiB
TypeScript
73 lines
1.8 KiB
TypeScript
'use client'
|
|
import type { ConversationVariable } from '@/app/components/workflow/types'
|
|
import { RiAddLine } from '@remixicon/react'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Button from '@/app/components/base/button'
|
|
import {
|
|
PortalToFollowElem,
|
|
PortalToFollowElemContent,
|
|
PortalToFollowElemTrigger,
|
|
} from '@/app/components/base/portal-to-follow-elem'
|
|
import VariableModal from '@/app/components/workflow/panel/chat-variable-panel/components/variable-modal'
|
|
|
|
type Props = {
|
|
open: boolean
|
|
setOpen: (value: React.SetStateAction<boolean>) => void
|
|
showTip: boolean
|
|
chatVar?: ConversationVariable
|
|
onClose: () => void
|
|
onSave: (env: ConversationVariable) => void
|
|
}
|
|
|
|
const VariableModalTrigger = ({
|
|
open,
|
|
setOpen,
|
|
showTip,
|
|
chatVar,
|
|
onClose,
|
|
onSave,
|
|
}: Props) => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<PortalToFollowElem
|
|
open={open}
|
|
onOpenChange={() => {
|
|
setOpen(v => !v)
|
|
if (open)
|
|
onClose()
|
|
}}
|
|
placement="left-start"
|
|
offset={{
|
|
mainAxis: 8,
|
|
alignmentAxis: showTip ? -278 : -48,
|
|
}}
|
|
>
|
|
<PortalToFollowElemTrigger onClick={() => {
|
|
setOpen(v => !v)
|
|
if (open)
|
|
onClose()
|
|
}}
|
|
>
|
|
<Button variant="primary">
|
|
<RiAddLine className="mr-1 h-4 w-4" />
|
|
<span className="system-sm-medium">{t('chatVariable.button', { ns: 'workflow' })}</span>
|
|
</Button>
|
|
</PortalToFollowElemTrigger>
|
|
<PortalToFollowElemContent className="z-[11]">
|
|
<VariableModal
|
|
chatVar={chatVar}
|
|
onSave={onSave}
|
|
onClose={() => {
|
|
onClose()
|
|
setOpen(false)
|
|
}}
|
|
/>
|
|
</PortalToFollowElemContent>
|
|
</PortalToFollowElem>
|
|
)
|
|
}
|
|
|
|
export default VariableModalTrigger
|