I noticed new feature portals
do the same thing but better? I dont know much about portals but it seems to be the new way to manage nested component updates?
I knew Reacts Context API was experimental, and noticed componentDidUpdate
no longer receives prevContext
and they dropped contextTypes
.
I also noticed they are introducing React 16's Portal API and not sure if this is intended to replace the Context API.
So again, as mentioned above, is React 16's Portal API meant to replace the Context API?
EDIT: To piggyback on this topic, is conext the best way to manage i18n localization in react?
TL;DR =>
Portals
andContext
solve different purposes, one is to inject DOM at any level and other is to inject props at any level.Context
can mimicPortals
butPortals
AS OF NOW cannot mimicContext
not at least without introducing code smell.NOTE: Below is based on my understanding of the two concepts, if anyone has further thoughts or corrections on this please feel free to edit the answer.
From what I was able to understand
Portals
are, as the name suggests, a door way for you to render components that need not be in the component tree hierarchy. This works like perfectly forModals
,Popovers
or any component which needs to be stitched at a particular location in the tree.Context
is to communicate with various sibling and child components without having to pass props all the way down from parent to the intended component. Of course, this is an important feature to have but it remained in the experimental phase probably due to the fact that this can be achieved byevent-emitters
andRedux
,MobX
for a centralized state management.I am assuming that your use case for
i18n
would require a lot of communication across components for which you might want to look at this great articleCOMPONENT COMMUNICATION
Portals and Context help achieving this kind of communication but there is a difference. Portals can render or inject DOM at any level and Context can inject props at any level in the subcomponent tree.
You can always achieve what
Portals
are able to do usingContext
but I don't thinkPortals
can mimicContext
functionality.EG: Something like this can be done to mimic what
Portals
do usingContext
. Where as inPortals
AFAIK you can only send DOM NodesReactDOM.createPortal(child, container)
. May be there is a way to achieve the functionality but that would surely lead to code smell.In my case, I feared from using
Context
despite it's flexibility due to the fact thatReact
docs always mentioned that it's an experimental feature and warned repeatedly from using this feature full-blown. My guess is that React is looking at stabilising this feature or completely scrape it off the React codebase which is a risk that could go both ways.CONCLUSION: IMO,
Portals
in it's current state and the problem it is trying to resolve is entirely different from whatContext
is built for and it is better to useevent-emitters
with the only reason thatContext
might possibly be deprecated.