Skip to content

Commit 84c14fb

Browse files
committed
feat: add getJson() to ContentAsset
1 parent 7d587db commit 84c14fb

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

src/server/assets/content-asset-kv-store.ts

+4
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,10 @@ export class ContentKVStoreAsset implements ContentAsset {
8686
throw new Error("Can't getText() for KV Store asset");
8787
}
8888

89+
getJson<T = unknown>(): T {
90+
throw new Error("Can't getJson() for KV Store asset");
91+
}
92+
8993
getMetadata(): ContentAssetMetadataMapEntry {
9094
return this.metadata;
9195
}

src/server/assets/content-asset-wasm-inline.ts

+5
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ export class ContentWasmInlineAsset implements ContentAsset {
6767
return decoder.decode(this.sourceAndInfo.source);
6868
}
6969

70+
getJson<T = unknown>(): T {
71+
const text = this.getText();
72+
return JSON.parse(text) as T;
73+
}
74+
7075
getMetadata(): ContentAssetMetadataMapEntry {
7176
return this.metadata;
7277
}

src/server/assets/content-assets.ts

+5
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,11 @@ abstract class ContentRuntimeAsset<TMetadataMapEntry extends ContentAssetMetadat
8383
return decoder.decode(this.sourceAndInfo.source);
8484
}
8585

86+
getJson<T = unknown>(): T {
87+
const text = this.getText();
88+
return JSON.parse(text) as T;
89+
}
90+
8691
getMetadata(): ContentAssetMetadataMapEntry {
8792
return this.metadata;
8893
}

src/types/content-assets.ts

+1
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@ export interface ContentAsset {
6969
getStoreEntry(acceptEncodingsGroups?: ContentCompressionTypes[][]): Promise<StoreEntry>;
7070
getBytes(): Uint8Array;
7171
getText(): string;
72+
getJson<T = unknown>(): T;
7273
}

0 commit comments

Comments
 (0)