mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-30 18:15:15 +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>
124 lines
3.6 KiB
TypeScript
124 lines
3.6 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React, { useMemo } from 'react'
|
|
import { useState } from 'react'
|
|
import {
|
|
PortalToFollowElem,
|
|
PortalToFollowElemContent,
|
|
PortalToFollowElemTrigger,
|
|
} from '@/app/components/base/portal-to-follow-elem'
|
|
import type {
|
|
OffsetOptions,
|
|
Placement,
|
|
} from '@floating-ui/react'
|
|
import Input from '@/app/components/base/input'
|
|
import AppIcon from '@/app/components/base/app-icon'
|
|
import type { App } from '@/types/app'
|
|
|
|
type Props = {
|
|
appList: App[]
|
|
scope: string
|
|
disabled: boolean
|
|
trigger: React.ReactNode
|
|
placement?: Placement
|
|
offset?: OffsetOptions
|
|
isShow: boolean
|
|
onShowChange: (isShow: boolean) => void
|
|
onSelect: (app: App) => void
|
|
}
|
|
|
|
const AppPicker: FC<Props> = ({
|
|
scope,
|
|
appList,
|
|
disabled,
|
|
trigger,
|
|
placement = 'right-start',
|
|
offset = 0,
|
|
isShow,
|
|
onShowChange,
|
|
onSelect,
|
|
}) => {
|
|
const [searchText, setSearchText] = useState('')
|
|
const filteredAppList = useMemo(() => {
|
|
return (appList || [])
|
|
.filter(app => app.name.toLowerCase().includes(searchText.toLowerCase()))
|
|
.filter(app => (app.mode !== 'advanced-chat' && app.mode !== 'workflow') || !!app.workflow)
|
|
.filter(app => scope === 'all'
|
|
|| (scope === 'completion' && app.mode === 'completion')
|
|
|| (scope === 'workflow' && app.mode === 'workflow')
|
|
|| (scope === 'chat' && app.mode === 'advanced-chat')
|
|
|| (scope === 'chat' && app.mode === 'agent-chat')
|
|
|| (scope === 'chat' && app.mode === 'chat'))
|
|
}, [appList, scope, searchText])
|
|
const getAppType = (app: App) => {
|
|
switch (app.mode) {
|
|
case 'advanced-chat':
|
|
return 'chatflow'
|
|
case 'agent-chat':
|
|
return 'agent'
|
|
case 'chat':
|
|
return 'chat'
|
|
case 'completion':
|
|
return 'completion'
|
|
case 'workflow':
|
|
return 'workflow'
|
|
}
|
|
}
|
|
|
|
const handleTriggerClick = () => {
|
|
if (disabled) return
|
|
onShowChange(true)
|
|
}
|
|
|
|
return (
|
|
<PortalToFollowElem
|
|
placement={placement}
|
|
offset={offset}
|
|
open={isShow}
|
|
onOpenChange={onShowChange}
|
|
>
|
|
<PortalToFollowElemTrigger
|
|
onClick={handleTriggerClick}
|
|
>
|
|
{trigger}
|
|
</PortalToFollowElemTrigger>
|
|
|
|
<PortalToFollowElemContent className='z-[1000]'>
|
|
<div className="relative min-h-20 w-[356px] rounded-xl border-[0.5px] border-components-panel-border bg-components-panel-bg-blur shadow-lg backdrop-blur-sm">
|
|
<div className='p-2 pb-1'>
|
|
<Input
|
|
showLeftIcon
|
|
showClearIcon
|
|
value={searchText}
|
|
onChange={e => setSearchText(e.target.value)}
|
|
onClear={() => setSearchText('')}
|
|
/>
|
|
</div>
|
|
<div className='p-1'>
|
|
{filteredAppList.map(app => (
|
|
<div
|
|
key={app.id}
|
|
className='flex cursor-pointer items-center gap-3 rounded-lg py-1 pl-2 pr-3 hover:bg-state-base-hover'
|
|
onClick={() => onSelect(app)}
|
|
>
|
|
<AppIcon
|
|
className='shrink-0'
|
|
size='xs'
|
|
iconType={app.icon_type}
|
|
icon={app.icon}
|
|
background={app.icon_background}
|
|
imageUrl={app.icon_url}
|
|
/>
|
|
<div title={app.name} className='system-sm-medium grow text-components-input-text-filled'>{app.name}</div>
|
|
<div className='system-2xs-medium-uppercase shrink-0 text-text-tertiary'>{getAppType(app)}</div>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</PortalToFollowElemContent>
|
|
</PortalToFollowElem>
|
|
)
|
|
}
|
|
|
|
export default React.memo(AppPicker)
|