mirror of
https://github.com/langgenius/dify.git
synced 2026-04-30 13:37:24 +08:00
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import type { ChangeEvent } from 'react'
|
|
import { useCallback } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { cn } from '@/utils/classnames'
|
|
|
|
type SearchInputProps = {
|
|
value: string
|
|
onChange: (v: string) => void
|
|
}
|
|
const SearchInput = ({
|
|
value,
|
|
onChange,
|
|
}: SearchInputProps) => {
|
|
const { t } = useTranslation()
|
|
|
|
const handleClear = useCallback(() => {
|
|
onChange('')
|
|
}, [onChange])
|
|
|
|
const placeholderText = t('dataSource.notion.selector.searchPages', { ns: 'common' })
|
|
/* v8 ignore next -- i18n test mock always returns a non-empty string; runtime fallback is defensive. -- @preserve */
|
|
const safePlaceholderText = placeholderText || ''
|
|
|
|
return (
|
|
<div
|
|
className={cn('flex h-8 w-[200px] items-center rounded-lg bg-components-input-bg-normal p-2')}
|
|
data-testid="notion-search-input-container"
|
|
>
|
|
<div className="i-ri-search-line mr-0.5 h-4 w-4 shrink-0 text-components-input-text-placeholder" />
|
|
<input
|
|
className="min-w-0 grow appearance-none border-0 bg-transparent px-1 text-[13px] leading-[16px] text-components-input-text-filled outline-0 placeholder:text-components-input-text-placeholder"
|
|
value={value}
|
|
onChange={(e: ChangeEvent<HTMLInputElement>) => onChange(e.target.value)}
|
|
placeholder={safePlaceholderText}
|
|
data-testid="notion-search-input"
|
|
/>
|
|
{
|
|
value && (
|
|
<div
|
|
className="i-ri-close-circle-fill h-4 w-4 shrink-0 cursor-pointer text-components-input-text-placeholder"
|
|
onClick={handleClear}
|
|
data-testid="notion-search-input-clear"
|
|
/>
|
|
)
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default SearchInput
|