mirror of https://github.com/sveltejs/svelte
prevent stale state in component event handlers - fixes #1353
parent
a6262cee4d
commit
35a5d8f537
@ -0,0 +1 @@
|
||||
<button on:click><slot/></button>
|
@ -0,0 +1,30 @@
|
||||
export default {
|
||||
data: {
|
||||
value: 1,
|
||||
},
|
||||
|
||||
test(assert, component, target, window) {
|
||||
const buttons = target.querySelectorAll('button');
|
||||
const click = new window.MouseEvent('click');
|
||||
|
||||
const events = [];
|
||||
component.on('value', event => {
|
||||
events.push(event);
|
||||
});
|
||||
|
||||
buttons[0].dispatchEvent(click);
|
||||
buttons[1].dispatchEvent(click);
|
||||
|
||||
component.set({ value: 2 });
|
||||
|
||||
buttons[0].dispatchEvent(click);
|
||||
buttons[1].dispatchEvent(click);
|
||||
|
||||
assert.deepEqual(events, [
|
||||
{ value: 1 },
|
||||
{ value: 1 },
|
||||
{ value: 2 },
|
||||
{ value: 2 }
|
||||
]);
|
||||
},
|
||||
};
|
@ -0,0 +1,20 @@
|
||||
<Button on:click="handleClick()">one</Button>
|
||||
<Button on:click="fire('value', {value})">two</Button>
|
||||
|
||||
<script>
|
||||
import Button from './Button.html';
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Button
|
||||
},
|
||||
|
||||
methods: {
|
||||
handleClick() {
|
||||
const { value } = this.get();
|
||||
this.fire('value', { value });
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</script>
|
Loading…
Reference in new issue