Summary: As events get bigger, this change includes the following: - Dedicated event inspector - Stacktrace viewer for events with stacktrace attribution - Stacktrace viewer is displayed within a new BottomPanel. BottomPanel can display any React component and can be reused in the future in different use cases. Reviewed By: LukeDefeo Differential Revision: D44628768 fbshipit-source-id: 71a9ef87e71c9a17f58c2544a1aa356eed14ed27
116 lines
3.4 KiB
TypeScript
116 lines
3.4 KiB
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import React, {ReactNode} from 'react';
|
|
// eslint-disable-next-line rulesdir/no-restricted-imports-clone
|
|
import {Glyph} from 'flipper';
|
|
import {Layout, Tab, Tabs, theme, usePlugin, useValue} from 'flipper-plugin';
|
|
import {Id, Metadata, MetadataId, UINode} from '../../types';
|
|
import {IdentityInspector} from './inspector/IdentityInspector';
|
|
import {AttributesInspector} from './inspector/AttributesInspector';
|
|
import {Tooltip} from 'antd';
|
|
import {NoData} from './inspector/NoData';
|
|
import {plugin} from '../../index';
|
|
import {FrameworkEventsInspector} from './inspector/FrameworkEventsInspector';
|
|
|
|
type Props = {
|
|
nodes: Map<Id, UINode>;
|
|
metadata: Map<MetadataId, Metadata>;
|
|
showExtra: (element: ReactNode) => void;
|
|
};
|
|
|
|
export const Inspector: React.FC<Props> = ({nodes, metadata, showExtra}) => {
|
|
const instance = usePlugin(plugin);
|
|
const selectedNodeId = useValue(instance.uiState.selectedNode);
|
|
const frameworkEvents = useValue(instance.frameworkEvents);
|
|
|
|
const selectedNode = selectedNodeId ? nodes.get(selectedNodeId) : undefined;
|
|
if (!selectedNode) {
|
|
return <NoData message="Please select a node to view its details" />;
|
|
}
|
|
|
|
const selectedFrameworkEvents = selectedNodeId
|
|
? frameworkEvents?.get(selectedNodeId)
|
|
: undefined;
|
|
|
|
return (
|
|
<Layout.Container gap pad>
|
|
<Tabs grow centered key={selectedNodeId}>
|
|
<Tab
|
|
key={'identity'}
|
|
tab={
|
|
<Tooltip title="Identity">
|
|
<Layout.Horizontal center>
|
|
<Glyph name="badge" size={16} color={theme.primaryColor} />
|
|
</Layout.Horizontal>
|
|
</Tooltip>
|
|
}>
|
|
<IdentityInspector node={selectedNode} />
|
|
</Tab>
|
|
|
|
<Tab
|
|
key={'attributes'}
|
|
tab={
|
|
<Tooltip title="Attributes">
|
|
<Layout.Horizontal center>
|
|
<Glyph name="data-table" size={16} color={theme.primaryColor} />
|
|
</Layout.Horizontal>
|
|
</Tooltip>
|
|
}>
|
|
<AttributesInspector
|
|
mode="attribute"
|
|
node={selectedNode}
|
|
metadata={metadata}
|
|
/>
|
|
</Tab>
|
|
<Tab
|
|
key={'layout'}
|
|
tab={
|
|
<Tooltip title="Layout">
|
|
<Layout.Horizontal center>
|
|
<Glyph
|
|
name="square-ruler"
|
|
size={16}
|
|
color={theme.primaryColor}
|
|
/>
|
|
</Layout.Horizontal>
|
|
</Tooltip>
|
|
}>
|
|
<AttributesInspector
|
|
mode="layout"
|
|
node={selectedNode}
|
|
metadata={metadata}
|
|
/>
|
|
</Tab>
|
|
{selectedFrameworkEvents && (
|
|
<Tab
|
|
key={'events'}
|
|
tab={
|
|
<Tooltip title="Events">
|
|
<Layout.Horizontal center>
|
|
<Glyph
|
|
name="weather-thunder"
|
|
size={16}
|
|
color={theme.primaryColor}
|
|
/>
|
|
</Layout.Horizontal>
|
|
</Tooltip>
|
|
}>
|
|
<FrameworkEventsInspector
|
|
node={selectedNode}
|
|
events={selectedFrameworkEvents}
|
|
showExtra={showExtra}
|
|
/>
|
|
</Tab>
|
|
)}
|
|
</Tabs>
|
|
</Layout.Container>
|
|
);
|
|
};
|