mirror of https://github.com/sveltejs/svelte
fix: more robust moving of each item nodes (#11254)
* move then link * fix: more robust moving of each item nodes * testpull/11236/head
parent
a8ca2a4904
commit
0ad0f04b0b
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: more robust moving of each item nodes
|
@ -0,0 +1,43 @@
|
|||||||
|
import { flushSync } from 'svelte';
|
||||||
|
import { ok, test } from '../../test';
|
||||||
|
|
||||||
|
let ascending = `
|
||||||
|
<button>reverse</button>
|
||||||
|
<p>1</p>
|
||||||
|
<p>(1)</p>
|
||||||
|
<p>2</p>
|
||||||
|
<p>(2)</p>
|
||||||
|
<p>3</p>
|
||||||
|
<p>(3)</p>
|
||||||
|
`;
|
||||||
|
|
||||||
|
let descending = `
|
||||||
|
<button>reverse</button>
|
||||||
|
<p>3</p>
|
||||||
|
<p>(3)</p>
|
||||||
|
<p>2</p>
|
||||||
|
<p>(2)</p>
|
||||||
|
<p>1</p>
|
||||||
|
<p>(1)</p>
|
||||||
|
`;
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
html: ascending,
|
||||||
|
|
||||||
|
async test({ assert, target }) {
|
||||||
|
const btn = target.querySelector('button');
|
||||||
|
ok(btn);
|
||||||
|
|
||||||
|
flushSync(() => btn.click());
|
||||||
|
assert.htmlEqual(target.innerHTML, descending);
|
||||||
|
|
||||||
|
flushSync(() => btn.click());
|
||||||
|
assert.htmlEqual(target.innerHTML, ascending);
|
||||||
|
|
||||||
|
flushSync(() => btn.click());
|
||||||
|
assert.htmlEqual(target.innerHTML, descending);
|
||||||
|
|
||||||
|
flushSync(() => btn.click());
|
||||||
|
assert.htmlEqual(target.innerHTML, ascending);
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,12 @@
|
|||||||
|
<script>
|
||||||
|
let array = $state([1, 2, 3]);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<button onclick={() => array.reverse()}>reverse</button>
|
||||||
|
|
||||||
|
{#each array as item (item)}
|
||||||
|
<p>{item}</p>
|
||||||
|
{#if true}
|
||||||
|
<p>({item})</p>
|
||||||
|
{/if}
|
||||||
|
{/each}
|
Loading…
Reference in new issue