Skip to content

Commit

Permalink
feat[ReactFabricPrivateInterface]: add getInternalInstanceHandleFromP…
Browse files Browse the repository at this point in the history
…ublicInstance (#41786)

Summary:
Pull Request resolved: #41786

Changelog: [Internal]

This is the preprequisite for facebook/react#27783

Reviewed By: rubennorte

Differential Revision: D51808831

fbshipit-source-id: c8ddf67d7ad35a670fa462c246dcb7230ba47716
  • Loading branch information
hoxyq authored and pull[bot] committed Dec 12, 2023
1 parent acf827e commit 60e4a76
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
* @flow strict-local
*/

/**
* This module is meant to be used by the React renderers to create public
* instances and get some data from them (like their instance handle / fiber).
*/

import type ReactNativeElement from '../../DOM/Nodes/ReactNativeElement';
import type ReadOnlyText from '../../DOM/Nodes/ReadOnlyText';
import typeof ReactFabricType from '../../Renderer/shims/ReactFabric';
Expand Down Expand Up @@ -79,3 +84,9 @@ export function getNodeFromPublicInstance(
publicInstance.__internalInstanceHandle,
);
}

export function getInternalInstanceHandleFromPublicInstance(
publicInstance: ReactFabricHostComponent | ReactNativeElement,
): InternalInstanceHandle {
return publicInstance.__internalInstanceHandle;
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import typeof CustomEvent from '../Events/CustomEvent';
import typeof {
createPublicInstance,
createPublicTextInstance,
getInternalInstanceHandleFromPublicInstance,
getNativeTagFromPublicInstance,
getNodeFromPublicInstance,
} from '../ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance';
Expand Down Expand Up @@ -108,4 +109,8 @@ module.exports = {
return require('../ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance')
.getNodeFromPublicInstance;
},
get getInternalInstanceHandleFromPublicInstance(): getInternalInstanceHandleFromPublicInstance {
return require('../ReactNative/ReactFabricPublicInstance/ReactFabricPublicInstance')
.getInternalInstanceHandleFromPublicInstance;
},
};

0 comments on commit 60e4a76

Please sign in to comment.