/** * 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, {useState} from 'react'; import {plugin} from '../index'; import { DataInspector, DetailSidebar, Layout, usePlugin, useValue, } from 'flipper-plugin'; import {Typography} from 'antd'; import {useHotkeys} from 'react-hotkeys-hook'; import {Id, UINode} from '../types'; import {PerfStats} from './PerfStats'; import {Tree} from './Tree'; import {Visualization2D} from './Visualization2D'; export function Component() { const instance = usePlugin(plugin); const rootId = useValue(instance.rootId); const nodes: Map = useValue(instance.nodes); const [showPerfStats, setShowPerfStats] = useState(false); const [selectedNode, setSelectedNode] = useState(undefined); useHotkeys('ctrl+i', () => setShowPerfStats((show) => !show)); function renderAttributesInspector(node: UINode | undefined) { if (!node) { return; } return ( <> Attributes Inspector ); } if (showPerfStats) return ; if (rootId) { return ( <> {selectedNode && renderAttributesInspector(nodes.get(selectedNode))} ); } return
Nothing yet
; }