mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
Close iterator after rendering is complete and no more chunks remain (#11210)
* Close iterator after rendering is complete and no more chunks remain * Wait for the first whole render before resolving
This commit is contained in:
parent
2e6d0d91a0
commit
66fc0283d3
4 changed files with 34 additions and 2 deletions
5
.changeset/purple-pianos-greet.md
Normal file
5
.changeset/purple-pianos-greet.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Close the iterator only after rendering is complete
|
|
@ -239,6 +239,11 @@ export async function renderToAsyncIterable(
|
|||
if (next !== null) {
|
||||
await next.promise;
|
||||
}
|
||||
// Buffer is empty so there's nothing to receive, wait for the next resolve.
|
||||
else if(!renderingComplete && !buffer.length) {
|
||||
next = promiseWithResolvers();
|
||||
await next.promise;
|
||||
}
|
||||
|
||||
// Only create a new promise if rendering is still ongoing. Otherwise
|
||||
// there will be a dangling promises that breaks tests (probably not an actual app)
|
||||
|
@ -270,8 +275,9 @@ export async function renderToAsyncIterable(
|
|||
buffer.length = 0;
|
||||
|
||||
const returnValue = {
|
||||
// The iterator is done if there are no chunks to return.
|
||||
done: length === 0,
|
||||
// The iterator is done when rendering has finished
|
||||
// and there are no more chunks to return.
|
||||
done: length === 0 && renderingComplete,
|
||||
value: mergedArray,
|
||||
};
|
||||
|
||||
|
@ -305,6 +311,8 @@ export async function renderToAsyncIterable(
|
|||
// will run.
|
||||
buffer.push(bytes);
|
||||
next?.resolve();
|
||||
} else if(buffer.length > 0) {
|
||||
next?.resolve();
|
||||
}
|
||||
},
|
||||
};
|
||||
|
|
12
packages/astro/test/fixtures/partials/src/pages/partials/nested-conditional.astro
vendored
Normal file
12
packages/astro/test/fixtures/partials/src/pages/partials/nested-conditional.astro
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
export const partial = true
|
||||
---
|
||||
|
||||
{
|
||||
true && (
|
||||
<>
|
||||
{true && <div id="true">test</div>}
|
||||
{false && <div>test</div>}
|
||||
</>
|
||||
)
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
import assert from 'node:assert/strict';
|
||||
import { after, before, describe, it } from 'node:test';
|
||||
import * as cheerio from 'cheerio';
|
||||
import { loadFixture } from './test-utils.js';
|
||||
|
||||
describe('Partials', () => {
|
||||
|
@ -28,6 +29,12 @@ describe('Partials', () => {
|
|||
const html = await fixture.fetch('/partials/item/').then((res) => res.text());
|
||||
assert.equal(html.startsWith('<li'), true);
|
||||
});
|
||||
|
||||
it('Nested conditionals render', async () => {
|
||||
const html = await fixture.fetch('/partials/nested-conditional/').then((res) => res.text());
|
||||
const $ = cheerio.load(html);
|
||||
assert.equal($('#true').text(), 'test');
|
||||
});
|
||||
});
|
||||
|
||||
describe('build', () => {
|
||||
|
|
Loading…
Add table
Reference in a new issue