-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathbundle-calculator.ts
173 lines (154 loc) · 4.76 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
// tslint:disable
// TODO: cleanup this file, it's copied as is from Angular CLI.
/**
* @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: any;
chunks: any[];
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,
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], [])
.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 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(val: string, baseline?: string, factor?: ('pos' | 'neg')): number {
if (/^\d+$/.test(val)) {
return parseFloat(val);
}
if (/^(\d+)%$/.test(val)) {
return calculatePercentBytes(val, baseline, factor);
}
const multiplier = getMultiplier(val);
const numberVal = parseFloat(val.replace(/((k|m|M|)b?)$/, ''));
const baselineVal = baseline ? parseFloat(baseline.replace(/((k|m|M|)b?)$/, '')) : 0;
const baselineMultiplier = baseline ? getMultiplier(baseline) : 1;
const factorMultiplier = factor ? (factor === 'pos' ? 1 : -1) : 1;
return numberVal * multiplier + baselineVal * baselineMultiplier * factorMultiplier;
}
function getMultiplier(val: string): number {
if (/^(\d+)b?$/.test(val)) {
return 1;
} else if (/^(\d+)kb$/.test(val)) {
return 1000;
} else if (/^(\d+)(m|M)b$/.test(val)) {
return 1000 * 1000;
} else {
return 1;
}
}
function calculatePercentBytes(val: string, baseline?: string, factor?: ('pos' | 'neg')): number {
const baselineBytes = calculateBytes(baseline as string);
const percentage = parseFloat(val.replace(/%/g, ''));
return baselineBytes + baselineBytes * percentage / 100 * (factor === 'pos' ? 1 : -1);
}