dify/web/app/components/base/prompt-editor/plugins/query-block/component.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

31 lines
1.1 KiB
TypeScript

import type { FC } from 'react'
import { useTranslation } from 'react-i18next'
import { UserEdit02 } from '@/app/components/base/icons/src/vender/solid/users'
import { useSelectOrDelete } from '../../hooks'
import { DELETE_QUERY_BLOCK_COMMAND } from './index'
type QueryBlockComponentProps = {
nodeKey: string
}
const QueryBlockComponent: FC<QueryBlockComponentProps> = ({ nodeKey }) => {
const { t } = useTranslation()
const [ref, isSelected] = useSelectOrDelete(nodeKey, DELETE_QUERY_BLOCK_COMMAND)
return (
<div
className={`inline-flex h-6 items-center rounded-[5px] border border-transparent bg-[#FFF6ED] pr-0.5 pl-1 hover:bg-[#FFEAD5] ${isSelected && 'border-[#FD853A]!'} `}
ref={ref}
>
<UserEdit02 className="mr-1 h-[14px] w-[14px] text-[#FD853A]" />
<div className="text-xs font-medium text-[#EC4A0A] opacity-60">{'{{'}</div>
<div className="text-xs font-medium text-[#EC4A0A]">
{t(($) => $['promptEditor.query.item.title'], { ns: 'common' })}
</div>
<div className="text-xs font-medium text-[#EC4A0A] opacity-60">{'}}'}</div>
</div>
)
}
export default QueryBlockComponent