forked from webpack-contrib/webpack-bundle-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModulesTreemap.jsx
310 lines (272 loc) · 8.82 KB
/
ModulesTreemap.jsx
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
/** @jsx h */
import {h, Component} from 'preact';
import filesize from 'filesize';
import {computed} from 'mobx';
import {observer} from 'mobx-preact';
import {isChunkParsed} from '../utils';
import Treemap from './Treemap';
import Tooltip from './Tooltip';
import Switcher from './Switcher';
import Sidebar from './Sidebar';
import Checkbox from './Checkbox';
import CheckboxList from './CheckboxList';
import ContextMenu from './ContextMenu';
import s from './ModulesTreemap.css';
import Search from './Search';
import {store} from '../store';
import ModulesList from './ModulesList';
const SIZE_SWITCH_ITEMS = [
{label: 'Stat', prop: 'statSize'},
{label: 'Parsed', prop: 'parsedSize'},
{label: 'Gzipped', prop: 'gzipSize'}
];
@observer
export default class ModulesTreemap extends Component {
state = {
selectedChunk: null,
selectedMouseCoords: {x: 0, y: 0},
sidebarPinned: false,
showChunkContextMenu: false,
showTooltip: false,
tooltipContent: null
};
render() {
const {
selectedChunk,
selectedMouseCoords,
sidebarPinned,
showChunkContextMenu,
showTooltip,
tooltipContent
} = this.state;
return (
<div className={s.container}>
<Sidebar pinned={sidebarPinned}
onToggle={this.handleSidebarToggle}
onPinStateChange={this.handleSidebarPinStateChange}
onResize={this.handleSidebarResize}>
<div className={s.sidebarGroup}>
<Switcher label="Treemap sizes"
items={this.sizeSwitchItems}
activeItem={this.activeSizeItem}
onSwitch={this.handleSizeSwitch}/>
{store.hasConcatenatedModules &&
<div className={s.showOption}>
<Checkbox checked={store.showConcatenatedModulesContent}
onChange={this.handleConcatenatedModulesContentToggle}>
{`Show content of concatenated modules${store.activeSize === 'statSize' ? '' : ' (inaccurate)'}`}
</Checkbox>
</div>
}
</div>
<div className={s.sidebarGroup}>
<Search label="Search modules"
query={store.searchQuery}
autofocus
onQueryChange={this.handleQueryChange}/>
<div className={s.foundModulesInfo}>
{this.foundModulesInfo}
</div>
{store.isSearching && store.hasFoundModules &&
<div className={s.foundModulesContainer}>
{store.foundModulesByChunk.map(({chunk, modules}) =>
<div key={chunk.cid} className={s.foundModulesChunk}>
<div className={s.foundModulesChunkName}
onClick={() => this.treemap.zoomToGroup(chunk)}>
{chunk.label}
</div>
<ModulesList className={s.foundModulesList}
modules={modules}
showSize={store.activeSize}
highlightedText={store.searchQueryRegexp}
isModuleVisible={this.isModuleVisible}
onModuleClick={this.handleFoundModuleClick}/>
</div>
)}
</div>
}
</div>
{this.chunkItems.length > 1 &&
<div className={s.sidebarGroup}>
<CheckboxList label="Show chunks"
items={this.chunkItems}
checkedItems={store.selectedChunks}
renderLabel={this.renderChunkItemLabel}
onChange={this.handleSelectedChunksChange}/>
</div>
}
</Sidebar>
<Treemap ref={this.saveTreemapRef}
className={s.map}
data={store.visibleChunks}
highlightGroups={this.highlightedModules}
weightProp={store.activeSize}
onMouseLeave={this.handleMouseLeaveTreemap}
onGroupHover={this.handleTreemapGroupHover}
onGroupSecondaryClick={this.handleTreemapGroupSecondaryClick}
onResize={this.handleResize}/>
<Tooltip visible={showTooltip}>
{tooltipContent}
</Tooltip>
<ContextMenu onHide={this.handleChunkContextMenuHide}
visible={showChunkContextMenu}
chunk={selectedChunk}
coords={selectedMouseCoords}/>
</div>
);
}
renderModuleSize(module, sizeType) {
const sizeProp = `${sizeType}Size`;
const size = module[sizeProp];
const sizeLabel = SIZE_SWITCH_ITEMS.find(item => item.prop === sizeProp).label;
const isActive = (store.activeSize === sizeProp);
return (typeof size === 'number') ?
<div className={isActive ? s.activeSize : ''}>
{sizeLabel} size: <strong>{filesize(size)}</strong>
</div>
:
null;
}
renderChunkItemLabel = item => {
const isAllItem = (item === CheckboxList.ALL_ITEM);
const label = isAllItem ? 'All' : item.label;
const size = isAllItem ? store.totalChunksSize : item[store.activeSize];
return [
`${label} (`,
<strong>{filesize(size)}</strong>,
')'
];
};
@computed get sizeSwitchItems() {
return store.hasParsedSizes ? SIZE_SWITCH_ITEMS : SIZE_SWITCH_ITEMS.slice(0, 1);
}
@computed get activeSizeItem() {
return this.sizeSwitchItems.find(item => item.prop === store.activeSize);
}
@computed get chunkItems() {
const {allChunks, activeSize} = store;
let chunkItems = [...allChunks];
if (activeSize !== 'statSize') {
chunkItems = chunkItems.filter(isChunkParsed);
}
chunkItems.sort((chunk1, chunk2) => chunk2[activeSize] - chunk1[activeSize]);
return chunkItems;
}
@computed get highlightedModules() {
return new Set(store.foundModules);
}
@computed get foundModulesInfo() {
if (!store.isSearching) {
// ` ` to reserve space
return '\u00A0';
}
if (store.hasFoundModules) {
return ([
<div className={s.foundModulesInfoItem}>
Count: <strong>{store.foundModules.length}</strong>
</div>,
<div className={s.foundModulesInfoItem}>
Total size: <strong>{filesize(store.foundModulesSize)}</strong>
</div>
]);
} else {
return 'Nothing found' + (store.allChunksSelected ? '' : ' in selected chunks');
}
}
handleConcatenatedModulesContentToggle = flag => {
store.showConcatenatedModulesContent = flag;
}
handleChunkContextMenuHide = () => {
this.setState({
showChunkContextMenu: false
});
}
handleResize = () => {
// Close any open context menu when the report is resized,
// so it doesn't show in an incorrect position
if (this.state.showChunkContextMenu) {
this.setState({
showChunkContextMenu: false
});
}
}
handleSidebarToggle = () => {
if (this.state.sidebarPinned) {
setTimeout(() => this.treemap.resize());
}
}
handleSidebarPinStateChange = pinned => {
this.setState({sidebarPinned: pinned});
setTimeout(() => this.treemap.resize());
}
handleSidebarResize = () => {
this.treemap.resize();
}
handleSizeSwitch = sizeSwitchItem => {
store.selectedSize = sizeSwitchItem.prop;
};
handleQueryChange = query => {
store.searchQuery = query;
}
handleSelectedChunksChange = selectedChunks => {
store.selectedChunks = selectedChunks;
};
handleMouseLeaveTreemap = () => {
this.setState({showTooltip: false});
};
handleTreemapGroupSecondaryClick = event => {
const {group, x, y} = event;
if (group && group.isAsset) {
this.setState({
selectedChunk: group,
selectedMouseCoords: {
x,
y
},
showChunkContextMenu: true
});
} else {
this.setState({
selectedChunk: null,
showChunkContextMenu: false
});
}
};
handleTreemapGroupHover = event => {
const {group} = event;
if (group) {
this.setState({
showTooltip: true,
tooltipContent: this.getTooltipContent(group)
});
} else {
this.setState({showTooltip: false});
}
};
handleFoundModuleClick = module => this.treemap.zoomToGroup(module);
isModuleVisible = module => (
this.treemap.isGroupRendered(module)
)
saveTreemapRef = treemap => this.treemap = treemap;
getTooltipContent(module) {
if (!module) return null;
return (
<div>
<div><strong>{module.label}</strong></div>
<br/>
{this.renderModuleSize(module, 'stat')}
{!module.inaccurateSizes && this.renderModuleSize(module, 'parsed')}
{!module.inaccurateSizes && this.renderModuleSize(module, 'gzip')}
{module.path &&
<div>Path: <strong>{module.path}</strong></div>
}
{module.isAsset &&
<div>
<br/>
<strong><em>Right-click to view options related to this chunk</em></strong>
</div>
}
</div>
);
}
}