mirror of https://github.com/sveltejs/svelte
bind to store values in simple cases - fixes #1997
parent
9f800fb914
commit
bcbe0a58b2
@ -0,0 +1,5 @@
|
||||
export default {
|
||||
error(assert, err) {
|
||||
assert.equal(err.message, `Cannot bind to a nested property of a store`);
|
||||
}
|
||||
};
|
@ -0,0 +1,8 @@
|
||||
<script>
|
||||
import { writable } from 'svelte/store';
|
||||
|
||||
export const user = writable({ name: 'world' });
|
||||
</script>
|
||||
|
||||
<input bind:value={$user.name}>
|
||||
<p>hello {$user.name}</p>
|
@ -0,0 +1,41 @@
|
||||
export default {
|
||||
html: `
|
||||
<input>
|
||||
<p>hello world</p>
|
||||
`,
|
||||
|
||||
ssrHtml: `
|
||||
<input value="world">
|
||||
<p>hello world</p>
|
||||
`,
|
||||
|
||||
async test({ assert, component, target, window }) {
|
||||
const input = target.querySelector('input');
|
||||
assert.equal(input.value, 'world');
|
||||
|
||||
const event = new window.Event('input');
|
||||
|
||||
const names = [];
|
||||
const unsubscribe = component.name.subscribe(name => {
|
||||
names.push(name);
|
||||
});
|
||||
|
||||
input.value = 'everybody';
|
||||
await input.dispatchEvent(event);
|
||||
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<input>
|
||||
<p>hello everybody</p>
|
||||
`);
|
||||
|
||||
await component.name.set('goodbye');
|
||||
assert.equal(input.value, 'goodbye');
|
||||
assert.htmlEqual(target.innerHTML, `
|
||||
<input>
|
||||
<p>hello goodbye</p>
|
||||
`);
|
||||
|
||||
assert.deepEqual(names, ['world', 'everybody', 'goodbye']);
|
||||
unsubscribe();
|
||||
},
|
||||
};
|
@ -0,0 +1,8 @@
|
||||
<script>
|
||||
import { writable } from 'svelte/store';
|
||||
|
||||
export const name = writable('world');
|
||||
</script>
|
||||
|
||||
<input bind:value={$name}>
|
||||
<p>hello {$name}</p>
|
Loading…
Reference in new issue