Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tooltip, PreviewCard] Use FloatingPortalLite #1278

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions packages/react/src/utils/FloatingPortalLite.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
'use client';
import { useFloatingPortalNode } from '@floating-ui/react';
import * as ReactDOM from 'react-dom';

/**
* `FloatingPortal` includes tabbable logic handling for focus management.
* For components that don't need tabbable logic, use `FloatingPortalLite`.
* @ignore - internal component.
*/
export function FloatingPortalLite(props: FloatingPortalLite.Props) {
const node = useFloatingPortalNode({ root: props.root });
return node && ReactDOM.createPortal(props.children, node);
}

namespace FloatingPortalLite {
export interface Props {
children?: React.ReactNode;
root?: HTMLElement | null | React.RefObject<HTMLElement | null>;
}
}
Loading