Tree styles improvement
Summary: ^ Reviewed By: antonk52 Differential Revision: D41579010 fbshipit-source-id: efb7d4300093173d85a3c5c269d79b78fe79908a
This commit is contained in:
committed by
Facebook GitHub Bot
parent
a89f6960dc
commit
feb206d069
@@ -27,6 +27,7 @@ import {
|
|||||||
HighlightProvider,
|
HighlightProvider,
|
||||||
useHighlighter,
|
useHighlighter,
|
||||||
theme,
|
theme,
|
||||||
|
styled,
|
||||||
} from 'flipper-plugin';
|
} from 'flipper-plugin';
|
||||||
|
|
||||||
import {head} from 'lodash';
|
import {head} from 'lodash';
|
||||||
@@ -61,7 +62,19 @@ export function Tree(props: {
|
|||||||
<div
|
<div
|
||||||
onMouseLeave={() => {
|
onMouseLeave={() => {
|
||||||
instance.uiState.hoveredNodes.set([]);
|
instance.uiState.hoveredNodes.set([]);
|
||||||
}}>
|
}}
|
||||||
|
style={
|
||||||
|
{
|
||||||
|
'--rct-color-tree-bg': theme.white,
|
||||||
|
'--rct-color-tree-focus-outline': theme.dividerColor,
|
||||||
|
'--rct-color-focustree-item-focused-border':
|
||||||
|
theme.selectionBackgroundColor,
|
||||||
|
'--rct-color-focustree-item-selected-bg':
|
||||||
|
theme.selectionBackgroundColor,
|
||||||
|
'--rct-color-nonfocustree-item-selected-bg':
|
||||||
|
theme.selectionBackgroundColor,
|
||||||
|
} as React.CSSProperties
|
||||||
|
}>
|
||||||
<HighlightProvider
|
<HighlightProvider
|
||||||
text={searchTerm}
|
text={searchTerm}
|
||||||
highlightColor={theme.searchHighlightBackground.yellow}>
|
highlightColor={theme.searchHighlightBackground.yellow}>
|
||||||
@@ -135,6 +148,17 @@ const cx = (...classNames: Array<string | undefined | false>) =>
|
|||||||
classNames.filter((cn) => !!cn).join(' ');
|
classNames.filter((cn) => !!cn).join(' ');
|
||||||
const renderDepthOffset = 5;
|
const renderDepthOffset = 5;
|
||||||
|
|
||||||
|
const DecorationImage = styled.img({
|
||||||
|
height: 12,
|
||||||
|
marginRight: 5,
|
||||||
|
width: 12,
|
||||||
|
});
|
||||||
|
function defaultIcon(node: UINode) {
|
||||||
|
if (node.tags.includes('Litho')) {
|
||||||
|
return <DecorationImage src="icons/litho-logo.png" />;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function renderItem<C extends string = never>({
|
function renderItem<C extends string = never>({
|
||||||
item,
|
item,
|
||||||
depth,
|
depth,
|
||||||
@@ -191,6 +215,7 @@ function renderItem<C extends string = never>({
|
|||||||
context.isDraggingOver && 'rct-tree-item-button-dragging-over',
|
context.isDraggingOver && 'rct-tree-item-button-dragging-over',
|
||||||
context.isSearchMatching && 'rct-tree-item-button-search-match',
|
context.isSearchMatching && 'rct-tree-item-button-search-match',
|
||||||
)}>
|
)}>
|
||||||
|
{defaultIcon(item.data)}
|
||||||
<HighlightedText text={item.data.name} />
|
<HighlightedText text={item.data.name} />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user