-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Hi!
Currently, all components have ComponentContext, which has ComponentId with integer value - and this is generated during runtime.
This doesn't allow us to create overrides for components where we want to have specific handling for only some of the specific components, because we cannot identify them in the component code, compared to the JSON.
In the Web SDK, it is possible to use pConn to get the state properties, and also figure out the human-readable id for each component.
this.pConn$.getStateProps().value;
and
this.pConn$.getFullReference()
Would it be possible to expose pConn to the mobile SDK as well, or perhaps even add the human-readable id to ComponentContext?
Note that if you can provide the human-readable id, then it should also reference/reflect the parents, so we could do a lookup.
BR,
Kaido