You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
647 B
34 lines
647 B
|
3 years ago
|
import Module from './Module';
|
||
|
|
|
||
|
|
export default class ContentModule extends Module {
|
||
|
|
|
||
|
|
constructor(name, data, ownerModule, parent) {
|
||
|
|
super(name, data, parent);
|
||
|
|
this.ownerModule = ownerModule;
|
||
|
|
}
|
||
|
|
|
||
|
|
get parsedSize() {
|
||
|
|
return this.getSize('parsedSize');
|
||
|
|
}
|
||
|
|
|
||
|
|
get gzipSize() {
|
||
|
|
return this.getSize('gzipSize');
|
||
|
|
}
|
||
|
|
|
||
|
|
getSize(sizeType) {
|
||
|
|
const ownerModuleSize = this.ownerModule[sizeType];
|
||
|
|
|
||
|
|
if (ownerModuleSize !== undefined) {
|
||
|
|
return Math.floor((this.size / this.ownerModule.size) * ownerModuleSize);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
toChartData() {
|
||
|
|
return {
|
||
|
|
...super.toChartData(),
|
||
|
|
inaccurateSizes: true
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
};
|