Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
76 lines
2.5 KiB
TypeScript
76 lines
2.5 KiB
TypeScript
import * as PopoverPrimitive from "@radix-ui/react-popover"
|
|
import * as React from "react"
|
|
import { useCallback, useLayoutEffect, useState } from "react"
|
|
|
|
import { cn } from "../../lib/utils"
|
|
import { usePortalContainer } from "./portal-container"
|
|
|
|
const Popover = PopoverPrimitive.Root
|
|
|
|
const PopoverTrigger = PopoverPrimitive.Trigger
|
|
|
|
const PopoverAnchor = PopoverPrimitive.Anchor
|
|
|
|
const PopoverClose = PopoverPrimitive.Close
|
|
|
|
const PopoverContent = React.forwardRef<
|
|
React.ElementRef<typeof PopoverPrimitive.Content>,
|
|
React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>
|
|
>(({ className, align = "center", sideOffset = 4, ...props }, ref) => {
|
|
const portalContainer = usePortalContainer()
|
|
// Fix for Electron: ensure position is calculated after content is fully rendered
|
|
const [isPositioned, setIsPositioned] = useState(false)
|
|
const [node, setNode] = useState<HTMLDivElement | null>(null)
|
|
|
|
// Use callback ref to detect when element is mounted
|
|
const callbackRef = useCallback((element: HTMLDivElement | null) => {
|
|
setNode(element)
|
|
// Forward ref
|
|
if (typeof ref === 'function') {
|
|
ref(element)
|
|
} else if (ref) {
|
|
ref.current = element
|
|
}
|
|
}, [ref])
|
|
|
|
useLayoutEffect(() => {
|
|
if (!node) {
|
|
setIsPositioned(false)
|
|
return
|
|
}
|
|
// Element just mounted, wait for next frame to ensure position is calculated
|
|
setIsPositioned(false)
|
|
requestAnimationFrame(() => {
|
|
requestAnimationFrame(() => {
|
|
setIsPositioned(true)
|
|
})
|
|
})
|
|
}, [node])
|
|
|
|
return (
|
|
<PopoverPrimitive.Portal container={portalContainer ?? undefined}>
|
|
<PopoverPrimitive.Content
|
|
ref={callbackRef}
|
|
align={align}
|
|
sideOffset={sideOffset}
|
|
// Force position recalculation on every animation frame
|
|
updatePositionStrategy="always"
|
|
avoidCollisions={true}
|
|
collisionPadding={8}
|
|
style={{
|
|
visibility: isPositioned ? 'visible' : 'hidden',
|
|
}}
|
|
className={cn(
|
|
"z-[999999] rounded-md border border-border/60 bg-popover p-4 text-popover-foreground shadow-md outline-none pointer-events-auto",
|
|
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95",
|
|
className
|
|
)}
|
|
{...props}
|
|
/>
|
|
</PopoverPrimitive.Portal>
|
|
)
|
|
})
|
|
PopoverContent.displayName = PopoverPrimitive.Content.displayName
|
|
|
|
export { Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverTrigger }
|