app selector trigger
parent
73ce8a17a5
commit
c723bd2c96
@ -0,0 +1,49 @@
|
|||||||
|
'use client'
|
||||||
|
import React from 'react'
|
||||||
|
import { useTranslation } from 'react-i18next'
|
||||||
|
import {
|
||||||
|
RiArrowDownSLine,
|
||||||
|
} from '@remixicon/react'
|
||||||
|
import AppIcon from '@/app/components/base/app-icon'
|
||||||
|
import type { App } from '@/types/app'
|
||||||
|
import cn from '@/utils/classnames'
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
open: boolean
|
||||||
|
appDetail?: App
|
||||||
|
}
|
||||||
|
|
||||||
|
const AppTrigger = ({
|
||||||
|
open,
|
||||||
|
appDetail,
|
||||||
|
}: Props) => {
|
||||||
|
const { t } = useTranslation()
|
||||||
|
return (
|
||||||
|
<div className={cn(
|
||||||
|
'group flex items-center p-2 pl-3 bg-components-input-bg-normal rounded-lg cursor-pointer hover:bg-state-base-hover-alt',
|
||||||
|
open && 'bg-state-base-hover-alt',
|
||||||
|
appDetail && 'pl-1.5 py-1.5',
|
||||||
|
)}>
|
||||||
|
{appDetail && (
|
||||||
|
<div className='shrink-0 mr-1 p-px rounded-lg bg-components-panel-bg border border-components-panel-border'>
|
||||||
|
<AppIcon
|
||||||
|
size='xs'
|
||||||
|
iconType={appDetail.icon_type}
|
||||||
|
icon={appDetail.icon}
|
||||||
|
background={appDetail.icon_background}
|
||||||
|
imageUrl={appDetail.icon_url}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
{appDetail && (
|
||||||
|
<div className='grow system-sm-regular text-components-input-text-filled'>{appDetail.name}</div>
|
||||||
|
)}
|
||||||
|
{!appDetail && (
|
||||||
|
<div className='grow text-components-input-text-placeholder system-sm-regular truncate'>{t('app.appSelector.placeholder')}</div>
|
||||||
|
)}
|
||||||
|
<RiArrowDownSLine className={cn('shrink-0 ml-0.5 w-4 h-4 text-text-quaternary group-hover:text-text-secondary', open && 'text-text-secondary')} />
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default AppTrigger
|
||||||
@ -0,0 +1,129 @@
|
|||||||
|
'use client'
|
||||||
|
import type { FC } from 'react'
|
||||||
|
import React, { useMemo, useState } from 'react'
|
||||||
|
import { useTranslation } from 'react-i18next'
|
||||||
|
import {
|
||||||
|
PortalToFollowElem,
|
||||||
|
PortalToFollowElemContent,
|
||||||
|
PortalToFollowElemTrigger,
|
||||||
|
} from '@/app/components/base/portal-to-follow-elem'
|
||||||
|
import AppTrigger from '@/app/components/plugins/plugin-detail-panel/app-selector/app-trigger'
|
||||||
|
import ToolPicker from '@/app/components/workflow/block-selector/tool-picker'
|
||||||
|
import Button from '@/app/components/base/button'
|
||||||
|
|
||||||
|
import {
|
||||||
|
useAllBuiltInTools,
|
||||||
|
useAllCustomTools,
|
||||||
|
useAllWorkflowTools,
|
||||||
|
} from '@/service/use-tools'
|
||||||
|
import { CollectionType } from '@/app/components/tools/types'
|
||||||
|
import type { ToolDefaultValue } from '@/app/components/workflow/block-selector/types'
|
||||||
|
import type {
|
||||||
|
OffsetOptions,
|
||||||
|
Placement,
|
||||||
|
} from '@floating-ui/react'
|
||||||
|
import cn from '@/utils/classnames'
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
value?: {
|
||||||
|
provider: string
|
||||||
|
tool_name: string
|
||||||
|
}
|
||||||
|
disabled?: boolean
|
||||||
|
placement?: Placement
|
||||||
|
offset?: OffsetOptions
|
||||||
|
onSelect: (tool: {
|
||||||
|
provider: string
|
||||||
|
tool_name: string
|
||||||
|
}) => void
|
||||||
|
supportAddCustomTool?: boolean
|
||||||
|
}
|
||||||
|
const AppSelector: FC<Props> = ({
|
||||||
|
value,
|
||||||
|
disabled,
|
||||||
|
placement = 'bottom',
|
||||||
|
offset = 4,
|
||||||
|
onSelect,
|
||||||
|
}) => {
|
||||||
|
const { t } = useTranslation()
|
||||||
|
const [isShow, onShowChange] = useState(false)
|
||||||
|
const handleTriggerClick = () => {
|
||||||
|
if (disabled) return
|
||||||
|
onShowChange(true)
|
||||||
|
}
|
||||||
|
|
||||||
|
const { data: buildInTools } = useAllBuiltInTools()
|
||||||
|
const { data: customTools } = useAllCustomTools()
|
||||||
|
const { data: workflowTools } = useAllWorkflowTools()
|
||||||
|
const currentProvider = useMemo(() => {
|
||||||
|
const mergedTools = [...(buildInTools || []), ...(customTools || []), ...(workflowTools || [])]
|
||||||
|
return mergedTools.find((toolWithProvider) => {
|
||||||
|
return toolWithProvider.id === value?.provider && toolWithProvider.tools.some(tool => tool.name === value?.tool_name)
|
||||||
|
})
|
||||||
|
}, [value, buildInTools, customTools, workflowTools])
|
||||||
|
const [isShowChooseApp, setIsShowChooseApp] = useState(false)
|
||||||
|
const handleSelectTool = (tool: ToolDefaultValue) => {
|
||||||
|
const toolValue = {
|
||||||
|
provider: tool.provider_id,
|
||||||
|
tool_name: tool.tool_name,
|
||||||
|
}
|
||||||
|
onSelect(toolValue)
|
||||||
|
setIsShowChooseApp(false)
|
||||||
|
if (tool.provider_type === CollectionType.builtIn && tool.is_team_authorization)
|
||||||
|
onShowChange(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<PortalToFollowElem
|
||||||
|
placement={placement}
|
||||||
|
offset={offset}
|
||||||
|
open={isShow}
|
||||||
|
onOpenChange={onShowChange}
|
||||||
|
>
|
||||||
|
<PortalToFollowElemTrigger
|
||||||
|
className='w-full'
|
||||||
|
onClick={handleTriggerClick}
|
||||||
|
>
|
||||||
|
<AppTrigger
|
||||||
|
open={isShow}
|
||||||
|
appDetail={undefined}
|
||||||
|
/>
|
||||||
|
</PortalToFollowElemTrigger>
|
||||||
|
<PortalToFollowElemContent className='z-[1000]'>
|
||||||
|
<div className="relative w-[389px] min-h-20 rounded-xl bg-components-panel-bg-blur border-[0.5px] border-components-panel-border shadow-lg">
|
||||||
|
<div className='px-4 py-3 flex flex-col gap-1'>
|
||||||
|
<div className='h-6 flex items-center system-sm-semibold text-text-secondary'>{t('tools.toolSelector.label')}</div>
|
||||||
|
<ToolPicker
|
||||||
|
placement='bottom'
|
||||||
|
offset={offset}
|
||||||
|
trigger={
|
||||||
|
<AppTrigger
|
||||||
|
open={isShowChooseApp}
|
||||||
|
appDetail={undefined}
|
||||||
|
/>
|
||||||
|
}
|
||||||
|
isShow={isShowChooseApp}
|
||||||
|
onShowChange={setIsShowChooseApp}
|
||||||
|
disabled={false}
|
||||||
|
supportAddCustomTool
|
||||||
|
onSelect={handleSelectTool}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
{/* app inputs config panel */}
|
||||||
|
<div className='px-4 py-3 flex items-center border-t border-divider-subtle'>
|
||||||
|
<Button
|
||||||
|
variant='primary'
|
||||||
|
className={cn('shrink-0 w-full')}
|
||||||
|
onClick={() => {}}
|
||||||
|
>
|
||||||
|
{t('tools.auth.unauthorized')}
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</PortalToFollowElemContent>
|
||||||
|
</PortalToFollowElem>
|
||||||
|
</>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
export default React.memo(AppSelector)
|
||||||
Loading…
Reference in New Issue