Skip to content

Ensure use id works #411

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

Merged
merged 2 commits into from
Jan 12, 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
3 changes: 2 additions & 1 deletion .changeset/friendly-numbers-hang.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
'preact-render-to-string': patch
---

Fix issue where subtree re-render for Suspense boundaries caused a circular reference in the VNode's parent
Ensure that the `_parent` is kept around across multiple suspensions and avoid circular references.
In doing so our `useId` hook should always output unique ids during renderingToString.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,6 @@ function _renderToString(
return EMPTY_STR;
} finally {
if (afterDiff) afterDiff(vnode);
vnode[PARENT] = null;

if (ummountHook) ummountHook(vnode);
}
Expand Down Expand Up @@ -473,7 +472,6 @@ function _renderToString(

if (afterDiff) afterDiff(vnode);
// when we are dealing with suspense we can't do this...
vnode[PARENT] = null;

if (options.unmount) options.unmount(vnode);

Expand Down Expand Up @@ -688,9 +686,6 @@ function _renderToString(

if (afterDiff) afterDiff(vnode);

// TODO: this was commented before
vnode[PARENT] = null;

if (ummountHook) ummountHook(vnode);

// Emit self-closing tag for empty void elements:
Expand Down
43 changes: 42 additions & 1 deletion test/compat/render-chunked.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,48 @@ describe('renderToChunks', () => {
'<div><p>id: P0-0</p><!--preact-island:24-->loading...<!--/preact-island:24--></div>',
'<div hidden>',
createInitScript(1),
createSubtree('24', '<p>id: P0-0</p>'),
createSubtree('24', '<p>id: P0-1</p>'),
'</div>'
]);
});

it('should support using multiple useId hooks inside multiple suspense boundaries', async () => {
const { Suspender, suspended } = createSuspender();
const { Suspender: Suspender2, suspended: suspended2 } = createSuspender();

function ComponentWithId() {
const id = useId();
return <p>id: {id}</p>;
}

const result = [];
const promise = renderToChunks(
<div>
<ComponentWithId />
<Suspense fallback="loading...">
<Suspender>
<ComponentWithId />
</Suspender>
</Suspense>
<Suspense fallback="loading...">
<Suspender2>
<ComponentWithId />
</Suspender2>
</Suspense>
</div>,
{ onWrite: (s) => result.push(s) }
);

suspended.resolve();
suspended2.resolve();
await promise;

expect(result).to.deep.equal([
'<div><p>id: P0-0</p><!--preact-island:33-->loading...<!--/preact-island:33--><!--preact-island:36-->loading...<!--/preact-island:36--></div>',
'<div hidden>',
createInitScript(1),
createSubtree('33', '<p>id: P0-1</p>'),
createSubtree('36', '<p>id: P0-2</p>'),
'</div>'
]);
});
Expand Down
4 changes: 2 additions & 2 deletions test/compat/stream-node.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ describe('renderToPipeableStream', () => {
const result = await sink.promise;

expect(result).to.deep.equal([
'<div><!--preact-island:33-->loading...<!--/preact-island:33--></div>',
'<div><!--preact-island:47-->loading...<!--/preact-island:47--></div>',
'<div hidden>',
createInitScript(),
createSubtree('33', '<p>it works</p>'),
createSubtree('47', '<p>it works</p>'),
'</div>'
]);
});
Expand Down
4 changes: 2 additions & 2 deletions test/compat/stream.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ describe('renderToReadableStream', () => {
const result = await sink.promise;

expect(result).to.deep.equal([
'<div><!--preact-island:40-->loading...<!--/preact-island:40--></div>',
'<div><!--preact-island:54-->loading...<!--/preact-island:54--></div>',
'<div hidden>',
createInitScript(),
createSubtree('40', '<p>it works</p>'),
createSubtree('54', '<p>it works</p>'),
'</div>'
]);
});
Expand Down
Loading