seroval-plugins
Version:
Stringify JS values
76 lines (71 loc) • 1.82 kB
text/typescript
import type { SerovalNode } from 'seroval';
import { createPlugin } from 'seroval';
import ReadableStreamPlugin from './readable-stream';
import HeadersPlugin from './headers';
function createRequestOptions(
current: Request,
body: ArrayBuffer | ReadableStream | null,
): RequestInit {
return {
body,
cache: current.cache,
credentials: current.credentials,
headers: current.headers,
integrity: current.integrity,
keepalive: current.keepalive,
method: current.method,
mode: current.mode,
redirect: current.redirect,
referrer: current.referrer,
referrerPolicy: current.referrerPolicy,
};
}
interface RequestNode {
url: SerovalNode;
options: SerovalNode;
}
const RequestPlugin = /* @__PURE__ */ createPlugin<Request, RequestNode>({
tag: 'seroval-plugins/web/Request',
extends: [ReadableStreamPlugin, HeadersPlugin],
test(value) {
if (typeof Request === 'undefined') {
return false;
}
return value instanceof Request;
},
parse: {
async async(value, ctx) {
return {
url: await ctx.parse(value.url),
options: await ctx.parse(
createRequestOptions(
value,
value.body ? await value.clone().arrayBuffer() : null,
),
),
};
},
stream(value, ctx) {
return {
url: ctx.parse(value.url),
options: ctx.parse(createRequestOptions(value, value.clone().body)),
};
},
},
serialize(node, ctx) {
return (
'new Request(' +
ctx.serialize(node.url) +
',' +
ctx.serialize(node.options) +
')'
);
},
deserialize(node, ctx) {
return new Request(
ctx.deserialize(node.url) as string,
ctx.deserialize(node.options) as RequestInit,
);
},
});
export default RequestPlugin;