Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add assets gzipsize #833

Merged
merged 5 commits into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions packages/core/src/build-utils/common/chunks/assetsContent.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
import { SDK } from '@rsdoctor/types';
import { RsdoctorPluginOptionsNormalized } from '@rsdoctor/core/types';

const COMPRESSIBLE_REGEX =
/\.(?:js|css|html|json|svg|txt|xml|xhtml|wasm|manifest)$/i;

export function assetsContents(
assetMap: Map<string, { content: string }>,
chunkGraph: SDK.ChunkGraphInstance,
supports: RsdoctorPluginOptionsNormalized['supports'],
) {
const assets = chunkGraph.getAssets();
assets.forEach((asset) => {
const { content = '' } = assetMap.get(asset.path) || {};
asset.content = content;
if (COMPRESSIBLE_REGEX.test(asset.path) && supports?.gzip) {
asset.setGzipSize(content);
}
});
}
6 changes: 5 additions & 1 deletion packages/core/src/inner-plugins/plugins/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ export class InternalBundlePlugin<

public done = async (): Promise<void> => {
if (this.scheduler.chunkGraph) {
Chunks.assetsContents(this.map, this.scheduler.chunkGraph);
Chunks.assetsContents(
this.map,
this.scheduler.chunkGraph,
this.scheduler.options?.supports,
);
}

this.sdk.addClientRoutes([
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/inner-plugins/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export function normalizeUserConfig<Rules extends Linter.ExtendRuleData[]>(
parseBundle: true,
banner: undefined,
generateTileGraph: true,
gzip: false,
},
port,
printLog = { serverUrls: true },
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/types/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ interface ISupport {
banner?: boolean;
parseBundle?: boolean;
generateTileGraph?: boolean;
gzip?: boolean;
}

export interface RsdoctorPluginOptionsNormalized<
Expand Down
8 changes: 7 additions & 1 deletion packages/graph/src/graph/chunk-graph/asset.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SDK } from '@rsdoctor/types';

import { gzipSync } from 'node:zlib';
let id = 1;

export class Asset implements SDK.AssetInstance {
Expand All @@ -12,6 +12,7 @@ export class Asset implements SDK.AssetInstance {
size: number;
content: string;
chunks: SDK.ChunkInstance[];
gzipSize: number | undefined;

constructor(
path: string,
Expand All @@ -31,6 +32,7 @@ export class Asset implements SDK.AssetInstance {
id: this.id,
path: this.path,
size: this.size,
gzipSize: this.gzipSize,
chunks: this.chunks?.map((ck) => ck.id),
content:
types === SDK.ToDataType.NoSourceAndAssets ||
Expand All @@ -48,4 +50,8 @@ export class Asset implements SDK.AssetInstance {
setId(id: number): void {
this.id = id;
}

setGzipSize(content: string) {
this.gzipSize = gzipSync(content, { level: 9 }).length;
}
}
2 changes: 2 additions & 0 deletions packages/types/src/sdk/chunk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ export interface AssetInstance {
chunks: ChunkInstance[];
/** File resource content */
content: string;
gzipSize: number | undefined;
/** Generate data */
toData(type: ToDataType): AssetData;
setId(id: number): void;
setChunks(chunks: ChunkInstance[]): void;
setGzipSize(content: string): void;
}

export interface ChunkInstance {
Expand Down
1 change: 1 addition & 0 deletions packages/utils/src/common/graph/assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ export function getAssetsSizeInfo(
files: assets.map((e) => ({
path: e.path,
size: e.size,
gzipSize: e.gzipSize,
initial: isInitialAsset(e, chunks),
content: withFileContent ? e.content : undefined,
})),
Expand Down