2025-02-17 17:05:13 +08:00
|
|
|
'use client'
|
2025-07-10 14:14:02 +08:00
|
|
|
import { RiCloseLine, RiSearchLine } from '@remixicon/react'
|
2025-02-17 17:05:13 +08:00
|
|
|
import TagsFilter from './tags-filter'
|
|
|
|
|
import ActionButton from '@/app/components/base/action-button'
|
|
|
|
|
import cn from '@/utils/classnames'
|
2025-07-10 14:14:02 +08:00
|
|
|
import { RiAddLine } from '@remixicon/react'
|
2025-09-18 12:49:10 +08:00
|
|
|
import Divider from '@/app/components/base/divider'
|
2025-02-17 17:05:13 +08:00
|
|
|
|
|
|
|
|
type SearchBoxProps = {
|
|
|
|
|
search: string
|
|
|
|
|
onSearchChange: (search: string) => void
|
2025-07-25 15:01:28 +08:00
|
|
|
wrapperClassName?: string
|
2025-02-17 17:05:13 +08:00
|
|
|
inputClassName?: string
|
|
|
|
|
tags: string[]
|
|
|
|
|
onTagsChange: (tags: string[]) => void
|
|
|
|
|
placeholder?: string
|
|
|
|
|
locale?: string
|
2025-07-10 14:14:02 +08:00
|
|
|
supportAddCustomTool?: boolean
|
2025-09-18 12:49:10 +08:00
|
|
|
usedInMarketplace?: boolean
|
2025-07-10 14:14:02 +08:00
|
|
|
onShowAddCustomCollectionModal?: () => void
|
|
|
|
|
onAddedCustomTool?: () => void
|
2025-02-17 17:05:13 +08:00
|
|
|
}
|
|
|
|
|
const SearchBox = ({
|
|
|
|
|
search,
|
|
|
|
|
onSearchChange,
|
2025-07-25 15:01:28 +08:00
|
|
|
wrapperClassName,
|
2025-02-17 17:05:13 +08:00
|
|
|
inputClassName,
|
|
|
|
|
tags,
|
|
|
|
|
onTagsChange,
|
|
|
|
|
placeholder = '',
|
|
|
|
|
locale,
|
2025-09-18 12:49:10 +08:00
|
|
|
usedInMarketplace = false,
|
2025-07-10 14:14:02 +08:00
|
|
|
supportAddCustomTool,
|
|
|
|
|
onShowAddCustomCollectionModal,
|
2025-02-17 17:05:13 +08:00
|
|
|
}: SearchBoxProps) => {
|
|
|
|
|
return (
|
|
|
|
|
<div
|
2025-07-25 15:01:28 +08:00
|
|
|
className={cn('z-[11] flex items-center', wrapperClassName)}
|
2025-02-17 17:05:13 +08:00
|
|
|
>
|
2025-07-10 14:14:02 +08:00
|
|
|
<div className={
|
|
|
|
|
cn('flex items-center',
|
2025-09-18 12:49:10 +08:00
|
|
|
usedInMarketplace && 'rounded-xl border border-components-chat-input-border bg-components-panel-bg-blur p-1.5 shadow-md',
|
|
|
|
|
!usedInMarketplace && 'rounded-lg bg-components-input-bg-normal p-0.5',
|
2025-07-10 14:14:02 +08:00
|
|
|
inputClassName,
|
|
|
|
|
)
|
|
|
|
|
}>
|
2025-09-18 12:49:10 +08:00
|
|
|
{
|
|
|
|
|
usedInMarketplace && (
|
|
|
|
|
<>
|
|
|
|
|
<TagsFilter
|
|
|
|
|
tags={tags}
|
|
|
|
|
onTagsChange={onTagsChange}
|
|
|
|
|
usedInMarketplace
|
|
|
|
|
locale={locale}
|
|
|
|
|
/>
|
|
|
|
|
<Divider type='vertical' className='mx-1 h-3.5' />
|
|
|
|
|
<div className='flex grow items-center gap-x-2 p-1'>
|
|
|
|
|
<input
|
|
|
|
|
className={cn(
|
|
|
|
|
'body-md-medium inline-block grow appearance-none bg-transparent text-text-secondary outline-none',
|
|
|
|
|
)}
|
|
|
|
|
value={search}
|
|
|
|
|
onChange={(e) => {
|
|
|
|
|
onSearchChange(e.target.value)
|
|
|
|
|
}}
|
|
|
|
|
placeholder={placeholder}
|
|
|
|
|
/>
|
|
|
|
|
{
|
|
|
|
|
search && (
|
|
|
|
|
<ActionButton
|
|
|
|
|
onClick={() => onSearchChange('')}
|
|
|
|
|
className='shrink-0'
|
|
|
|
|
>
|
|
|
|
|
<RiCloseLine className='size-4' />
|
|
|
|
|
</ActionButton>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
!usedInMarketplace && (
|
|
|
|
|
<>
|
|
|
|
|
<div className='flex grow items-center p-2'>
|
|
|
|
|
<RiSearchLine className='size-4 text-components-input-text-placeholder' />
|
|
|
|
|
<input
|
|
|
|
|
className={cn(
|
|
|
|
|
'body-md-medium ml-1.5 mr-1 inline-block grow appearance-none bg-transparent text-text-secondary outline-none',
|
|
|
|
|
search && 'mr-2',
|
|
|
|
|
)}
|
|
|
|
|
value={search}
|
|
|
|
|
onChange={(e) => {
|
|
|
|
|
onSearchChange(e.target.value)
|
|
|
|
|
}}
|
|
|
|
|
placeholder={placeholder}
|
|
|
|
|
/>
|
|
|
|
|
{
|
|
|
|
|
search && (
|
|
|
|
|
<ActionButton
|
|
|
|
|
onClick={() => onSearchChange('')}
|
|
|
|
|
className='shrink-0'
|
|
|
|
|
>
|
|
|
|
|
<RiCloseLine className='size-4' />
|
|
|
|
|
</ActionButton>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
</div>
|
|
|
|
|
<Divider type='vertical' className='mx-0 mr-0.5 h-3.5' />
|
|
|
|
|
<TagsFilter
|
|
|
|
|
tags={tags}
|
|
|
|
|
onTagsChange={onTagsChange}
|
|
|
|
|
locale={locale}
|
|
|
|
|
/>
|
|
|
|
|
</>
|
|
|
|
|
)
|
|
|
|
|
}
|
2025-02-17 17:05:13 +08:00
|
|
|
</div>
|
2025-07-10 14:14:02 +08:00
|
|
|
{supportAddCustomTool && (
|
|
|
|
|
<div className='flex shrink-0 items-center'>
|
|
|
|
|
<ActionButton
|
|
|
|
|
className='ml-2 rounded-full bg-components-button-primary-bg text-components-button-primary-text hover:bg-components-button-primary-bg hover:text-components-button-primary-text'
|
|
|
|
|
onClick={onShowAddCustomCollectionModal}
|
|
|
|
|
>
|
|
|
|
|
<RiAddLine className='h-4 w-4' />
|
|
|
|
|
</ActionButton>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2025-02-17 17:05:13 +08:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default SearchBox
|