Add button to navigate to Yoga Performance Plugin from Layout Inspector

Summary:
Add button in layout inspector to navigate to yoga performance plugin for analyzing a particular component.
We send component id in payload to yoga plugin which then uses to highlight the corresponding component in yoga plugin

Reviewed By: davidaurelio

Differential Revision: D16561301

fbshipit-source-id: 950fb3ea501283fec0a3036fb2796c178014f1f5
This commit is contained in:
Sidharth Guglani
2019-08-07 06:13:36 -07:00
committed by Facebook Github Bot
parent 40a76d5c00
commit d0a3cb5f74

View File

@@ -21,6 +21,8 @@ import {
Sidebar,
DetailSidebar,
VerticalRule,
Button,
GK,
} from 'flipper';
import Inspector from './Inspector';
import ToolbarIcon from './ToolbarIcon';
@@ -180,6 +182,8 @@ export default class Layout extends FlipperPlugin<State, void, PersistedState> {
const divider = this.state.inAXMode && <VerticalRule />;
const showAnalyzeYogaPerformanceButton = GK.get('flipper_yogaperformance');
return (
<FlexColumn grow={true}>
{this.state.init && (
@@ -235,6 +239,19 @@ export default class Layout extends FlipperPlugin<State, void, PersistedState> {
onValueChanged={this.onDataValueChanged}
logger={this.props.logger}
/>
{showAnalyzeYogaPerformanceButton &&
element &&
element.decoration === 'litho' ? (
<Button
icon={'share-external'}
compact={true}
style={{marginTop: 8, marginRight: 12}}
onClick={() => {
this.props.selectPlugin('YogaPerformance', element.id);
}}>
Analyze Yoga Performance
</Button>
) : null}
</DetailSidebar>
</>
)}