mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 02:42:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			121 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Popover, PopoverButton, PopoverPanel, Transition } from '@headlessui/react'
 | |
| import { Fragment, cloneElement, useRef } from 'react'
 | |
| import cn from '@/utils/classnames'
 | |
| 
 | |
| export type HtmlContentProps = {
 | |
|   onClose?: () => void
 | |
|   onClick?: () => void
 | |
| }
 | |
| 
 | |
| type IPopover = {
 | |
|   className?: string
 | |
|   htmlContent: React.ReactNode
 | |
|   popupClassName?: string
 | |
|   trigger?: 'click' | 'hover'
 | |
|   position?: 'bottom' | 'br' | 'bl'
 | |
|   btnElement?: string | React.ReactNode
 | |
|   btnClassName?: string | ((open: boolean) => string)
 | |
|   manualClose?: boolean
 | |
|   disabled?: boolean
 | |
| }
 | |
| 
 | |
| const timeoutDuration = 100
 | |
| 
 | |
| export default function CustomPopover({
 | |
|   trigger = 'hover',
 | |
|   position = 'bottom',
 | |
|   htmlContent,
 | |
|   popupClassName,
 | |
|   btnElement,
 | |
|   className,
 | |
|   btnClassName,
 | |
|   manualClose,
 | |
|   disabled = false,
 | |
| }: IPopover) {
 | |
|   const buttonRef = useRef<HTMLButtonElement>(null)
 | |
|   const timeOutRef = useRef<number | null>(null)
 | |
| 
 | |
|   const onMouseEnter = (isOpen: boolean) => {
 | |
|     timeOutRef.current && window.clearTimeout(timeOutRef.current)
 | |
|     !isOpen && buttonRef.current?.click()
 | |
|   }
 | |
| 
 | |
|   const onMouseLeave = (isOpen: boolean) => {
 | |
|     timeOutRef.current = window.setTimeout(() => {
 | |
|       isOpen && buttonRef.current?.click()
 | |
|     }, timeoutDuration)
 | |
|   }
 | |
| 
 | |
|   return (
 | |
|     <Popover className="relative">
 | |
|       {({ open }: { open: boolean }) => {
 | |
|         return (
 | |
|           <>
 | |
|             <div
 | |
|               {...(trigger !== 'hover'
 | |
|                 ? {}
 | |
|                 : {
 | |
|                   onMouseLeave: () => onMouseLeave(open),
 | |
|                   onMouseEnter: () => onMouseEnter(open),
 | |
|                 })}
 | |
|             >
 | |
|               <PopoverButton
 | |
|                 ref={buttonRef}
 | |
|                 disabled={disabled}
 | |
|                 className={cn(
 | |
|                   'group inline-flex items-center rounded-lg border border-components-button-secondary-border bg-components-button-secondary-bg px-3 py-2 text-base font-medium hover:border-components-button-secondary-border-hover hover:bg-components-button-secondary-bg-hover focus:outline-none',
 | |
|                   open && 'border-components-button-secondary-border bg-components-button-secondary-bg-hover',
 | |
|                   (btnClassName && typeof btnClassName === 'string') && btnClassName,
 | |
|                   (btnClassName && typeof btnClassName !== 'string') && btnClassName?.(open),
 | |
|                 )}
 | |
|               >
 | |
|                 {btnElement}
 | |
|               </PopoverButton>
 | |
|               <Transition as={Fragment}>
 | |
|                 <PopoverPanel
 | |
|                   className={cn(
 | |
|                     'absolute z-10 mt-1 w-full max-w-sm px-4 sm:px-0 lg:max-w-3xl',
 | |
|                     position === 'bottom' && 'left-1/2 -translate-x-1/2',
 | |
|                     position === 'bl' && 'left-0',
 | |
|                     position === 'br' && 'right-0',
 | |
|                     className,
 | |
|                   )}
 | |
|                   {...(trigger !== 'hover'
 | |
|                     ? {}
 | |
|                     : {
 | |
|                       onMouseLeave: () => onMouseLeave(open),
 | |
|                       onMouseEnter: () => onMouseEnter(open),
 | |
|                     })
 | |
|                   }
 | |
|                 >
 | |
|                   {({ close }) => (
 | |
|                     <div
 | |
|                       className={cn('w-fit min-w-[130px] overflow-hidden rounded-lg bg-components-panel-bg shadow-lg ring-1 ring-black/5', popupClassName)}
 | |
|                       {...(trigger !== 'hover'
 | |
|                         ? {}
 | |
|                         : {
 | |
|                           onMouseLeave: () => onMouseLeave(open),
 | |
|                           onMouseEnter: () => onMouseEnter(open),
 | |
|                         })
 | |
|                       }
 | |
|                     >
 | |
|                       {cloneElement(htmlContent as React.ReactElement, {
 | |
|                         onClose: () => onMouseLeave(open),
 | |
|                         ...(manualClose
 | |
|                           ? {
 | |
|                             onClick: close,
 | |
|                           }
 | |
|                           : {}),
 | |
|                       })}
 | |
|                     </div>
 | |
|                   )}
 | |
|                 </PopoverPanel>
 | |
|               </Transition>
 | |
|             </div>
 | |
|           </>
 | |
|         )
 | |
|       }}
 | |
|     </Popover>
 | |
|   )
 | |
| }
 | 
