Files
flipper/desktop/plugins/public/ui-debugger/components/tree/Tree.tsx
Luke De Feo ce1fdfdf19 Added context menu items for collapsing and expanding nodes
Summary:
Added 3 context menu items:
- expand recursive
- collapse recursive

These are self explanatory.

I also collapse non ancestors. This collapses everything except your direct ancestor path to the root. Quite useful to refocus the tree on a node

Changelog: UIDebugger - added  context menu items for exanding and collapsing the tree.

Reviewed By: aigoncharov

Differential Revision: D47949840

fbshipit-source-id: 6eebba182fe2092fbf5f0db0ec5ff728c3900424
2023-08-01 10:32:29 -07:00

611 lines
18 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, ClientNode} from '../../ClientTypes';
import {OnSelectNode} from '../../DesktopTypes';
import React, {
Ref,
RefObject,
useEffect,
useLayoutEffect,
useMemo,
useRef,
} from 'react';
import {
HighlightManager,
HighlightProvider,
Layout,
styled,
theme,
useHighlighter,
usePlugin,
useValue,
} from 'flipper-plugin';
import {plugin} from '../../index';
import {head, last} from 'lodash';
import {Badge, Typography} from 'antd';
import {useVirtualizer} from '@tanstack/react-virtual';
import {ContextMenu} from './ContextMenu';
import {MillisSinceEpoch, useKeyboardControls} from './useKeyboardControls';
import {toTreeList} from './toTreeList';
import {CaretDownOutlined} from '@ant-design/icons';
const {Text} = Typography;
type NodeIndentGuide = {
depth: number;
addHorizontalMarker: boolean;
trimBottom: boolean;
color: 'primary' | 'secondary';
};
export type TreeNode = ClientNode & {
depth: number;
idx: number;
isExpanded: boolean;
indentGuides: NodeIndentGuide[];
frameworkEvents: number | null;
};
export function Tree2({
nodes,
rootId,
}: {
nodes: Map<Id, ClientNode>;
rootId: Id;
}) {
const instance = usePlugin(plugin);
const focusedNode = useValue(instance.uiState.focusedNode);
const expandedNodes = useValue(instance.uiState.expandedNodes);
const searchTerm = useValue(instance.uiState.searchTerm);
const selectedNode = useValue(instance.uiState.selectedNode);
const isContextMenuOpen = useValue(instance.uiState.isContextMenuOpen);
const hoveredNode = head(useValue(instance.uiState.hoveredNodes));
const filterMainThreadMonitoring = useValue(
instance.uiState.filterMainThreadMonitoring,
);
const frameworkEventsMonitoring = useValue(
instance.uiState.frameworkEventMonitoring,
);
const highlightedNodes = useValue(instance.uiState.highlightedNodes);
const {treeNodes, refs} = useMemo(() => {
const treeNodes = toTreeList(
nodes,
focusedNode || rootId,
expandedNodes,
selectedNode?.id,
instance.frameworkEvents,
frameworkEventsMonitoring,
filterMainThreadMonitoring,
);
const refs: React.RefObject<HTMLLIElement>[] = treeNodes.map(() =>
React.createRef<HTMLLIElement>(),
);
return {treeNodes, refs};
}, [
expandedNodes,
filterMainThreadMonitoring,
focusedNode,
frameworkEventsMonitoring,
instance.frameworkEvents,
nodes,
rootId,
selectedNode?.id,
]);
const isUsingKBToScrollUtill = useRef<MillisSinceEpoch>(0);
const grandParentRef = useRef<HTMLDivElement>(null);
const parentRef = React.useRef<HTMLDivElement>(null);
const rowVirtualizer = useVirtualizer({
count: treeNodes.length,
getScrollElement: () => parentRef.current,
estimateSize: () => TreeItemHeightNumber,
overscan: 20,
});
const prevSearchTerm = useRef<string | null>(null);
useEffect(() => {
if (prevSearchTerm.current === searchTerm) {
return;
}
prevSearchTerm.current = searchTerm;
const matchingIndexes = findSearchMatchingIndexes(treeNodes, searchTerm);
if (matchingIndexes.length > 0) {
rowVirtualizer.scrollToIndex(matchingIndexes[0], {align: 'start'});
}
}, [rowVirtualizer, searchTerm, treeNodes]);
useKeyboardControls(
treeNodes,
rowVirtualizer,
selectedNode?.id,
hoveredNode,
instance.uiActions.onSelectNode,
instance.uiActions.onHoverNode,
instance.uiActions.onExpandNode,
instance.uiActions.onCollapseNode,
isUsingKBToScrollUtill,
);
useLayoutEffect(() => {
//the grand parent gets its size correclty via flex box, we use its initial
//position to size the scroll parent ref for react virtual, It uses vh which accounts for window size changes
//However if we dynamically add content above or below we may need to revisit this approach
const boundingClientRect = grandParentRef?.current?.getBoundingClientRect();
parentRef.current!!.style.height = `calc(100vh - ${
boundingClientRect!!.top
}px - ${window.innerHeight - boundingClientRect!!.bottom}px )`;
}, []);
useLayoutEffect(() => {
//scroll width is the width of the element including overflow, we grab the scroll width
//of the parent scroll container and set each divs actual width to this to make sure the
//size is correct for the selection and hover states
const range = rowVirtualizer.range;
const end = Math.min(
refs.length,
range.endIndex + 1, //need to add 1 extra otherwise last one doesnt get the treatment
);
const width = parentRef.current?.scrollWidth ?? 0;
for (let i = range.startIndex; i < end; i++) {
//set the width explicitly of all tree items to parent scroll width
const ref = refs[i];
if (ref.current) {
ref.current.style.width = `${width}px`;
}
}
});
useLayoutEffect(() => {
if (selectedNode != null) {
const selectedTreeNode = treeNodes.find(
(node) => node.id === selectedNode?.id,
);
const ref = parentRef.current;
if (
ref != null &&
selectedTreeNode != null &&
selectedNode?.source === 'visualiser'
) {
ref.scrollLeft =
Math.max(0, selectedTreeNode.depth - 10) * renderDepthOffset;
let scrollToIndex = selectedTreeNode.idx;
if (selectedTreeNode.idx > rowVirtualizer.range.endIndex) {
//when scrolling down the scrollbar gets in the way if you scroll to the precise node
scrollToIndex = Math.min(scrollToIndex + 1, treeNodes.length);
}
rowVirtualizer.scrollToIndex(scrollToIndex, {align: 'auto'});
}
}
// NOTE: We don't want to add refs or tree nodes to the dependency list since when new data comes in over the wire
// otherwise we will keep scrolling back to the selected node overriding the users manual scroll offset.
// We only should scroll when selection changes
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [selectedNode, focusedNode]);
return (
<HighlightProvider
text={searchTerm}
highlightColor={theme.searchHighlightBackground.yellow}>
<ContextMenu
frameworkEvents={instance.frameworkEvents}
focusedNodeId={focusedNode}
hoveredNodeId={hoveredNode}
nodes={nodes}
onSelectNode={instance.uiActions.onSelectNode}
onSetViewMode={instance.uiActions.onSetViewMode}
onContextMenuOpen={instance.uiActions.onContextMenuOpen}
onFocusNode={instance.uiActions.onFocusNode}
onCollapseNonAncestors={instance.uiActions.onCollapseAllNonAncestors}
onCollapseRecursively={instance.uiActions.onCollapseAllRecursively}
onExpandRecursively={instance.uiActions.onExpandAllRecursively}>
<div
//We use this normal divs flexbox sizing to measure how much vertical space we need for the child div
ref={grandParentRef}
style={{
paddingLeft: theme.space.medium,
height: '100%',
width: '100%',
}}>
<div
//this is scrollable div is expected by react virtual, see their docs
ref={parentRef}
style={{
height: 0, //this get replaced by an effect
overflow: 'auto',
}}>
<div
//this is is the actual scrollable content, its height is faked by react virtual
style={{
height: `${rowVirtualizer.getTotalSize()}px`,
width: '100%',
position: 'relative',
}}
onMouseLeave={() => {
if (isContextMenuOpen === false) {
instance.uiActions.onHoverNode();
}
}}>
{rowVirtualizer.getVirtualItems().map((virtualRow) => (
<TreeNodeRow
transform={`translateY(${virtualRow.start}px)`}
innerRef={refs[virtualRow.index]}
key={virtualRow.index}
treeNode={treeNodes[virtualRow.index]}
highlightedNodes={highlightedNodes}
selectedNode={selectedNode?.id}
hoveredNode={hoveredNode}
isUsingKBToScroll={isUsingKBToScrollUtill}
isContextMenuOpen={isContextMenuOpen}
onSelectNode={instance.uiActions.onSelectNode}
onExpandNode={instance.uiActions.onExpandNode}
onCollapseNode={instance.uiActions.onCollapseNode}
onHoverNode={instance.uiActions.onHoverNode}
/>
))}
</div>
</div>
</div>
</ContextMenu>
</HighlightProvider>
);
}
const secondaryColor = theme.buttonDefaultBackground;
const GuideOffset = 11;
const IndentGuides = React.memo(
({
isSelected,
indentGuides,
hasExpandChildrenIcon,
}: {
isSelected: boolean;
hasExpandChildrenIcon: boolean;
indentGuides: NodeIndentGuide[];
}) => {
const lastGuide = last(indentGuides);
const lastGuidePadding = `${
renderDepthOffset * (lastGuide?.depth ?? 0) + GuideOffset
}px`;
return (
<div style={{pointerEvents: 'none'}}>
{indentGuides.map((guide, idx) => {
const indentGuideLinePadding = `${
renderDepthOffset * guide.depth + GuideOffset
}px`;
const isLastGuide = idx === indentGuides.length - 1;
const drawHalfprimary = isSelected && isLastGuide;
const firstHalf =
guide.color === 'primary' ? theme.primaryColor : secondaryColor;
const secondHalf = guide.trimBottom
? 'transparent'
: guide.color === 'primary' && !drawHalfprimary
? theme.primaryColor
: secondaryColor;
return (
<div
key={guide.depth}
style={{
position: 'absolute',
width: indentGuideLinePadding,
height: TreeItemHeight,
borderRight: `1px solid`,
borderImage: `linear-gradient(to bottom, ${firstHalf} 50%, ${secondHalf} 50%) 1`,
borderImageSlice: 1,
}}
/>
);
})}
{lastGuide?.addHorizontalMarker && (
<div
style={{
position: 'absolute',
width: hasExpandChildrenIcon
? renderDepthOffset / 2
: renderDepthOffset,
height: HalfTreeItemHeight,
borderBottom: `1px solid ${
lastGuide.color === 'primary'
? theme.primaryColor
: secondaryColor
}`,
marginLeft: lastGuidePadding,
}}></div>
)}
</div>
);
},
(props, nextProps) =>
props.hasExpandChildrenIcon === nextProps.hasExpandChildrenIcon &&
props.indentGuides === nextProps.indentGuides &&
props.isSelected === nextProps.isSelected,
);
function TreeNodeRow({
transform,
innerRef,
treeNode,
highlightedNodes,
selectedNode,
hoveredNode,
isUsingKBToScroll: isUsingKBToScrollUntill,
isContextMenuOpen,
onSelectNode,
onExpandNode,
onCollapseNode,
onHoverNode,
}: {
transform: string;
innerRef: Ref<any>;
treeNode: TreeNode;
highlightedNodes: Set<Id>;
selectedNode?: Id;
hoveredNode?: Id;
isUsingKBToScroll: RefObject<MillisSinceEpoch>;
isContextMenuOpen: boolean;
onSelectNode: OnSelectNode;
onExpandNode: (node: Id) => void;
onCollapseNode: (node: Id) => void;
onHoverNode: (node: Id) => void;
}) {
const showExpandChildrenIcon = treeNode.children.length > 0;
const isSelected = treeNode.id === selectedNode;
return (
<div
ref={innerRef}
style={{
position: 'absolute',
top: 0,
left: 0,
height: TreeItemHeight,
transform: transform,
//Due to absolute positioning width is set outside of react via a useLayoutEffect in parent
}}>
<IndentGuides
isSelected={isSelected}
hasExpandChildrenIcon={showExpandChildrenIcon}
indentGuides={treeNode.indentGuides}
/>
<TreeNodeContent
isHighlighted={highlightedNodes.has(treeNode.id)}
isSelected={isSelected}
isHovered={hoveredNode === treeNode.id}
onMouseEnter={() => {
const kbIsNoLongerReservingScroll =
new Date().getTime() > (isUsingKBToScrollUntill.current ?? 0);
if (kbIsNoLongerReservingScroll && isContextMenuOpen == false) {
onHoverNode(treeNode.id);
}
}}
onClick={() => {
onSelectNode(treeNode.id, 'tree');
}}
item={treeNode}
style={{overflow: 'visible'}}>
<ExpandedIconOrSpace
expanded={treeNode.isExpanded}
showIcon={showExpandChildrenIcon}
onClick={() => {
if (treeNode.isExpanded) {
onCollapseNode(treeNode.id);
} else {
onExpandNode(treeNode.id);
}
}}
/>
{nodeIcon(treeNode)}
<TreeNodeTextContent treeNode={treeNode} />
{treeNode.frameworkEvents && (
<Badge
count={treeNode.frameworkEvents}
style={{
backgroundColor: theme.primaryColor,
marginLeft: theme.space.small,
}}
/>
)}
</TreeNodeContent>
</div>
);
}
function TreeNodeTextContent({treeNode}: {treeNode: TreeNode}) {
return (
<Layout.Horizontal
style={{
alignItems: 'baseline',
userSelect: 'none',
}}>
<HighlightedText text={treeNode.name} />
<InlineAttributes attributes={treeNode.inlineAttributes} />
</Layout.Horizontal>
);
}
const TreeAttributeContainer = styled(Text)({
color: theme.textColorSecondary,
fontWeight: 300,
marginLeft: 5,
fontSize: 12,
});
function InlineAttributes({attributes}: {attributes: Record<string, string>}) {
const highlightManager: HighlightManager = useHighlighter();
return (
<>
{Object.entries(attributes ?? {}).map(([key, value]) => (
<TreeAttributeContainer key={key}>
<span style={{color: theme.warningColor}}>{key}</span>
<span>={highlightManager.render(value)}</span>
</TreeAttributeContainer>
))}
</>
);
}
const TreeItemHeightNumber = 28;
const TreeItemHeight = `${TreeItemHeightNumber}px`;
const HalfTreeItemHeight = `calc(${TreeItemHeight} / 2)`;
const TreeNodeContent = styled.li<{
item: TreeNode;
isHovered: boolean;
isSelected: boolean;
isHighlighted: boolean;
}>(({item, isHovered, isSelected, isHighlighted}) => ({
display: 'flex',
alignItems: 'center',
height: TreeItemHeight,
paddingLeft: `${item.depth * renderDepthOffset}px`,
borderWidth: '1px',
borderRadius: '3px',
borderColor: 'transparent',
borderStyle: 'solid',
overflow: 'hidden',
whiteSpace: 'nowrap',
backgroundColor: isHighlighted
? 'rgba(255,0,0,.3)'
: isSelected
? theme.selectionBackgroundColor
: isHovered
? theme.backgroundWash
: theme.backgroundDefault,
}));
function ExpandedIconOrSpace(props: {
onClick: () => void;
expanded: boolean;
showIcon: boolean;
}) {
if (props.showIcon) {
return (
<div
role="button"
tabIndex={0}
style={{
display: 'flex',
height: TreeItemHeight,
width: 20,
alignItems: 'center',
justifyContent: 'center',
}}
onClick={(e) => {
e.stopPropagation();
props.onClick();
}}>
<CaretDownOutlined
style={{
cursor: 'pointer',
color: theme.textColorPlaceholder,
fontSize: 14,
transform: props.expanded ? '' : 'rotate(-90deg)',
}}
/>
</div>
);
} else {
return (
<div
style={{
width: 20,
height: TreeItemHeight,
}}></div>
);
}
}
function HighlightedText(props: {text: string}) {
const highlightManager: HighlightManager = useHighlighter();
return (
<Typography.Text>{highlightManager.render(props.text)} </Typography.Text>
);
}
function nodeIcon(node: TreeNode) {
if (node.tags.includes('LithoMountable')) {
return <NodeIconImage src="icons/litho-logo-blue.png" />;
} else if (node.tags.includes('Litho')) {
return <NodeIconImage src="icons/litho-logo.png" />;
} else if (node.tags.includes('CK')) {
if (node.tags.includes('iOS')) {
return <NodeIconImage src="icons/ck-mounted-logo.png" />;
}
return <NodeIconImage src="icons/ck-logo.png" />;
} else if (node.tags.includes('BloksBoundTree')) {
return <NodeIconImage src="facebook/bloks-logo-orange.png" />;
} else if (node.tags.includes('BloksDerived')) {
return <NodeIconImage src="facebook/bloks-logo-blue.png" />;
} else {
return (
<div
style={{
height: NodeIconSize,
width: 0,
marginRight: IconRightMargin,
}}
/>
);
}
}
const NodeIconSize = 14;
const IconRightMargin = '4px';
const NodeIconImage = styled.img({
height: NodeIconSize,
width: NodeIconSize,
marginRight: IconRightMargin,
userSelect: 'none',
});
const renderDepthOffset = 14;
//due to virtualisation the out of the box dom based scrolling doesnt work
function findSearchMatchingIndexes(
treeNodes: TreeNode[],
searchTerm: string,
): number[] {
if (!searchTerm) {
return [];
}
return treeNodes
.map((value, index) => [value, index] as [TreeNode, number])
.filter(
([value, _]) =>
value.name.toLowerCase().includes(searchTerm) ||
Object.values(value.inlineAttributes).find((inlineAttr) =>
inlineAttr.toLocaleLowerCase().includes(searchTerm),
),
)
.map(([_, index]) => index);
}