Files
flipper/desktop/plugins/public/ui-debugger/components/sidebar/Inspector.tsx
Lorenzo Blasa bb3b1cecef Simple antd types for each inspectable type
Summary:
Replace draft inspectors with read-only components.

This is a first step into having a richer UI. At the moment, these are read-only components but will likely be extended in the future as to allow editing of values.

Reviewed By: LukeDefeo

Differential Revision: D40345016

fbshipit-source-id: a6aef5861474b4aa8353c00ef257ab17b4cff00e
2022-10-25 03:09:00 -07:00

63 lines
1.7 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 from 'react';
// eslint-disable-next-line rulesdir/no-restricted-imports-clone
import {Glyph} from 'flipper';
import {Layout, Tab, Tabs} from 'flipper-plugin';
import {UINode} from '../../types';
import {IdentityInspector} from './inspector/IdentityInspector';
import {AttributesInspector} from './inspector/AttributesInspector';
import {DocumentationInspector} from './inspector/DocumentationInspector';
type Props = {
node: UINode;
};
export const Inspector: React.FC<Props> = ({node}) => {
return (
<Layout.Container gap pad>
<Tabs grow centered>
<Tab
tab={
<Layout.Horizontal center>
<Glyph name="badge" size={16} />
</Layout.Horizontal>
}>
<IdentityInspector node={node} />
</Tab>
<Tab
tab={
<Layout.Horizontal center>
<Glyph name="data-table" size={16} />
</Layout.Horizontal>
}>
<AttributesInspector mode="attributes" node={node} />
</Tab>
<Tab
tab={
<Layout.Horizontal center>
<Glyph name="square-ruler" size={16} />
</Layout.Horizontal>
}>
<AttributesInspector mode="layout" node={node} />
</Tab>
<Tab
tab={
<Layout.Horizontal center>
<Glyph name="info-circle" size={16} />
</Layout.Horizontal>
}>
<DocumentationInspector node={node} />
</Tab>
</Tabs>
</Layout.Container>
);
};