forked from enszrlu/NextStep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
46 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { useEffect, useState } from 'react'; | ||
import type { ReactNode } from 'react'; | ||
import { createPortal } from 'react-dom'; | ||
|
||
interface DynamicPortalProps { | ||
wrapperID?: string; | ||
children: ReactNode; | ||
} | ||
|
||
const DynamicPortal: React.FC<DynamicPortalProps> = ({ wrapperID, children }) => { | ||
const [wrapperElement, setWrapperElement] = useState<HTMLElement | null>(null); | ||
|
||
useEffect(() => { | ||
// If wrapperID is provided, attempt to find the corresponding element | ||
if (wrapperID) { | ||
const targetElement = document.getElementById(wrapperID); | ||
if (targetElement) { | ||
setWrapperElement(targetElement); | ||
} else { | ||
console.warn( | ||
`Element with ID "${wrapperID}" not found. Rendering into document body.`, | ||
); | ||
setWrapperElement(document.body); // Default to body if element is not found | ||
} | ||
} else { | ||
// If no wrapperID is provided, default to rendering in the body | ||
setWrapperElement(document.body); | ||
} | ||
}, [wrapperID]); | ||
|
||
if (!wrapperElement) { | ||
return null; // Return null while wrapperElement is being determined | ||
} | ||
|
||
return createPortal(children, wrapperElement); | ||
}; | ||
|
||
export default DynamicPortal; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters