-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathFixedSizeTree.story.tsx
149 lines (129 loc) · 3.17 KB
/
FixedSizeTree.story.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/* eslint-disable max-depth */
import {number, withKnobs} from '@storybook/addon-knobs';
import {storiesOf} from '@storybook/react';
import React, {FC} from 'react';
import AutoSizer from 'react-virtualized-auto-sizer';
import {
FixedSizeNodeData,
FixedSizeNodePublicState,
FixedSizeTree,
TreeWalker,
TreeWalkerValue,
} from '../src';
import {NodeComponentProps} from '../src/Tree';
document.body.style.margin = '0';
document.body.style.display = 'flex';
document.body.style.minHeight = '100vh';
const root = document.getElementById('root')!;
root.style.margin = '10px 0 0 10px';
root.style.flex = '1';
type TreeNode = Readonly<{
children: TreeNode[];
id: number;
name: string;
}>;
type TreeData = FixedSizeNodeData &
Readonly<{
isLeaf: boolean;
name: string;
nestingLevel: number;
}>;
let nodeId = 0;
const createNode = (depth: number = 0): TreeNode => {
const node: TreeNode = {
children: [],
id: nodeId,
name: `test-${nodeId}`,
};
nodeId += 1;
if (depth === 5) {
return node;
}
for (let i = 0; i < 10; i++) {
node.children.push(createNode(depth + 1));
}
return node;
};
const rootNode = createNode();
const defaultTextStyle = {marginLeft: 10};
const defaultButtonStyle = {fontFamily: 'Courier New'};
type NodeMeta = Readonly<{
nestingLevel: number;
node: TreeNode;
}>;
const getNodeData = (
node: TreeNode,
nestingLevel: number,
): TreeWalkerValue<TreeData, NodeMeta> => ({
data: {
id: node.id.toString(),
isLeaf: node.children.length === 0,
isOpenByDefault: true,
name: node.name,
nestingLevel,
},
nestingLevel,
node,
});
function* treeWalker(): ReturnType<TreeWalker<TreeData, NodeMeta>> {
yield getNodeData(rootNode, 0);
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
while (true) {
const parentMeta = yield;
// eslint-disable-next-line @typescript-eslint/prefer-for-of
for (let i = 0; i < parentMeta.node.children.length; i++) {
yield getNodeData(
parentMeta.node.children[i],
parentMeta.nestingLevel + 1,
);
}
}
}
const Node: FC<NodeComponentProps<
TreeData,
FixedSizeNodePublicState<TreeData>
>> = ({data: {isLeaf, name, nestingLevel}, isOpen, style, setOpen}) => (
<div
style={{
...style,
alignItems: 'center',
display: 'flex',
marginLeft: nestingLevel * 30 + (isLeaf ? 48 : 0),
}}
>
{!isLeaf && (
<div>
<button
type="button"
onClick={() => setOpen(!isOpen)}
style={defaultButtonStyle}
>
{isOpen ? '-' : '+'}
</button>
</div>
)}
<div style={defaultTextStyle}>{name}</div>
</div>
);
type TreePresenterProps = Readonly<{
itemSize: number;
}>;
const TreePresenter: FC<TreePresenterProps> = ({itemSize}) => (
<AutoSizer disableWidth>
{({height}) => (
<FixedSizeTree
treeWalker={treeWalker}
itemSize={itemSize}
height={height}
width="100%"
>
{Node}
</FixedSizeTree>
)}
</AutoSizer>
);
storiesOf('Tree', module)
.addDecorator(withKnobs)
.add('FixedSizeTree', () => (
<TreePresenter itemSize={number('Row height', 30)} />
));