React PortalsThe React 16.0 version introduced React portals in September 2017. A React portal provides a way to render an element outside of its component hierarchy, i.e., in a separate component. Before React 16.0 version, it is very tricky to render the child component outside of its parent component hierarchy. If we do this, it breaks the convention where a component needs to render as a new element and follow a parent-child hierarchy. In React, the parent component always wants to go where its child component goes. That's why React portal concept comes in. SyntaxHere, the first argument (child) is the component, which can be an element, string, or fragment, and the second argument (container) is a DOM element. Example before React v16Generally, when you want to return an element from a component's render method, it is mounted as a new div into the DOM and render the children of the closest parent component. Example using portalBut, sometimes we want to insert a child component into a different location in the DOM. It means React does not want to create a new div. We can do this by creating React portal. Features
When to use?The common use-cases of React portal include:
InstallationWe can install React portal using the following command. Explanation of React PortalCreate a new React project using the following command. Open the App.js file and insert the following code snippet. App.js The next step is to create a portal component and import it in the App.js file. PortalDemo.js Now, open the Index.html file and add a <div id="portal-root"></div> element to access the child component outside the root node. Index.html Output: When we execute the React app, we will get the following screen. Now, open the Inspect (ctrl + shift + I). In this window, select the Elements section and then click on the <div id="portal-root"></div> component. Here, we can see that each tag is under the "portal-root" DOM node, not the "root" DOM node. Hence, we can see that how React Portal provides the ability to break out of root DOM tree.
Next TopicReact Error Boundaries
|