You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+13-10
Original file line number
Diff line number
Diff line change
@@ -111,13 +111,23 @@ Normally in `ComponentA`/`ComponentB` examples like the above, switching from `C
111
111
112
112
How does it work under the hood?
113
113
114
-
### `portals.createHtmlPortalNode`
114
+
### `portals.createHtmlPortalNode([options])`
115
115
116
116
This creates a detached DOM node, with a little extra functionality attached to allow transmitting props later on.
117
117
118
-
This node will contain your portal contents later, within a `<div>`, and will eventually be attached in the target location. Its plain DOM node is available at `.element`, so you can mutate that to set any required props (e.g. `className`) with the standard DOM APIs.
118
+
This node will contain your portal contents later, within a `<div>`, and will eventually be attached in the target location.
119
119
120
-
### `portals.createSvgPortalNode`
120
+
An optional options object parameter can be passed to configure the node. The only supported option is `attributes`: this can be used to set the HTML attributes (style, class, etc.) of the intermediary, like so:
The div's DOM node is also available at `.element`, so you can mutate that directly with the standard DOM APIs if preferred.
129
+
130
+
### `portals.createSvgPortalNode([options])`
121
131
122
132
This creates a detached SVG DOM node. It works identically to the node from `createHtmlPortalNode`, except it will work with SVG elements. Content is placed within a `<g>` instead of a `<div>`.
123
133
@@ -144,13 +154,6 @@ It extra props to the InPortal (using the extra functionality we've attached to
144
154
* Reverse portals tie rebuilding of the contents of the portal to InPortal (where it's defined), rather than the parent of the OutPortal (where it appears in the tree). That's great (that's the whole point really), but the contents of the InPortal will still be rebuilt anytime the InPortal itself is, e.g. if the InPortal's parent is rebuilt.
145
155
* Be aware that if you call `create*PortalNode` in the render method of the parent of an InPortal, you'll get a different node to render into each time, and this will cause unnecessary rerenders, one every time the parent updates. It's generally better to create the node once and persist it, either using the useMemo hook, or in the initial construction of your class component.
146
156
* By default, the types for nodes, InPortals and OutPortals allow any props and any components. Pass a component type to them to be more explicit and enforce prop types, e.g. `createHtmlPortalNode<MyComponent>`, `<portals.InPortal<MyComponent>>`, `<portals.OutPortal<MyComponent>>`.
147
-
* You can pass `attributes` option to the `create*PortalNode` methods that would allow you to configure any attributes (style, class, etc.) to the intermediary div (or svg):
0 commit comments