mirror of
https://github.com/langgenius/dify.git
synced 2026-04-29 12:37:20 +08:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import type { FC } from 'react'
|
|
import * as React from 'react'
|
|
import { useEffect, useRef } from 'react'
|
|
import { cn } from '@/utils/classnames'
|
|
|
|
type OptionListItemProps = {
|
|
isSelected: boolean
|
|
onClick: () => void
|
|
noAutoScroll?: boolean
|
|
} & React.LiHTMLAttributes<HTMLLIElement>
|
|
|
|
const OptionListItem: FC<OptionListItemProps> = ({
|
|
isSelected,
|
|
onClick,
|
|
noAutoScroll,
|
|
children,
|
|
}) => {
|
|
const listItemRef = useRef<HTMLLIElement>(null)
|
|
|
|
useEffect(() => {
|
|
if (isSelected && !noAutoScroll)
|
|
listItemRef.current?.scrollIntoView({ behavior: 'instant' })
|
|
}, [])
|
|
|
|
return (
|
|
<li
|
|
ref={listItemRef}
|
|
className={cn(
|
|
'system-xs-medium flex cursor-pointer items-center justify-center rounded-md px-1.5 py-1 text-components-button-ghost-text',
|
|
isSelected ? 'bg-components-button-ghost-bg-hover' : 'hover:bg-components-button-ghost-bg-hover',
|
|
)}
|
|
onClick={() => {
|
|
listItemRef.current?.scrollIntoView({ behavior: 'smooth' })
|
|
onClick()
|
|
}}
|
|
>
|
|
{children}
|
|
</li>
|
|
)
|
|
}
|
|
|
|
export default React.memo(OptionListItem)
|