Skip to content

Commit cbe9b21

Browse files
committedDec 31, 2021
feat(network): improve custom tooltip stories
1 parent 8f13a53 commit cbe9b21

File tree

2 files changed

+30
-18
lines changed

2 files changed

+30
-18
lines changed
 

‎packages/network/stories/network.stories.tsx

+15-9
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const commonProperties: NetworkSvgProps<NodeType> = {
2525
...svgDefaultProps,
2626
data,
2727
width: 900,
28-
height: 340,
28+
height: 400,
2929
nodeColor: node => node.color,
3030
repulsivity: 6,
3131
iterations: 60,
@@ -45,14 +45,20 @@ export const CustomNode = () => (
4545
)
4646

4747
const CustomNodeTooltipComponent = ({ node }: NetworkNodeTooltipProps<NodeType>) => (
48-
<div>
49-
<div>
50-
<strong style={{ color: node.color }}>ID: {node.id}</strong>
51-
<br />
52-
Depth: {node.depth}
53-
<br />
54-
Radius: {node.radius}
55-
</div>
48+
<div
49+
style={{
50+
background: node.color,
51+
color: '#000000',
52+
padding: '9px 12px',
53+
borderRadius: '2px',
54+
boxShadow: '0 3px 9px rgba(0, 0, 0, .35)',
55+
}}
56+
>
57+
<strong>ID: {node.id}</strong>
58+
<br />
59+
Depth: {node.depth}
60+
<br />
61+
Radius: {node.radius}
5662
</div>
5763
)
5864

‎packages/network/stories/networkCanvas.stories.tsx

+15-9
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const commonProperties: NetworkCanvasProps<NodeType> = {
2525
...canvasDefaultProps,
2626
data,
2727
width: 900,
28-
height: 340,
28+
height: 400,
2929
nodeColor: node => node.color,
3030
repulsivity: 6,
3131
iterations: 60,
@@ -48,14 +48,20 @@ export const CustomNodeRenderer = () => (
4848
)
4949

5050
const CustomNodeTooltipComponent = ({ node }: NetworkNodeTooltipProps<NodeType>) => (
51-
<div>
52-
<div>
53-
<strong style={{ color: node.color }}>ID: {node.id}</strong>
54-
<br />
55-
Depth: {node.depth}
56-
<br />
57-
Radius: {node.radius}
58-
</div>
51+
<div
52+
style={{
53+
background: node.color,
54+
color: '#000000',
55+
padding: '9px 12px',
56+
borderRadius: '2px',
57+
boxShadow: '0 3px 9px rgba(0, 0, 0, .35)',
58+
}}
59+
>
60+
<strong>ID: {node.id}</strong>
61+
<br />
62+
Depth: {node.depth}
63+
<br />
64+
Radius: {node.radius}
5965
</div>
6066
)
6167

0 commit comments

Comments
 (0)
Please sign in to comment.