mirror of https://github.com/sveltejs/svelte
fix: handle dynamic selects with falsy select values (#9471)
when options are added later, we need to ensure the select value still stays in sync fixes #9412pull/9431/head
parent
19f84ca730
commit
c1f6ee096d
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
'svelte': patch
|
||||||
|
---
|
||||||
|
|
||||||
|
fix: handle dynamic selects with falsy select values
|
@ -0,0 +1,27 @@
|
|||||||
|
import { ok, test } from '../../test';
|
||||||
|
|
||||||
|
export default test({
|
||||||
|
skip_if_ssr: 'permanent',
|
||||||
|
|
||||||
|
html: `
|
||||||
|
<p>selected: a</p>
|
||||||
|
|
||||||
|
<select>
|
||||||
|
<option disabled=''>x</option>
|
||||||
|
<option value="a">a</option>
|
||||||
|
<option value="b">b</option>
|
||||||
|
<option value="c">c</option>
|
||||||
|
</select>
|
||||||
|
`,
|
||||||
|
|
||||||
|
test({ assert, component, target }) {
|
||||||
|
assert.equal(component.selected, 'a');
|
||||||
|
const select = target.querySelector('select');
|
||||||
|
ok(select);
|
||||||
|
const options = [...target.querySelectorAll('option')];
|
||||||
|
|
||||||
|
// first enabled option should be selected
|
||||||
|
assert.equal(select.value, 'a');
|
||||||
|
assert.ok(options[1].selected);
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,12 @@
|
|||||||
|
<script>
|
||||||
|
export let selected;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<p>selected: {selected}</p>
|
||||||
|
|
||||||
|
<select bind:value={selected}>
|
||||||
|
<option disabled>x</option>
|
||||||
|
{#each ["a", "b", "c"] as val}
|
||||||
|
<option>{val}</option>
|
||||||
|
{/each}
|
||||||
|
</select>
|
@ -0,0 +1,112 @@
|
|||||||
|
import { ok, test } from '../../test';
|
||||||
|
|
||||||
|
// // same test as the previous one, but with a dynamic each block
|
||||||
|
export default test({
|
||||||
|
html: `
|
||||||
|
<p>selected: </p>
|
||||||
|
|
||||||
|
<select>
|
||||||
|
<option value="a">a</option>
|
||||||
|
<option value="b">b</option>
|
||||||
|
<option value="c">c</option>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<p>selected: </p>
|
||||||
|
`,
|
||||||
|
|
||||||
|
async test({ assert, component, target }) {
|
||||||
|
const select = target.querySelector('select');
|
||||||
|
ok(select);
|
||||||
|
|
||||||
|
const options = [...target.querySelectorAll('option')];
|
||||||
|
|
||||||
|
assert.equal(component.selected, null);
|
||||||
|
|
||||||
|
// no option should be selected since none of the options matches the bound value
|
||||||
|
assert.equal(select.value, '');
|
||||||
|
assert.equal(select.selectedIndex, -1);
|
||||||
|
assert.ok(!options[0].selected);
|
||||||
|
|
||||||
|
component.selected = 'a'; // first option should now be selected
|
||||||
|
assert.equal(select.value, 'a');
|
||||||
|
assert.ok(options[0].selected);
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`
|
||||||
|
<p>selected: a</p>
|
||||||
|
|
||||||
|
<select>
|
||||||
|
<option value="a">a</option>
|
||||||
|
<option value="b">b</option>
|
||||||
|
<option value="c">c</option>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<p>selected: a</p>
|
||||||
|
`
|
||||||
|
);
|
||||||
|
|
||||||
|
component.selected = 'd'; // doesn't match an option
|
||||||
|
|
||||||
|
// now no option should be selected again
|
||||||
|
assert.equal(select.value, '');
|
||||||
|
assert.equal(select.selectedIndex, -1);
|
||||||
|
assert.ok(!options[0].selected);
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`
|
||||||
|
<p>selected: d</p>
|
||||||
|
|
||||||
|
<select>
|
||||||
|
<option value="a">a</option>
|
||||||
|
<option value="b">b</option>
|
||||||
|
<option value="c">c</option>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<p>selected: d</p>
|
||||||
|
`
|
||||||
|
);
|
||||||
|
|
||||||
|
component.selected = 'b'; // second option should now be selected
|
||||||
|
assert.equal(select.value, 'b');
|
||||||
|
assert.ok(options[1].selected);
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`
|
||||||
|
<p>selected: b</p>
|
||||||
|
|
||||||
|
<select>
|
||||||
|
<option value="a">a</option>
|
||||||
|
<option value="b">b</option>
|
||||||
|
<option value="c">c</option>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<p>selected: b</p>
|
||||||
|
`
|
||||||
|
);
|
||||||
|
|
||||||
|
component.selected = undefined; // also doesn't match an option
|
||||||
|
|
||||||
|
// now no option should be selected again
|
||||||
|
assert.equal(select.value, '');
|
||||||
|
assert.equal(select.selectedIndex, -1);
|
||||||
|
assert.ok(!options[0].selected);
|
||||||
|
|
||||||
|
assert.htmlEqual(
|
||||||
|
target.innerHTML,
|
||||||
|
`
|
||||||
|
<p>selected: </p>
|
||||||
|
|
||||||
|
<select>
|
||||||
|
<option value="a">a</option>
|
||||||
|
<option value="b">b</option>
|
||||||
|
<option value="c">c</option>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<p>selected: </p>
|
||||||
|
`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
});
|
@ -0,0 +1,14 @@
|
|||||||
|
<script>
|
||||||
|
// set as null so no option will be selected by default
|
||||||
|
export let selected = null;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<p>selected: {selected}</p>
|
||||||
|
|
||||||
|
<select bind:value={selected}>
|
||||||
|
{#each ['a', 'b', 'c'] as letter}
|
||||||
|
<option>{letter}</option>
|
||||||
|
{/each}
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<p>selected: {selected}</p>
|
Loading…
Reference in new issue