feat(blog): add file-based blog with dynamic slugs, MDX content and layout shell
- Introduced blog routing using Next.js App Router - Implemented dynamic [slug] pages for blog posts - Added MDX-based content loading via lib/posts - Integrated shared TopBar layout with navigation - Established clear content, lib and component separation
This commit is contained in:
15
apps/public-web/node_modules/next/dist/server/stream-utils/encoded-tags.d.ts
generated
vendored
Normal file
15
apps/public-web/node_modules/next/dist/server/stream-utils/encoded-tags.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
export declare const ENCODED_TAGS: {
|
||||
readonly OPENING: {
|
||||
readonly HTML: Uint8Array<ArrayBuffer>;
|
||||
readonly BODY: Uint8Array<ArrayBuffer>;
|
||||
};
|
||||
readonly CLOSED: {
|
||||
readonly HEAD: Uint8Array<ArrayBuffer>;
|
||||
readonly BODY: Uint8Array<ArrayBuffer>;
|
||||
readonly HTML: Uint8Array<ArrayBuffer>;
|
||||
readonly BODY_AND_HTML: Uint8Array<ArrayBuffer>;
|
||||
};
|
||||
readonly META: {
|
||||
readonly ICON_MARK: Uint8Array<ArrayBuffer>;
|
||||
};
|
||||
};
|
||||
114
apps/public-web/node_modules/next/dist/server/stream-utils/encoded-tags.js
generated
vendored
Normal file
114
apps/public-web/node_modules/next/dist/server/stream-utils/encoded-tags.js
generated
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "ENCODED_TAGS", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return ENCODED_TAGS;
|
||||
}
|
||||
});
|
||||
const ENCODED_TAGS = {
|
||||
// opening tags do not have the closing `>` since they can contain other attributes such as `<body className=''>`
|
||||
OPENING: {
|
||||
// <html
|
||||
HTML: new Uint8Array([
|
||||
60,
|
||||
104,
|
||||
116,
|
||||
109,
|
||||
108
|
||||
]),
|
||||
// <body
|
||||
BODY: new Uint8Array([
|
||||
60,
|
||||
98,
|
||||
111,
|
||||
100,
|
||||
121
|
||||
])
|
||||
},
|
||||
CLOSED: {
|
||||
// </head>
|
||||
HEAD: new Uint8Array([
|
||||
60,
|
||||
47,
|
||||
104,
|
||||
101,
|
||||
97,
|
||||
100,
|
||||
62
|
||||
]),
|
||||
// </body>
|
||||
BODY: new Uint8Array([
|
||||
60,
|
||||
47,
|
||||
98,
|
||||
111,
|
||||
100,
|
||||
121,
|
||||
62
|
||||
]),
|
||||
// </html>
|
||||
HTML: new Uint8Array([
|
||||
60,
|
||||
47,
|
||||
104,
|
||||
116,
|
||||
109,
|
||||
108,
|
||||
62
|
||||
]),
|
||||
// </body></html>
|
||||
BODY_AND_HTML: new Uint8Array([
|
||||
60,
|
||||
47,
|
||||
98,
|
||||
111,
|
||||
100,
|
||||
121,
|
||||
62,
|
||||
60,
|
||||
47,
|
||||
104,
|
||||
116,
|
||||
109,
|
||||
108,
|
||||
62
|
||||
])
|
||||
},
|
||||
META: {
|
||||
// Only the match the prefix cause the suffix can be different wether it's xml compatible or not ">" or "/>"
|
||||
// <meta name="«nxt-icon»"
|
||||
// This is a special mark that will be replaced by the icon insertion script tag.
|
||||
ICON_MARK: new Uint8Array([
|
||||
60,
|
||||
109,
|
||||
101,
|
||||
116,
|
||||
97,
|
||||
32,
|
||||
110,
|
||||
97,
|
||||
109,
|
||||
101,
|
||||
61,
|
||||
34,
|
||||
194,
|
||||
171,
|
||||
110,
|
||||
120,
|
||||
116,
|
||||
45,
|
||||
105,
|
||||
99,
|
||||
111,
|
||||
110,
|
||||
194,
|
||||
187,
|
||||
34
|
||||
])
|
||||
}
|
||||
};
|
||||
|
||||
//# sourceMappingURL=encoded-tags.js.map
|
||||
1
apps/public-web/node_modules/next/dist/server/stream-utils/encoded-tags.js.map
generated
vendored
Normal file
1
apps/public-web/node_modules/next/dist/server/stream-utils/encoded-tags.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../src/server/stream-utils/encoded-tags.ts"],"sourcesContent":["export const ENCODED_TAGS = {\n // opening tags do not have the closing `>` since they can contain other attributes such as `<body className=''>`\n OPENING: {\n // <html\n HTML: new Uint8Array([60, 104, 116, 109, 108]),\n // <body\n BODY: new Uint8Array([60, 98, 111, 100, 121]),\n },\n CLOSED: {\n // </head>\n HEAD: new Uint8Array([60, 47, 104, 101, 97, 100, 62]),\n // </body>\n BODY: new Uint8Array([60, 47, 98, 111, 100, 121, 62]),\n // </html>\n HTML: new Uint8Array([60, 47, 104, 116, 109, 108, 62]),\n // </body></html>\n BODY_AND_HTML: new Uint8Array([\n 60, 47, 98, 111, 100, 121, 62, 60, 47, 104, 116, 109, 108, 62,\n ]),\n },\n META: {\n // Only the match the prefix cause the suffix can be different wether it's xml compatible or not \">\" or \"/>\"\n // <meta name=\"«nxt-icon»\"\n // This is a special mark that will be replaced by the icon insertion script tag.\n ICON_MARK: new Uint8Array([\n 60, 109, 101, 116, 97, 32, 110, 97, 109, 101, 61, 34, 194, 171, 110, 120,\n 116, 45, 105, 99, 111, 110, 194, 187, 34,\n ]),\n },\n} as const\n"],"names":["ENCODED_TAGS","OPENING","HTML","Uint8Array","BODY","CLOSED","HEAD","BODY_AND_HTML","META","ICON_MARK"],"mappings":";;;;+BAAaA;;;eAAAA;;;AAAN,MAAMA,eAAe;IAC1B,iHAAiH;IACjHC,SAAS;QACP,QAAQ;QACRC,MAAM,IAAIC,WAAW;YAAC;YAAI;YAAK;YAAK;YAAK;SAAI;QAC7C,QAAQ;QACRC,MAAM,IAAID,WAAW;YAAC;YAAI;YAAI;YAAK;YAAK;SAAI;IAC9C;IACAE,QAAQ;QACN,UAAU;QACVC,MAAM,IAAIH,WAAW;YAAC;YAAI;YAAI;YAAK;YAAK;YAAI;YAAK;SAAG;QACpD,UAAU;QACVC,MAAM,IAAID,WAAW;YAAC;YAAI;YAAI;YAAI;YAAK;YAAK;YAAK;SAAG;QACpD,UAAU;QACVD,MAAM,IAAIC,WAAW;YAAC;YAAI;YAAI;YAAK;YAAK;YAAK;YAAK;SAAG;QACrD,iBAAiB;QACjBI,eAAe,IAAIJ,WAAW;YAC5B;YAAI;YAAI;YAAI;YAAK;YAAK;YAAK;YAAI;YAAI;YAAI;YAAK;YAAK;YAAK;YAAK;SAC5D;IACH;IACAK,MAAM;QACJ,4GAA4G;QAC5G,0BAA0B;QAC1B,iFAAiF;QACjFC,WAAW,IAAIN,WAAW;YACxB;YAAI;YAAK;YAAK;YAAK;YAAI;YAAI;YAAK;YAAI;YAAK;YAAK;YAAI;YAAI;YAAK;YAAK;YAAK;YACrE;YAAK;YAAI;YAAK;YAAI;YAAK;YAAK;YAAK;YAAK;SACvC;IACH;AACF","ignoreList":[0]}
|
||||
59
apps/public-web/node_modules/next/dist/server/stream-utils/node-web-streams-helper.d.ts
generated
vendored
Normal file
59
apps/public-web/node_modules/next/dist/server/stream-utils/node-web-streams-helper.d.ts
generated
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
import type { ReactDOMServerReadableStream } from 'react-dom/server';
|
||||
export declare function chainStreams<T>(...streams: ReadableStream<T>[]): ReadableStream<T>;
|
||||
export declare function streamFromString(str: string): ReadableStream<Uint8Array>;
|
||||
export declare function streamFromBuffer(chunk: Buffer): ReadableStream<Uint8Array>;
|
||||
export declare function streamToUint8Array(stream: ReadableStream<Uint8Array>): Promise<Uint8Array>;
|
||||
export declare function streamToBuffer(stream: ReadableStream<Uint8Array>): Promise<Buffer>;
|
||||
export declare function streamToString(stream: ReadableStream<Uint8Array>, signal?: AbortSignal): Promise<string>;
|
||||
export type BufferedTransformOptions = {
|
||||
/**
|
||||
* Flush synchronously once the buffer reaches this many bytes.
|
||||
*/
|
||||
readonly maxBufferByteLength?: number;
|
||||
};
|
||||
export declare function createBufferedTransformStream(options?: BufferedTransformOptions): TransformStream<Uint8Array, Uint8Array>;
|
||||
export declare function renderToInitialFizzStream({ ReactDOMServer, element, streamOptions, }: {
|
||||
ReactDOMServer: {
|
||||
renderToReadableStream: typeof import('react-dom/server').renderToReadableStream;
|
||||
};
|
||||
element: React.ReactElement;
|
||||
streamOptions?: Parameters<typeof ReactDOMServer.renderToReadableStream>[1];
|
||||
}): Promise<ReactDOMServerReadableStream>;
|
||||
export declare function createRootLayoutValidatorStream(): TransformStream<Uint8Array, Uint8Array>;
|
||||
export type ContinueStreamOptions = {
|
||||
inlinedDataStream: ReadableStream<Uint8Array> | undefined;
|
||||
isStaticGeneration: boolean;
|
||||
isBuildTimePrerendering: boolean;
|
||||
buildId: string;
|
||||
getServerInsertedHTML: () => Promise<string>;
|
||||
getServerInsertedMetadata: () => Promise<string>;
|
||||
validateRootLayout?: boolean;
|
||||
/**
|
||||
* Suffix to inject after the buffered data, but before the close tags.
|
||||
*/
|
||||
suffix?: string | undefined;
|
||||
};
|
||||
export declare function continueFizzStream(renderStream: ReactDOMServerReadableStream, { suffix, inlinedDataStream, isStaticGeneration, isBuildTimePrerendering, buildId, getServerInsertedHTML, getServerInsertedMetadata, validateRootLayout, }: ContinueStreamOptions): Promise<ReadableStream<Uint8Array>>;
|
||||
type ContinueDynamicPrerenderOptions = {
|
||||
getServerInsertedHTML: () => Promise<string>;
|
||||
getServerInsertedMetadata: () => Promise<string>;
|
||||
};
|
||||
export declare function continueDynamicPrerender(prerenderStream: ReadableStream<Uint8Array>, { getServerInsertedHTML, getServerInsertedMetadata, }: ContinueDynamicPrerenderOptions): Promise<ReadableStream<Uint8Array<ArrayBufferLike>>>;
|
||||
type ContinueStaticPrerenderOptions = {
|
||||
inlinedDataStream: ReadableStream<Uint8Array>;
|
||||
getServerInsertedHTML: () => Promise<string>;
|
||||
getServerInsertedMetadata: () => Promise<string>;
|
||||
isBuildTimePrerendering: boolean;
|
||||
buildId: string;
|
||||
};
|
||||
export declare function continueStaticPrerender(prerenderStream: ReadableStream<Uint8Array>, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, isBuildTimePrerendering, buildId, }: ContinueStaticPrerenderOptions): Promise<ReadableStream<Uint8Array<ArrayBufferLike>>>;
|
||||
export declare function continueStaticFallbackPrerender(prerenderStream: ReadableStream<Uint8Array>, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, isBuildTimePrerendering, buildId, }: ContinueStaticPrerenderOptions): Promise<ReadableStream<Uint8Array<ArrayBufferLike>>>;
|
||||
type ContinueResumeOptions = {
|
||||
inlinedDataStream: ReadableStream<Uint8Array>;
|
||||
getServerInsertedHTML: () => Promise<string>;
|
||||
getServerInsertedMetadata: () => Promise<string>;
|
||||
delayDataUntilFirstHtmlChunk: boolean;
|
||||
};
|
||||
export declare function continueDynamicHTMLResume(renderStream: ReadableStream<Uint8Array>, { delayDataUntilFirstHtmlChunk, inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, }: ContinueResumeOptions): Promise<ReadableStream<Uint8Array<ArrayBufferLike>>>;
|
||||
export declare function createDocumentClosingStream(): ReadableStream<Uint8Array>;
|
||||
export {};
|
||||
737
apps/public-web/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js
generated
vendored
Normal file
737
apps/public-web/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js
generated
vendored
Normal file
@@ -0,0 +1,737 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
chainStreams: null,
|
||||
continueDynamicHTMLResume: null,
|
||||
continueDynamicPrerender: null,
|
||||
continueFizzStream: null,
|
||||
continueStaticFallbackPrerender: null,
|
||||
continueStaticPrerender: null,
|
||||
createBufferedTransformStream: null,
|
||||
createDocumentClosingStream: null,
|
||||
createRootLayoutValidatorStream: null,
|
||||
renderToInitialFizzStream: null,
|
||||
streamFromBuffer: null,
|
||||
streamFromString: null,
|
||||
streamToBuffer: null,
|
||||
streamToString: null,
|
||||
streamToUint8Array: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
chainStreams: function() {
|
||||
return chainStreams;
|
||||
},
|
||||
continueDynamicHTMLResume: function() {
|
||||
return continueDynamicHTMLResume;
|
||||
},
|
||||
continueDynamicPrerender: function() {
|
||||
return continueDynamicPrerender;
|
||||
},
|
||||
continueFizzStream: function() {
|
||||
return continueFizzStream;
|
||||
},
|
||||
continueStaticFallbackPrerender: function() {
|
||||
return continueStaticFallbackPrerender;
|
||||
},
|
||||
continueStaticPrerender: function() {
|
||||
return continueStaticPrerender;
|
||||
},
|
||||
createBufferedTransformStream: function() {
|
||||
return createBufferedTransformStream;
|
||||
},
|
||||
createDocumentClosingStream: function() {
|
||||
return createDocumentClosingStream;
|
||||
},
|
||||
createRootLayoutValidatorStream: function() {
|
||||
return createRootLayoutValidatorStream;
|
||||
},
|
||||
renderToInitialFizzStream: function() {
|
||||
return renderToInitialFizzStream;
|
||||
},
|
||||
streamFromBuffer: function() {
|
||||
return streamFromBuffer;
|
||||
},
|
||||
streamFromString: function() {
|
||||
return streamFromString;
|
||||
},
|
||||
streamToBuffer: function() {
|
||||
return streamToBuffer;
|
||||
},
|
||||
streamToString: function() {
|
||||
return streamToString;
|
||||
},
|
||||
streamToUint8Array: function() {
|
||||
return streamToUint8Array;
|
||||
}
|
||||
});
|
||||
const _tracer = require("../lib/trace/tracer");
|
||||
const _constants = require("../lib/trace/constants");
|
||||
const _detachedpromise = require("../../lib/detached-promise");
|
||||
const _scheduler = require("../../lib/scheduler");
|
||||
const _encodedtags = require("./encoded-tags");
|
||||
const _uint8arrayhelpers = require("./uint8array-helpers");
|
||||
const _constants1 = require("../../shared/lib/errors/constants");
|
||||
const _outputexportprefetchencoding = require("../../shared/lib/segment-cache/output-export-prefetch-encoding");
|
||||
const _approuterheaders = require("../../client/components/app-router-headers");
|
||||
const _cachebustingsearchparam = require("../../shared/lib/router/utils/cache-busting-search-param");
|
||||
function voidCatch() {
|
||||
// this catcher is designed to be used with pipeTo where we expect the underlying
|
||||
// pipe implementation to forward errors but we don't want the pipeTo promise to reject
|
||||
// and be unhandled
|
||||
}
|
||||
// We can share the same encoder instance everywhere
|
||||
// Notably we cannot do the same for TextDecoder because it is stateful
|
||||
// when handling streaming data
|
||||
const encoder = new TextEncoder();
|
||||
function chainStreams(...streams) {
|
||||
// If we have no streams, return an empty stream. This behavior is
|
||||
// intentional as we're now providing the `RenderResult.EMPTY` value.
|
||||
if (streams.length === 0) {
|
||||
return new ReadableStream({
|
||||
start (controller) {
|
||||
controller.close();
|
||||
}
|
||||
});
|
||||
}
|
||||
// If we only have 1 stream we fast path it by returning just this stream
|
||||
if (streams.length === 1) {
|
||||
return streams[0];
|
||||
}
|
||||
const { readable, writable } = new TransformStream();
|
||||
// We always initiate pipeTo immediately. We know we have at least 2 streams
|
||||
// so we need to avoid closing the writable when this one finishes.
|
||||
let promise = streams[0].pipeTo(writable, {
|
||||
preventClose: true
|
||||
});
|
||||
let i = 1;
|
||||
for(; i < streams.length - 1; i++){
|
||||
const nextStream = streams[i];
|
||||
promise = promise.then(()=>nextStream.pipeTo(writable, {
|
||||
preventClose: true
|
||||
}));
|
||||
}
|
||||
// We can omit the length check because we halted before the last stream and there
|
||||
// is at least two streams so the lastStream here will always be defined
|
||||
const lastStream = streams[i];
|
||||
promise = promise.then(()=>lastStream.pipeTo(writable));
|
||||
// Catch any errors from the streams and ignore them, they will be handled
|
||||
// by whatever is consuming the readable stream.
|
||||
promise.catch(voidCatch);
|
||||
return readable;
|
||||
}
|
||||
function streamFromString(str) {
|
||||
return new ReadableStream({
|
||||
start (controller) {
|
||||
controller.enqueue(encoder.encode(str));
|
||||
controller.close();
|
||||
}
|
||||
});
|
||||
}
|
||||
function streamFromBuffer(chunk) {
|
||||
return new ReadableStream({
|
||||
start (controller) {
|
||||
controller.enqueue(chunk);
|
||||
controller.close();
|
||||
}
|
||||
});
|
||||
}
|
||||
async function streamToChunks(stream) {
|
||||
const reader = stream.getReader();
|
||||
const chunks = [];
|
||||
while(true){
|
||||
const { done, value } = await reader.read();
|
||||
if (done) {
|
||||
break;
|
||||
}
|
||||
chunks.push(value);
|
||||
}
|
||||
return chunks;
|
||||
}
|
||||
function concatUint8Arrays(chunks) {
|
||||
const totalLength = chunks.reduce((sum, chunk)=>sum + chunk.length, 0);
|
||||
const result = new Uint8Array(totalLength);
|
||||
let offset = 0;
|
||||
for (const chunk of chunks){
|
||||
result.set(chunk, offset);
|
||||
offset += chunk.length;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
async function streamToUint8Array(stream) {
|
||||
return concatUint8Arrays(await streamToChunks(stream));
|
||||
}
|
||||
async function streamToBuffer(stream) {
|
||||
return Buffer.concat(await streamToChunks(stream));
|
||||
}
|
||||
async function streamToString(stream, signal) {
|
||||
const decoder = new TextDecoder('utf-8', {
|
||||
fatal: true
|
||||
});
|
||||
let string = '';
|
||||
for await (const chunk of stream){
|
||||
if (signal == null ? void 0 : signal.aborted) {
|
||||
return string;
|
||||
}
|
||||
string += decoder.decode(chunk, {
|
||||
stream: true
|
||||
});
|
||||
}
|
||||
string += decoder.decode();
|
||||
return string;
|
||||
}
|
||||
function createBufferedTransformStream(options = {}) {
|
||||
const { maxBufferByteLength = Infinity } = options;
|
||||
let bufferedChunks = [];
|
||||
let bufferByteLength = 0;
|
||||
let pending;
|
||||
const flush = (controller)=>{
|
||||
try {
|
||||
if (bufferedChunks.length === 0) {
|
||||
return;
|
||||
}
|
||||
const chunk = new Uint8Array(bufferByteLength);
|
||||
let copiedBytes = 0;
|
||||
for(let i = 0; i < bufferedChunks.length; i++){
|
||||
const bufferedChunk = bufferedChunks[i];
|
||||
chunk.set(bufferedChunk, copiedBytes);
|
||||
copiedBytes += bufferedChunk.byteLength;
|
||||
}
|
||||
// We just wrote all the buffered chunks so we need to reset the bufferedChunks array
|
||||
// and our bufferByteLength to prepare for the next round of buffered chunks
|
||||
bufferedChunks.length = 0;
|
||||
bufferByteLength = 0;
|
||||
controller.enqueue(chunk);
|
||||
} catch {
|
||||
// If an error occurs while enqueuing, it can't be due to this
|
||||
// transformer. It's most likely caused by the controller having been
|
||||
// errored (for example, if the stream was cancelled).
|
||||
}
|
||||
};
|
||||
const scheduleFlush = (controller)=>{
|
||||
if (pending) {
|
||||
return;
|
||||
}
|
||||
const detached = new _detachedpromise.DetachedPromise();
|
||||
pending = detached;
|
||||
(0, _scheduler.scheduleImmediate)(()=>{
|
||||
try {
|
||||
flush(controller);
|
||||
} finally{
|
||||
pending = undefined;
|
||||
detached.resolve();
|
||||
}
|
||||
});
|
||||
};
|
||||
return new TransformStream({
|
||||
transform (chunk, controller) {
|
||||
// Combine the previous buffer with the new chunk.
|
||||
bufferedChunks.push(chunk);
|
||||
bufferByteLength += chunk.byteLength;
|
||||
if (bufferByteLength >= maxBufferByteLength) {
|
||||
flush(controller);
|
||||
} else {
|
||||
scheduleFlush(controller);
|
||||
}
|
||||
},
|
||||
flush () {
|
||||
return pending == null ? void 0 : pending.promise;
|
||||
}
|
||||
});
|
||||
}
|
||||
function createPrefetchCommentStream(isBuildTimePrerendering, buildId) {
|
||||
// Insert an extra comment at the beginning of the HTML document. This must
|
||||
// come after the DOCTYPE, which is inserted by React.
|
||||
//
|
||||
// The first chunk sent by React will contain the doctype. After that, we can
|
||||
// pass through the rest of the chunks as-is.
|
||||
let didTransformFirstChunk = false;
|
||||
return new TransformStream({
|
||||
transform (chunk, controller) {
|
||||
if (isBuildTimePrerendering && !didTransformFirstChunk) {
|
||||
didTransformFirstChunk = true;
|
||||
const decoder = new TextDecoder('utf-8', {
|
||||
fatal: true
|
||||
});
|
||||
const chunkStr = decoder.decode(chunk, {
|
||||
stream: true
|
||||
});
|
||||
const updatedChunkStr = (0, _outputexportprefetchencoding.insertBuildIdComment)(chunkStr, buildId);
|
||||
controller.enqueue(encoder.encode(updatedChunkStr));
|
||||
return;
|
||||
}
|
||||
controller.enqueue(chunk);
|
||||
}
|
||||
});
|
||||
}
|
||||
function renderToInitialFizzStream({ ReactDOMServer, element, streamOptions }) {
|
||||
return (0, _tracer.getTracer)().trace(_constants.AppRenderSpan.renderToReadableStream, async ()=>ReactDOMServer.renderToReadableStream(element, streamOptions));
|
||||
}
|
||||
function createMetadataTransformStream(insert) {
|
||||
let chunkIndex = -1;
|
||||
let isMarkRemoved = false;
|
||||
return new TransformStream({
|
||||
async transform (chunk, controller) {
|
||||
let iconMarkIndex = -1;
|
||||
let closedHeadIndex = -1;
|
||||
chunkIndex++;
|
||||
if (isMarkRemoved) {
|
||||
controller.enqueue(chunk);
|
||||
return;
|
||||
}
|
||||
let iconMarkLength = 0;
|
||||
// Only search for the closed head tag once
|
||||
if (iconMarkIndex === -1) {
|
||||
iconMarkIndex = (0, _uint8arrayhelpers.indexOfUint8Array)(chunk, _encodedtags.ENCODED_TAGS.META.ICON_MARK);
|
||||
if (iconMarkIndex === -1) {
|
||||
controller.enqueue(chunk);
|
||||
return;
|
||||
} else {
|
||||
// When we found the `<meta name="«nxt-icon»"` tag prefix, we will remove it from the chunk.
|
||||
// Its close tag could either be `/>` or `>`, checking the next char to ensure we cover both cases.
|
||||
iconMarkLength = _encodedtags.ENCODED_TAGS.META.ICON_MARK.length;
|
||||
// Check if next char is /, this is for xml mode.
|
||||
if (chunk[iconMarkIndex + iconMarkLength] === 47) {
|
||||
iconMarkLength += 2;
|
||||
} else {
|
||||
// The last char is `>`
|
||||
iconMarkLength++;
|
||||
}
|
||||
}
|
||||
}
|
||||
// Check if icon mark is inside <head> tag in the first chunk.
|
||||
if (chunkIndex === 0) {
|
||||
closedHeadIndex = (0, _uint8arrayhelpers.indexOfUint8Array)(chunk, _encodedtags.ENCODED_TAGS.CLOSED.HEAD);
|
||||
if (iconMarkIndex !== -1) {
|
||||
// The mark icon is located in the 1st chunk before the head tag.
|
||||
// We do not need to insert the script tag in this case because it's in the head.
|
||||
// Just remove the icon mark from the chunk.
|
||||
if (iconMarkIndex < closedHeadIndex) {
|
||||
const replaced = new Uint8Array(chunk.length - iconMarkLength);
|
||||
// Remove the icon mark from the chunk.
|
||||
replaced.set(chunk.subarray(0, iconMarkIndex));
|
||||
replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex);
|
||||
chunk = replaced;
|
||||
} else {
|
||||
// The icon mark is after the head tag, replace and insert the script tag at that position.
|
||||
const insertion = await insert();
|
||||
const encodedInsertion = encoder.encode(insertion);
|
||||
const insertionLength = encodedInsertion.length;
|
||||
const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength);
|
||||
replaced.set(chunk.subarray(0, iconMarkIndex));
|
||||
replaced.set(encodedInsertion, iconMarkIndex);
|
||||
replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength);
|
||||
chunk = replaced;
|
||||
}
|
||||
isMarkRemoved = true;
|
||||
}
|
||||
// If there's no icon mark located, it will be handled later when if present in the following chunks.
|
||||
} else {
|
||||
// When it's appeared in the following chunks, we'll need to
|
||||
// remove the mark and then insert the script tag at that position.
|
||||
const insertion = await insert();
|
||||
const encodedInsertion = encoder.encode(insertion);
|
||||
const insertionLength = encodedInsertion.length;
|
||||
// Replace the icon mark with the hoist script or empty string.
|
||||
const replaced = new Uint8Array(chunk.length - iconMarkLength + insertionLength);
|
||||
// Set the first part of the chunk, before the icon mark.
|
||||
replaced.set(chunk.subarray(0, iconMarkIndex));
|
||||
// Set the insertion after the icon mark.
|
||||
replaced.set(encodedInsertion, iconMarkIndex);
|
||||
// Set the rest of the chunk after the icon mark.
|
||||
replaced.set(chunk.subarray(iconMarkIndex + iconMarkLength), iconMarkIndex + insertionLength);
|
||||
chunk = replaced;
|
||||
isMarkRemoved = true;
|
||||
}
|
||||
controller.enqueue(chunk);
|
||||
}
|
||||
});
|
||||
}
|
||||
function createHeadInsertionTransformStream(insert) {
|
||||
let inserted = false;
|
||||
// We need to track if this transform saw any bytes because if it didn't
|
||||
// we won't want to insert any server HTML at all
|
||||
let hasBytes = false;
|
||||
return new TransformStream({
|
||||
async transform (chunk, controller) {
|
||||
hasBytes = true;
|
||||
const insertion = await insert();
|
||||
if (inserted) {
|
||||
if (insertion) {
|
||||
const encodedInsertion = encoder.encode(insertion);
|
||||
controller.enqueue(encodedInsertion);
|
||||
}
|
||||
controller.enqueue(chunk);
|
||||
} else {
|
||||
// TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.
|
||||
const index = (0, _uint8arrayhelpers.indexOfUint8Array)(chunk, _encodedtags.ENCODED_TAGS.CLOSED.HEAD);
|
||||
// In fully static rendering or non PPR rendering cases:
|
||||
// `/head>` will always be found in the chunk in first chunk rendering.
|
||||
if (index !== -1) {
|
||||
if (insertion) {
|
||||
const encodedInsertion = encoder.encode(insertion);
|
||||
// Get the total count of the bytes in the chunk and the insertion
|
||||
// e.g.
|
||||
// chunk = <head><meta charset="utf-8"></head>
|
||||
// insertion = <script>...</script>
|
||||
// output = <head><meta charset="utf-8"> [ <script>...</script> ] </head>
|
||||
const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length);
|
||||
// Append the first part of the chunk, before the head tag
|
||||
insertedHeadContent.set(chunk.slice(0, index));
|
||||
// Append the server inserted content
|
||||
insertedHeadContent.set(encodedInsertion, index);
|
||||
// Append the rest of the chunk
|
||||
insertedHeadContent.set(chunk.slice(index), index + encodedInsertion.length);
|
||||
controller.enqueue(insertedHeadContent);
|
||||
} else {
|
||||
controller.enqueue(chunk);
|
||||
}
|
||||
inserted = true;
|
||||
} else {
|
||||
// This will happens in PPR rendering during next start, when the page is partially rendered.
|
||||
// When the page resumes, the head tag will be found in the middle of the chunk.
|
||||
// Where we just need to append the insertion and chunk to the current stream.
|
||||
// e.g.
|
||||
// PPR-static: <head>...</head><body> [ resume content ] </body>
|
||||
// PPR-resume: [ insertion ] [ rest content ]
|
||||
if (insertion) {
|
||||
controller.enqueue(encoder.encode(insertion));
|
||||
}
|
||||
controller.enqueue(chunk);
|
||||
inserted = true;
|
||||
}
|
||||
}
|
||||
},
|
||||
async flush (controller) {
|
||||
// Check before closing if there's anything remaining to insert.
|
||||
if (hasBytes) {
|
||||
const insertion = await insert();
|
||||
if (insertion) {
|
||||
controller.enqueue(encoder.encode(insertion));
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
function createClientResumeScriptInsertionTransformStream() {
|
||||
const segmentPath = '/_full';
|
||||
const cacheBustingHeader = (0, _cachebustingsearchparam.computeCacheBustingSearchParam)('1', '/_full', undefined, undefined // headers[NEXT_URL]
|
||||
);
|
||||
const searchStr = `${_approuterheaders.NEXT_RSC_UNION_QUERY}=${cacheBustingHeader}`;
|
||||
const NEXT_CLIENT_RESUME_SCRIPT = `<script>__NEXT_CLIENT_RESUME=fetch(location.pathname+'?${searchStr}',{credentials:'same-origin',headers:{'${_approuterheaders.RSC_HEADER}': '1','${_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER}': '1','${_approuterheaders.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER}': '${segmentPath}'}})</script>`;
|
||||
let didAlreadyInsert = false;
|
||||
return new TransformStream({
|
||||
transform (chunk, controller) {
|
||||
if (didAlreadyInsert) {
|
||||
// Already inserted the script into the head. Pass through.
|
||||
controller.enqueue(chunk);
|
||||
return;
|
||||
}
|
||||
// TODO (@Ethan-Arrowood): Replace the generic `indexOfUint8Array` method with something finely tuned for the subset of things actually being checked for.
|
||||
const headClosingTagIndex = (0, _uint8arrayhelpers.indexOfUint8Array)(chunk, _encodedtags.ENCODED_TAGS.CLOSED.HEAD);
|
||||
if (headClosingTagIndex === -1) {
|
||||
// In fully static rendering or non PPR rendering cases:
|
||||
// `/head>` will always be found in the chunk in first chunk rendering.
|
||||
controller.enqueue(chunk);
|
||||
return;
|
||||
}
|
||||
const encodedInsertion = encoder.encode(NEXT_CLIENT_RESUME_SCRIPT);
|
||||
// Get the total count of the bytes in the chunk and the insertion
|
||||
// e.g.
|
||||
// chunk = <head><meta charset="utf-8"></head>
|
||||
// insertion = <script>...</script>
|
||||
// output = <head><meta charset="utf-8"> [ <script>...</script> ] </head>
|
||||
const insertedHeadContent = new Uint8Array(chunk.length + encodedInsertion.length);
|
||||
// Append the first part of the chunk, before the head tag
|
||||
insertedHeadContent.set(chunk.slice(0, headClosingTagIndex));
|
||||
// Append the server inserted content
|
||||
insertedHeadContent.set(encodedInsertion, headClosingTagIndex);
|
||||
// Append the rest of the chunk
|
||||
insertedHeadContent.set(chunk.slice(headClosingTagIndex), headClosingTagIndex + encodedInsertion.length);
|
||||
controller.enqueue(insertedHeadContent);
|
||||
didAlreadyInsert = true;
|
||||
}
|
||||
});
|
||||
}
|
||||
// Suffix after main body content - scripts before </body>,
|
||||
// but wait for the major chunks to be enqueued.
|
||||
function createDeferredSuffixStream(suffix) {
|
||||
let flushed = false;
|
||||
let pending;
|
||||
const flush = (controller)=>{
|
||||
const detached = new _detachedpromise.DetachedPromise();
|
||||
pending = detached;
|
||||
(0, _scheduler.scheduleImmediate)(()=>{
|
||||
try {
|
||||
controller.enqueue(encoder.encode(suffix));
|
||||
} catch {
|
||||
// If an error occurs while enqueuing it can't be due to this
|
||||
// transformers fault. It's likely due to the controller being
|
||||
// errored due to the stream being cancelled.
|
||||
} finally{
|
||||
pending = undefined;
|
||||
detached.resolve();
|
||||
}
|
||||
});
|
||||
};
|
||||
return new TransformStream({
|
||||
transform (chunk, controller) {
|
||||
controller.enqueue(chunk);
|
||||
// If we've already flushed, we're done.
|
||||
if (flushed) return;
|
||||
// Schedule the flush to happen.
|
||||
flushed = true;
|
||||
flush(controller);
|
||||
},
|
||||
flush (controller) {
|
||||
if (pending) return pending.promise;
|
||||
if (flushed) return;
|
||||
// Flush now.
|
||||
controller.enqueue(encoder.encode(suffix));
|
||||
}
|
||||
});
|
||||
}
|
||||
function createFlightDataInjectionTransformStream(stream, delayDataUntilFirstHtmlChunk) {
|
||||
let htmlStreamFinished = false;
|
||||
let pull = null;
|
||||
let donePulling = false;
|
||||
function startOrContinuePulling(controller) {
|
||||
if (!pull) {
|
||||
pull = startPulling(controller);
|
||||
}
|
||||
return pull;
|
||||
}
|
||||
async function startPulling(controller) {
|
||||
const reader = stream.getReader();
|
||||
if (delayDataUntilFirstHtmlChunk) {
|
||||
// NOTE: streaming flush
|
||||
// We are buffering here for the inlined data stream because the
|
||||
// "shell" stream might be chunkenized again by the underlying stream
|
||||
// implementation, e.g. with a specific high-water mark. To ensure it's
|
||||
// the safe timing to pipe the data stream, this extra tick is
|
||||
// necessary.
|
||||
// We don't start reading until we've left the current Task to ensure
|
||||
// that it's inserted after flushing the shell. Note that this implementation
|
||||
// might get stale if impl details of Fizz change in the future.
|
||||
await (0, _scheduler.atLeastOneTask)();
|
||||
}
|
||||
try {
|
||||
while(true){
|
||||
const { done, value } = await reader.read();
|
||||
if (done) {
|
||||
donePulling = true;
|
||||
return;
|
||||
}
|
||||
// We want to prioritize HTML over RSC data.
|
||||
// The SSR render is based on the same RSC stream, so when we get a new RSC chunk,
|
||||
// we're likely to produce an HTML chunk as well, so give it a chance to flush first.
|
||||
if (!delayDataUntilFirstHtmlChunk && !htmlStreamFinished) {
|
||||
await (0, _scheduler.atLeastOneTask)();
|
||||
}
|
||||
controller.enqueue(value);
|
||||
}
|
||||
} catch (err) {
|
||||
controller.error(err);
|
||||
}
|
||||
}
|
||||
return new TransformStream({
|
||||
start (controller) {
|
||||
if (!delayDataUntilFirstHtmlChunk) {
|
||||
startOrContinuePulling(controller);
|
||||
}
|
||||
},
|
||||
transform (chunk, controller) {
|
||||
controller.enqueue(chunk);
|
||||
// Start the streaming if it hasn't already been started yet.
|
||||
if (delayDataUntilFirstHtmlChunk) {
|
||||
startOrContinuePulling(controller);
|
||||
}
|
||||
},
|
||||
flush (controller) {
|
||||
htmlStreamFinished = true;
|
||||
if (donePulling) {
|
||||
return;
|
||||
}
|
||||
return startOrContinuePulling(controller);
|
||||
}
|
||||
});
|
||||
}
|
||||
const CLOSE_TAG = '</body></html>';
|
||||
/**
|
||||
* This transform stream moves the suffix to the end of the stream, so results
|
||||
* like `</body></html><script>...</script>` will be transformed to
|
||||
* `<script>...</script></body></html>`.
|
||||
*/ function createMoveSuffixStream() {
|
||||
let foundSuffix = false;
|
||||
return new TransformStream({
|
||||
transform (chunk, controller) {
|
||||
if (foundSuffix) {
|
||||
return controller.enqueue(chunk);
|
||||
}
|
||||
const index = (0, _uint8arrayhelpers.indexOfUint8Array)(chunk, _encodedtags.ENCODED_TAGS.CLOSED.BODY_AND_HTML);
|
||||
if (index > -1) {
|
||||
foundSuffix = true;
|
||||
// If the whole chunk is the suffix, then don't write anything, it will
|
||||
// be written in the flush.
|
||||
if (chunk.length === _encodedtags.ENCODED_TAGS.CLOSED.BODY_AND_HTML.length) {
|
||||
return;
|
||||
}
|
||||
// Write out the part before the suffix.
|
||||
const before = chunk.slice(0, index);
|
||||
controller.enqueue(before);
|
||||
// In the case where the suffix is in the middle of the chunk, we need
|
||||
// to split the chunk into two parts.
|
||||
if (chunk.length > _encodedtags.ENCODED_TAGS.CLOSED.BODY_AND_HTML.length + index) {
|
||||
// Write out the part after the suffix.
|
||||
const after = chunk.slice(index + _encodedtags.ENCODED_TAGS.CLOSED.BODY_AND_HTML.length);
|
||||
controller.enqueue(after);
|
||||
}
|
||||
} else {
|
||||
controller.enqueue(chunk);
|
||||
}
|
||||
},
|
||||
flush (controller) {
|
||||
// Even if we didn't find the suffix, the HTML is not valid if we don't
|
||||
// add it, so insert it at the end.
|
||||
controller.enqueue(_encodedtags.ENCODED_TAGS.CLOSED.BODY_AND_HTML);
|
||||
}
|
||||
});
|
||||
}
|
||||
function createStripDocumentClosingTagsTransform() {
|
||||
return new TransformStream({
|
||||
transform (chunk, controller) {
|
||||
// We rely on the assumption that chunks will never break across a code unit.
|
||||
// This is reasonable because we currently concat all of React's output from a single
|
||||
// flush into one chunk before streaming it forward which means the chunk will represent
|
||||
// a single coherent utf-8 string. This is not safe to use if we change our streaming to no
|
||||
// longer do this large buffered chunk
|
||||
if ((0, _uint8arrayhelpers.isEquivalentUint8Arrays)(chunk, _encodedtags.ENCODED_TAGS.CLOSED.BODY_AND_HTML) || (0, _uint8arrayhelpers.isEquivalentUint8Arrays)(chunk, _encodedtags.ENCODED_TAGS.CLOSED.BODY) || (0, _uint8arrayhelpers.isEquivalentUint8Arrays)(chunk, _encodedtags.ENCODED_TAGS.CLOSED.HTML)) {
|
||||
// the entire chunk is the closing tags; return without enqueueing anything.
|
||||
return;
|
||||
}
|
||||
// We assume these tags will go at together at the end of the document and that
|
||||
// they won't appear anywhere else in the document. This is not really a safe assumption
|
||||
// but until we revamp our streaming infra this is a performant way to string the tags
|
||||
chunk = (0, _uint8arrayhelpers.removeFromUint8Array)(chunk, _encodedtags.ENCODED_TAGS.CLOSED.BODY);
|
||||
chunk = (0, _uint8arrayhelpers.removeFromUint8Array)(chunk, _encodedtags.ENCODED_TAGS.CLOSED.HTML);
|
||||
controller.enqueue(chunk);
|
||||
}
|
||||
});
|
||||
}
|
||||
function createRootLayoutValidatorStream() {
|
||||
let foundHtml = false;
|
||||
let foundBody = false;
|
||||
return new TransformStream({
|
||||
async transform (chunk, controller) {
|
||||
// Peek into the streamed chunk to see if the tags are present.
|
||||
if (!foundHtml && (0, _uint8arrayhelpers.indexOfUint8Array)(chunk, _encodedtags.ENCODED_TAGS.OPENING.HTML) > -1) {
|
||||
foundHtml = true;
|
||||
}
|
||||
if (!foundBody && (0, _uint8arrayhelpers.indexOfUint8Array)(chunk, _encodedtags.ENCODED_TAGS.OPENING.BODY) > -1) {
|
||||
foundBody = true;
|
||||
}
|
||||
controller.enqueue(chunk);
|
||||
},
|
||||
flush (controller) {
|
||||
const missingTags = [];
|
||||
if (!foundHtml) missingTags.push('html');
|
||||
if (!foundBody) missingTags.push('body');
|
||||
if (!missingTags.length) return;
|
||||
controller.enqueue(encoder.encode(`<html id="__next_error__">
|
||||
<template
|
||||
data-next-error-message="Missing ${missingTags.map((c)=>`<${c}>`).join(missingTags.length > 1 ? ' and ' : '')} tags in the root layout.\nRead more at https://nextjs.org/docs/messages/missing-root-layout-tags"
|
||||
data-next-error-digest="${_constants1.MISSING_ROOT_TAGS_ERROR}"
|
||||
data-next-error-stack=""
|
||||
></template>
|
||||
`));
|
||||
}
|
||||
});
|
||||
}
|
||||
function chainTransformers(readable, transformers) {
|
||||
let stream = readable;
|
||||
for (const transformer of transformers){
|
||||
if (!transformer) continue;
|
||||
stream = stream.pipeThrough(transformer);
|
||||
}
|
||||
return stream;
|
||||
}
|
||||
async function continueFizzStream(renderStream, { suffix, inlinedDataStream, isStaticGeneration, isBuildTimePrerendering, buildId, getServerInsertedHTML, getServerInsertedMetadata, validateRootLayout }) {
|
||||
// Suffix itself might contain close tags at the end, so we need to split it.
|
||||
const suffixUnclosed = suffix ? suffix.split(CLOSE_TAG, 1)[0] : null;
|
||||
if (isStaticGeneration) {
|
||||
// If we're generating static HTML we need to wait for it to resolve before continuing.
|
||||
await renderStream.allReady;
|
||||
} else {
|
||||
// Otherwise, we want to make sure Fizz is done with all microtasky work
|
||||
// before we start pulling the stream and cause a flush.
|
||||
await (0, _scheduler.waitAtLeastOneReactRenderTask)();
|
||||
}
|
||||
return chainTransformers(renderStream, [
|
||||
// Buffer everything to avoid flushing too frequently
|
||||
createBufferedTransformStream(),
|
||||
// Add build id comment to start of the HTML document (in export mode)
|
||||
createPrefetchCommentStream(isBuildTimePrerendering, buildId),
|
||||
// Transform metadata
|
||||
createMetadataTransformStream(getServerInsertedMetadata),
|
||||
// Insert suffix content
|
||||
suffixUnclosed != null && suffixUnclosed.length > 0 ? createDeferredSuffixStream(suffixUnclosed) : null,
|
||||
// Insert the inlined data (Flight data, form state, etc.) stream into the HTML
|
||||
inlinedDataStream ? createFlightDataInjectionTransformStream(inlinedDataStream, true) : null,
|
||||
// Validate the root layout for missing html or body tags
|
||||
validateRootLayout ? createRootLayoutValidatorStream() : null,
|
||||
// Close tags should always be deferred to the end
|
||||
createMoveSuffixStream(),
|
||||
// Special head insertions
|
||||
// TODO-APP: Insert server side html to end of head in app layout rendering, to avoid
|
||||
// hydration errors. Remove this once it's ready to be handled by react itself.
|
||||
createHeadInsertionTransformStream(getServerInsertedHTML)
|
||||
]);
|
||||
}
|
||||
async function continueDynamicPrerender(prerenderStream, { getServerInsertedHTML, getServerInsertedMetadata }) {
|
||||
return prerenderStream// Buffer everything to avoid flushing too frequently
|
||||
.pipeThrough(createBufferedTransformStream()).pipeThrough(createStripDocumentClosingTagsTransform())// Insert generated tags to head
|
||||
.pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))// Transform metadata
|
||||
.pipeThrough(createMetadataTransformStream(getServerInsertedMetadata));
|
||||
}
|
||||
async function continueStaticPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, isBuildTimePrerendering, buildId }) {
|
||||
return prerenderStream// Buffer everything to avoid flushing too frequently
|
||||
.pipeThrough(createBufferedTransformStream())// Add build id comment to start of the HTML document (in export mode)
|
||||
.pipeThrough(createPrefetchCommentStream(isBuildTimePrerendering, buildId))// Insert generated tags to head
|
||||
.pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))// Transform metadata
|
||||
.pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))// Insert the inlined data (Flight data, form state, etc.) stream into the HTML
|
||||
.pipeThrough(createFlightDataInjectionTransformStream(inlinedDataStream, true))// Close tags should always be deferred to the end
|
||||
.pipeThrough(createMoveSuffixStream());
|
||||
}
|
||||
async function continueStaticFallbackPrerender(prerenderStream, { inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata, isBuildTimePrerendering, buildId }) {
|
||||
// Same as `continueStaticPrerender`, but also inserts an additional script
|
||||
// to instruct the client to start fetching the hydration data as early
|
||||
// as possible.
|
||||
return prerenderStream// Buffer everything to avoid flushing too frequently
|
||||
.pipeThrough(createBufferedTransformStream())// Add build id comment to start of the HTML document (in export mode)
|
||||
.pipeThrough(createPrefetchCommentStream(isBuildTimePrerendering, buildId))// Insert generated tags to head
|
||||
.pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))// Insert the client resume script into the head
|
||||
.pipeThrough(createClientResumeScriptInsertionTransformStream())// Transform metadata
|
||||
.pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))// Insert the inlined data (Flight data, form state, etc.) stream into the HTML
|
||||
.pipeThrough(createFlightDataInjectionTransformStream(inlinedDataStream, true))// Close tags should always be deferred to the end
|
||||
.pipeThrough(createMoveSuffixStream());
|
||||
}
|
||||
async function continueDynamicHTMLResume(renderStream, { delayDataUntilFirstHtmlChunk, inlinedDataStream, getServerInsertedHTML, getServerInsertedMetadata }) {
|
||||
return renderStream// Buffer everything to avoid flushing too frequently
|
||||
.pipeThrough(createBufferedTransformStream())// Insert generated tags to head
|
||||
.pipeThrough(createHeadInsertionTransformStream(getServerInsertedHTML))// Transform metadata
|
||||
.pipeThrough(createMetadataTransformStream(getServerInsertedMetadata))// Insert the inlined data (Flight data, form state, etc.) stream into the HTML
|
||||
.pipeThrough(createFlightDataInjectionTransformStream(inlinedDataStream, delayDataUntilFirstHtmlChunk))// Close tags should always be deferred to the end
|
||||
.pipeThrough(createMoveSuffixStream());
|
||||
}
|
||||
function createDocumentClosingStream() {
|
||||
return streamFromString(CLOSE_TAG);
|
||||
}
|
||||
|
||||
//# sourceMappingURL=node-web-streams-helper.js.map
|
||||
1
apps/public-web/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js.map
generated
vendored
Normal file
1
apps/public-web/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
16
apps/public-web/node_modules/next/dist/server/stream-utils/uint8array-helpers.d.ts
generated
vendored
Normal file
16
apps/public-web/node_modules/next/dist/server/stream-utils/uint8array-helpers.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Find the starting index of Uint8Array `b` within Uint8Array `a`.
|
||||
*/
|
||||
export declare function indexOfUint8Array(a: Uint8Array, b: Uint8Array): number;
|
||||
/**
|
||||
* Check if two Uint8Arrays are strictly equivalent.
|
||||
*/
|
||||
export declare function isEquivalentUint8Arrays(a: Uint8Array, b: Uint8Array): boolean;
|
||||
/**
|
||||
* Remove Uint8Array `b` from Uint8Array `a`.
|
||||
*
|
||||
* If `b` is not in `a`, `a` is returned unchanged.
|
||||
*
|
||||
* Otherwise, the function returns a new Uint8Array instance with size `a.length - b.length`
|
||||
*/
|
||||
export declare function removeFromUint8Array(a: Uint8Array, b: Uint8Array): Uint8Array<ArrayBufferLike>;
|
||||
69
apps/public-web/node_modules/next/dist/server/stream-utils/uint8array-helpers.js
generated
vendored
Normal file
69
apps/public-web/node_modules/next/dist/server/stream-utils/uint8array-helpers.js
generated
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
/**
|
||||
* Find the starting index of Uint8Array `b` within Uint8Array `a`.
|
||||
*/ "use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
0 && (module.exports = {
|
||||
indexOfUint8Array: null,
|
||||
isEquivalentUint8Arrays: null,
|
||||
removeFromUint8Array: null
|
||||
});
|
||||
function _export(target, all) {
|
||||
for(var name in all)Object.defineProperty(target, name, {
|
||||
enumerable: true,
|
||||
get: all[name]
|
||||
});
|
||||
}
|
||||
_export(exports, {
|
||||
indexOfUint8Array: function() {
|
||||
return indexOfUint8Array;
|
||||
},
|
||||
isEquivalentUint8Arrays: function() {
|
||||
return isEquivalentUint8Arrays;
|
||||
},
|
||||
removeFromUint8Array: function() {
|
||||
return removeFromUint8Array;
|
||||
}
|
||||
});
|
||||
function indexOfUint8Array(a, b) {
|
||||
if (b.length === 0) return 0;
|
||||
if (a.length === 0 || b.length > a.length) return -1;
|
||||
// start iterating through `a`
|
||||
for(let i = 0; i <= a.length - b.length; i++){
|
||||
let completeMatch = true;
|
||||
// from index `i`, iterate through `b` and check for mismatch
|
||||
for(let j = 0; j < b.length; j++){
|
||||
// if the values do not match, then this isn't a complete match, exit `b` iteration early and iterate to next index of `a`.
|
||||
if (a[i + j] !== b[j]) {
|
||||
completeMatch = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (completeMatch) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
function isEquivalentUint8Arrays(a, b) {
|
||||
if (a.length !== b.length) return false;
|
||||
for(let i = 0; i < a.length; i++){
|
||||
if (a[i] !== b[i]) return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function removeFromUint8Array(a, b) {
|
||||
const tagIndex = indexOfUint8Array(a, b);
|
||||
if (tagIndex === 0) return a.subarray(b.length);
|
||||
if (tagIndex > -1) {
|
||||
const removed = new Uint8Array(a.length - b.length);
|
||||
removed.set(a.slice(0, tagIndex));
|
||||
removed.set(a.slice(tagIndex + b.length), tagIndex);
|
||||
return removed;
|
||||
} else {
|
||||
return a;
|
||||
}
|
||||
}
|
||||
|
||||
//# sourceMappingURL=uint8array-helpers.js.map
|
||||
1
apps/public-web/node_modules/next/dist/server/stream-utils/uint8array-helpers.js.map
generated
vendored
Normal file
1
apps/public-web/node_modules/next/dist/server/stream-utils/uint8array-helpers.js.map
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["../../../src/server/stream-utils/uint8array-helpers.ts"],"sourcesContent":["/**\n * Find the starting index of Uint8Array `b` within Uint8Array `a`.\n */\nexport function indexOfUint8Array(a: Uint8Array, b: Uint8Array) {\n if (b.length === 0) return 0\n if (a.length === 0 || b.length > a.length) return -1\n\n // start iterating through `a`\n for (let i = 0; i <= a.length - b.length; i++) {\n let completeMatch = true\n // from index `i`, iterate through `b` and check for mismatch\n for (let j = 0; j < b.length; j++) {\n // if the values do not match, then this isn't a complete match, exit `b` iteration early and iterate to next index of `a`.\n if (a[i + j] !== b[j]) {\n completeMatch = false\n break\n }\n }\n\n if (completeMatch) {\n return i\n }\n }\n\n return -1\n}\n\n/**\n * Check if two Uint8Arrays are strictly equivalent.\n */\nexport function isEquivalentUint8Arrays(a: Uint8Array, b: Uint8Array) {\n if (a.length !== b.length) return false\n\n for (let i = 0; i < a.length; i++) {\n if (a[i] !== b[i]) return false\n }\n\n return true\n}\n\n/**\n * Remove Uint8Array `b` from Uint8Array `a`.\n *\n * If `b` is not in `a`, `a` is returned unchanged.\n *\n * Otherwise, the function returns a new Uint8Array instance with size `a.length - b.length`\n */\nexport function removeFromUint8Array(a: Uint8Array, b: Uint8Array) {\n const tagIndex = indexOfUint8Array(a, b)\n if (tagIndex === 0) return a.subarray(b.length)\n if (tagIndex > -1) {\n const removed = new Uint8Array(a.length - b.length)\n removed.set(a.slice(0, tagIndex))\n removed.set(a.slice(tagIndex + b.length), tagIndex)\n return removed\n } else {\n return a\n }\n}\n"],"names":["indexOfUint8Array","isEquivalentUint8Arrays","removeFromUint8Array","a","b","length","i","completeMatch","j","tagIndex","subarray","removed","Uint8Array","set","slice"],"mappings":"AAAA;;CAEC;;;;;;;;;;;;;;;;IACeA,iBAAiB;eAAjBA;;IA2BAC,uBAAuB;eAAvBA;;IAiBAC,oBAAoB;eAApBA;;;AA5CT,SAASF,kBAAkBG,CAAa,EAAEC,CAAa;IAC5D,IAAIA,EAAEC,MAAM,KAAK,GAAG,OAAO;IAC3B,IAAIF,EAAEE,MAAM,KAAK,KAAKD,EAAEC,MAAM,GAAGF,EAAEE,MAAM,EAAE,OAAO,CAAC;IAEnD,8BAA8B;IAC9B,IAAK,IAAIC,IAAI,GAAGA,KAAKH,EAAEE,MAAM,GAAGD,EAAEC,MAAM,EAAEC,IAAK;QAC7C,IAAIC,gBAAgB;QACpB,6DAA6D;QAC7D,IAAK,IAAIC,IAAI,GAAGA,IAAIJ,EAAEC,MAAM,EAAEG,IAAK;YACjC,2HAA2H;YAC3H,IAAIL,CAAC,CAACG,IAAIE,EAAE,KAAKJ,CAAC,CAACI,EAAE,EAAE;gBACrBD,gBAAgB;gBAChB;YACF;QACF;QAEA,IAAIA,eAAe;YACjB,OAAOD;QACT;IACF;IAEA,OAAO,CAAC;AACV;AAKO,SAASL,wBAAwBE,CAAa,EAAEC,CAAa;IAClE,IAAID,EAAEE,MAAM,KAAKD,EAAEC,MAAM,EAAE,OAAO;IAElC,IAAK,IAAIC,IAAI,GAAGA,IAAIH,EAAEE,MAAM,EAAEC,IAAK;QACjC,IAAIH,CAAC,CAACG,EAAE,KAAKF,CAAC,CAACE,EAAE,EAAE,OAAO;IAC5B;IAEA,OAAO;AACT;AASO,SAASJ,qBAAqBC,CAAa,EAAEC,CAAa;IAC/D,MAAMK,WAAWT,kBAAkBG,GAAGC;IACtC,IAAIK,aAAa,GAAG,OAAON,EAAEO,QAAQ,CAACN,EAAEC,MAAM;IAC9C,IAAII,WAAW,CAAC,GAAG;QACjB,MAAME,UAAU,IAAIC,WAAWT,EAAEE,MAAM,GAAGD,EAAEC,MAAM;QAClDM,QAAQE,GAAG,CAACV,EAAEW,KAAK,CAAC,GAAGL;QACvBE,QAAQE,GAAG,CAACV,EAAEW,KAAK,CAACL,WAAWL,EAAEC,MAAM,GAAGI;QAC1C,OAAOE;IACT,OAAO;QACL,OAAOR;IACT;AACF","ignoreList":[0]}
|
||||
Reference in New Issue
Block a user