-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
replace transformPage with transformPageChunk #5657
Conversation
🦋 Changeset detectedLatest commit: 193a3a4 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
It looks like all the examples are buffering the whole page before dealing with it, so I wonder if we can't have a |
One of the examples (the AMP one) is buffering the whole page. The other one ( Having both APIs would be a mistake. Even if APIs were free, people would choose |
documentation/docs/06-hooks.md
Outdated
@@ -67,15 +67,15 @@ You can add call multiple `handle` functions with [the `sequence` helper functio | |||
`resolve` also supports a second, optional parameter that gives you more control over how the response will be rendered. That parameter is an object that can have the following fields: | |||
|
|||
- `ssr: boolean` (default `true`) — if `false`, renders an empty 'shell' page instead of server-side rendering | |||
- `transformPage(opts: { html: string }): string` — applies custom transforms to HTML | |||
- `transformPageChunk(opts: { html: string, done: boolean }): string` — applies custom transforms to HTML. If `done` is true, it's the final chunk |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if there's anything we should say here, but I'm not that familiar with how the chunking happens. Does it match a single write to the stream? Or is it split up so that each chunk is less than the TCP window size or something? E.g. I'm wondering if there's any risk that the .replace('old', 'new')
example doesn't work because "ol" is one chunk and "d" in the next chunk
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I addressed that above:
Chunks are not guaranteed to be well-formed HTML (they might include the opening tag of an element but not its closing tag, for example) but nor are they arbitrary — they will always be split at sensible boundaries (like
%sveltekit.[property]%
or before the contents of a layout or page component)
I figured there wasn't much point going into detail in the docs until we actually start streaming responses
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess I should read PR descriptions 😄 Still, it might be worth including here so that people write their code correctly from the beginning and so that we don't break their applications when we do start streaming
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
added some detail
…cing 'transformPage' with 'transformPageChunk' as mentioned on 'sveltejs/kit#5657'
Closes #4910.
This replaces the
transformPage
API withtransformPageChunk
, so that we can respond in a streaming fashion in future. We're not yet taking advantage of that ability, but updating the API is the first step.Previously,
transformPage
took the entire HTML document:Now, it takes a chunk of HTML plus a
done
boolean. Chunks are not guaranteed to be well-formed HTML (they might include the opening tag of an element but not its closing tag, for example) but nor are they arbitrary — they will always be split at sensible boundaries (like%sveltekit.[property]%
or before the contents of a layout or page component). Because of that, many transforms will work identically:In some cases, it's necessary to operate on the entire document in one go — for example, to validate and transform an AMP document. In these situations it's easy to buffer the HTML and return the transformed document at the end:
Right now,
done
will always be true (i.e. there'll only be one chunk, which is the entire document) but that will change in the near future.Please don't delete this checklist! Before submitting the PR, please make sure you do the following:
Tests
pnpm test
and lint the project withpnpm lint
andpnpm check
Changesets
pnpm changeset
and following the prompts. All changesets should bepatch
until SvelteKit 1.0