Change ElementID to Element for Sidebar Extension

Summary: Element also contains `id`, which is equivalent to ElementID used in the existing extension. This change will help the implementation of layout intern search easier.

Reviewed By: mweststrate

Differential Revision: D21385001

fbshipit-source-id: b8c6e6f052af8cfa54bf3a132571e40567cdee4b
This commit is contained in:
Chaiwat Ekkaewnumchai
2020-05-05 06:40:46 -07:00
committed by Facebook GitHub Bot
parent 655d856d1c
commit 475a425a20
2 changed files with 3 additions and 3 deletions

View File

@@ -7,14 +7,14 @@
* @format
*/
import {PluginClient, Client, ElementID} from 'flipper';
import {PluginClient, Client, Element} from 'flipper';
import {Logger} from 'app/src/fb-interfaces/Logger';
export default [] as Array<
(
client: PluginClient,
realClient: Client,
selectedNode: ElementID,
selectedNode: Element,
logger: Logger,
) => React.ReactNode
>;

View File

@@ -149,7 +149,7 @@ const Sidebar: React.FC<Props> = (props: Props) => {
const sections: Array<React.ReactNode> = (
(SidebarExtensions &&
SidebarExtensions.map((ext) =>
ext(props.client, props.realClient, element.id, props.logger),
ext(props.client, props.realClient, element, props.logger),
)) ||
[]
).concat(