-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathbundle-calculator.ts
192 lines (167 loc) · 4.7 KB
/
bundle-calculator.ts
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
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
import { Budget } from '../../browser/schema';
export interface Compilation {
assets: { [name: string]: { size: () => number } };
chunks: { name: string, files: string[], isOnlyInitial: () => boolean }[];
warnings: string[];
errors: string[];
}
export interface Size {
size: number;
label?: string;
}
export function calculateSizes(budget: Budget, compilation: Compilation): Size[] {
const calculatorMap = {
all: AllCalculator,
allScript: AllScriptCalculator,
any: AnyCalculator,
anyScript: AnyScriptCalculator,
anyComponentStyle: AnyComponentStyleCalculator,
bundle: BundleCalculator,
initial: InitialCalculator,
};
const ctor = calculatorMap[budget.type];
const calculator = new ctor(budget, compilation);
return calculator.calculate();
}
export abstract class Calculator {
constructor (protected budget: Budget, protected compilation: Compilation) {}
abstract calculate(): Size[];
}
/**
* A named bundle.
*/
class BundleCalculator extends Calculator {
calculate() {
const size: number = this.compilation.chunks
.filter(chunk => chunk.name === this.budget.name)
.reduce((files, chunk) => [...files, ...chunk.files], [])
.filter((file: string) => !file.endsWith('.map'))
.map((file: string) => this.compilation.assets[file].size())
.reduce((total: number, size: number) => total + size, 0);
return [{size, label: this.budget.name}];
}
}
/**
* The sum of all initial chunks (marked as initial by webpack).
*/
class InitialCalculator extends Calculator {
calculate() {
const initialChunks = this.compilation.chunks.filter(chunk => chunk.isOnlyInitial());
const size: number = initialChunks
.reduce((files, chunk) => [...files, ...chunk.files], [])
.filter((file: string) => !file.endsWith('.map'))
.map((file: string) => this.compilation.assets[file].size())
.reduce((total: number, size: number) => total + size, 0);
return [{size, label: 'initial'}];
}
}
/**
* The sum of all the scripts portions.
*/
class AllScriptCalculator extends Calculator {
calculate() {
const size: number = Object.keys(this.compilation.assets)
.filter(key => key.endsWith('.js'))
.map(key => this.compilation.assets[key])
.map(asset => asset.size())
.reduce((total: number, size: number) => total + size, 0);
return [{size, label: 'total scripts'}];
}
}
/**
* All scripts and assets added together.
*/
class AllCalculator extends Calculator {
calculate() {
const size: number = Object.keys(this.compilation.assets)
.filter(key => !key.endsWith('.map'))
.map(key => this.compilation.assets[key].size())
.reduce((total: number, size: number) => total + size, 0);
return [{size, label: 'total'}];
}
}
/**
* Any components styles
*/
class AnyComponentStyleCalculator extends Calculator {
calculate() {
return Object.keys(this.compilation.assets)
.filter(key => key.endsWith('.css'))
.map(key => ({
size: this.compilation.assets[key].size(),
label: key,
}));
}
}
/**
* Any script, individually.
*/
class AnyScriptCalculator extends Calculator {
calculate() {
return Object.keys(this.compilation.assets)
.filter(key => key.endsWith('.js'))
.map(key => {
const asset = this.compilation.assets[key];
return {
size: asset.size(),
label: key,
};
});
}
}
/**
* Any script or asset (images, css, etc).
*/
class AnyCalculator extends Calculator {
calculate() {
return Object.keys(this.compilation.assets)
.filter(key => !key.endsWith('.map'))
.map(key => {
const asset = this.compilation.assets[key];
return {
size: asset.size(),
label: key,
};
});
}
}
/**
* Calculate the bytes given a string value.
*/
export function calculateBytes(
input: string,
baseline?: string,
factor: 1 | -1 = 1,
): number {
const matches = input.match(/^\s*(\d+(?:\.\d+)?)\s*(%|(?:[mM]|[kK]|[gG])?[bB])?\s*$/);
if (!matches) {
return NaN;
}
const baselineBytes = baseline && calculateBytes(baseline) || 0;
let value = Number(matches[1]);
switch (matches[2] && matches[2].toLowerCase()) {
case '%':
value = baselineBytes * value / 100;
break;
case 'kb':
value *= 1024;
break;
case 'mb':
value *= 1024 * 1024;
break;
case 'gb':
value *= 1024 * 1024 * 1024;
break;
}
if (baselineBytes === 0) {
return value;
}
return baselineBytes + value * factor;
}