mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-24 00:51:34 +00:00
fix(webview-ui): make Share button popover work by forwarding ref in LucideIconButton - Convert LucideIconButton to forwardRef so Radix PopoverTrigger(asChild) receives a focusable element - Enables Share popover and shareCurrentTask flow - Verified with ShareButton/TaskActions Vitest suites
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
import { forwardRef } from "react"
|
|
import { cn } from "@src/lib/utils"
|
|
import { Button, StandardTooltip } from "@src/components/ui"
|
|
import { Loader2, LucideIcon } from "lucide-react"
|
|
|
|
interface LucideIconButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
icon: LucideIcon
|
|
title: string
|
|
disabled?: boolean
|
|
tooltip?: boolean
|
|
isLoading?: boolean
|
|
style?: React.CSSProperties
|
|
}
|
|
|
|
export const LucideIconButton = forwardRef<HTMLButtonElement, LucideIconButtonProps>(
|
|
({ icon, title, className, disabled, tooltip = true, isLoading, onClick, style, ...props }, ref) => {
|
|
const Icon = icon
|
|
return (
|
|
<StandardTooltip content={tooltip ? title : undefined}>
|
|
<Button
|
|
ref={ref}
|
|
aria-label={title}
|
|
className={cn(
|
|
"relative inline-flex items-center justify-center",
|
|
"bg-transparent border-none p-1.5",
|
|
"rounded-full",
|
|
"text-vscode-foreground opacity-85",
|
|
"transition-all duration-150",
|
|
"focus:outline-none focus-visible:ring-1 focus-visible:ring-vscode-focusBorder",
|
|
"active:bg-[rgba(255,255,255,0.1)]",
|
|
!disabled && "cursor-pointer hover:opacity-100 hover:bg-[rgba(255,255,255,0.03)]",
|
|
disabled && "cursor-not-allowed opacity-40 hover:bg-transparent active:bg-transparent",
|
|
className,
|
|
)}
|
|
disabled={disabled}
|
|
onClick={!disabled ? onClick : undefined}
|
|
style={{ fontSize: 16.5, ...style }}
|
|
{...props}>
|
|
{isLoading ? <Loader2 className="size-2.5 animate-spin" /> : <Icon className="size-2.5" />}
|
|
</Button>
|
|
</StandardTooltip>
|
|
)
|
|
},
|
|
)
|
|
|
|
LucideIconButton.displayName = "LucideIconButton"
|