Files
flipper/desktop/plugins/public/ui-debugger/components/Tree2.tsx
Luke De Feo 2bdb068531 Added chevon icon when expanding / collapsing
Reviewed By: lblasa

Differential Revision: D41838170

fbshipit-source-id: f04438d77445736e45e29e2c46e9e8f8dd0906a8
2022-12-12 07:28:37 -08:00

192 lines
4.2 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 {Id, UINode} from '../types';
import React from 'react';
import {
HighlightManager,
HighlightProvider,
styled,
theme,
useHighlighter,
usePlugin,
useValue,
} from 'flipper-plugin';
import {plugin} from '../index';
import {Glyph} from 'flipper';
export function Tree2({
nodes,
rootId,
selectedNode,
onSelectNode,
}: {
nodes: Map<Id, UINode>;
rootId: Id;
selectedNode?: Id;
onSelectNode: (node?: Id) => void;
}) {
const instance = usePlugin(plugin);
const expandedNodes = useValue(instance.uiState.expandedNodes);
const searchTerm = useValue(instance.uiState.searchTerm);
const items = toTreeList(nodes, rootId, expandedNodes);
return (
<HighlightProvider
text={searchTerm}
highlightColor={theme.searchHighlightBackground.yellow}>
<div>
{items.map((treeNode) => (
<TreeItemContainer
key={treeNode.id}
treeNode={treeNode}
selectedNode={selectedNode}
onSelectNode={onSelectNode}
/>
))}
</div>
</HighlightProvider>
);
}
export type TreeNode = UINode & {
depth: number;
isExpanded: boolean;
};
function TreeItemContainer({
treeNode,
selectedNode,
hoveredNode,
onSelectNode,
}: {
treeNode: TreeNode;
selectedNode?: Id;
hoveredNode?: Id;
onSelectNode: (node?: Id) => void;
}) {
const instance = usePlugin(plugin);
return (
<TreeItem
isSelected={treeNode.id === selectedNode}
isHovered={treeNode.id === hoveredNode}
onClick={() => {
onSelectNode(treeNode.id);
}}
item={treeNode}>
<Arrow
expanded={treeNode.isExpanded}
onClick={() => {
instance.uiState.expandedNodes.update((draft) => {
if (draft.has(treeNode.id)) {
draft.delete(treeNode.id);
} else {
draft.add(treeNode.id);
}
});
}}
/>
{nodeIcon(treeNode)}
<HighlightedText text={treeNode.name} />
</TreeItem>
);
}
const TreeItem = styled.li<{
item: TreeNode;
isHovered: boolean;
isSelected: boolean;
}>(({item, isHovered, isSelected}) => ({
display: 'flex',
alignItems: 'center',
height: '26px',
paddingLeft: `${(item.depth + 1) * renderDepthOffset}px`,
borderWidth: '1px',
borderRadius: '3px',
borderColor: isHovered ? theme.selectionBackgroundColor : 'transparent',
borderStyle: 'solid',
backgroundColor: isSelected ? theme.selectionBackgroundColor : theme.white,
}));
function Arrow(props: {onClick: () => void; expanded: boolean}) {
return (
<div style={{display: 'flex'}} onClick={props.onClick}>
<Glyph
style={{
transform: props.expanded ? 'rotate(90deg)' : '',
marginRight: '4px',
marginBottom: props.expanded ? '2px' : '',
}}
name="chevron-right"
size={12}
color="grey"
/>
</div>
);
}
function HighlightedText(props: {text: string}) {
const highlightManager: HighlightManager = useHighlighter();
return <span>{highlightManager.render(props.text)}</span>;
}
function nodeIcon(node: UINode) {
if (node.tags.includes('Litho')) {
return <DecorationImage src="icons/litho-logo.png" />;
}
}
const DecorationImage = styled.img({
height: 12,
marginRight: 5,
width: 12,
});
const renderDepthOffset = 4;
function toTreeList(
nodes: Map<Id, UINode>,
rootId: Id,
expandedNodes: Set<Id>,
): TreeNode[] {
const root = nodes.get(rootId);
if (root == null) {
return [];
}
const stack = [[root, 0]] as [UINode, number][];
const res = [] as TreeNode[];
while (stack.length > 0) {
const [cur, depth] = stack.pop()!!;
const isExpanded = expandedNodes.has(cur.id);
res.push({
...cur,
depth,
isExpanded,
});
if (isExpanded) {
for (const childId of cur.children) {
const child = nodes.get(childId);
if (child != null) {
stack.push([child, depth + 1]);
} else {
console.log('null', childId);
}
}
}
}
return res;
}