Perf fixes
Summary: This diff fixes some more perf bottlenecks in the layout inspector (see the diffs earlier in the stack for the total picture). Mostly: 1. Pass down stable refs from the root for callbacks and configuration 2. Remove the deep-equality check in the sidebar section rendering, which has a pretty significant constant overhead, especially if the selection didn't change 3. If the selection changes, the correct semantics is to reset the sidebar rather than trying to reconcile the elements. (A consequence of this is that Panel collapse state isn't preserved atm after changing selection, will address that in a later diff) This reduces average render time for sidebar from ~20 to ~2 ms. Reviewed By: priteshrnandgaonkar Differential Revision: D27677353 fbshipit-source-id: ba183b7e3d778c0b3c8e7ca0d51535ce99a097ca
This commit is contained in:
committed by
Facebook GitHub Bot
parent
4f75247213
commit
5db2ef1275
@@ -521,6 +521,7 @@ export default class LayoutPlugin extends FlipperPlugin<
|
||||
|
||||
<DetailSidebar>
|
||||
<InspectorSidebar
|
||||
key={element?.id ?? 'no_selection'}
|
||||
client={this.getClient()}
|
||||
realClient={this.realClient}
|
||||
element={element}
|
||||
|
||||
Reference in New Issue
Block a user