fix handler in-place

pull/1294/head
ekhaled 7 years ago
parent 298a339df9
commit 6ebf46ad67

@ -516,16 +516,16 @@ export default class Element extends Node {
}); });
`); `);
if (generator.options.dev) {
block.builders.hydrate.addBlock(deindent` block.builders.hydrate.addBlock(deindent`
if (${handlerName}.teardown) { if (${handlerName}.teardown) {
console.warn("Return 'destroy()' from custom event handlers. Returning 'teardown()' has been deprecated and will be unsupported in Svelte 2"); ${handlerName}.destroy = ${handlerName}.teardown;
} ${generator.options.dev && `console.warn("Return 'destroy()' from custom event handlers. Returning 'teardown()' has been deprecated and will be unsupported in Svelte 2");`}
`); }
} `);
block.builders.destroy.addLine(deindent` block.builders.destroy.addLine(deindent`
${handlerName}[${handlerName}.destroy ? 'destroy' : 'teardown'](); ${handlerName}.destroy();
`); `);
} else { } else {
const handler = deindent` const handler = deindent`

@ -199,6 +199,10 @@ function create_main_fragment(component, state) {
var state = component.get(); var state = component.get();
component.foo( state.bar ); component.foo( state.bar );
}); });
if (foo_handler.teardown) {
foo_handler.destroy = foo_handler.teardown;
}
}, },
m: function mount(target, anchor) { m: function mount(target, anchor) {
@ -212,7 +216,7 @@ function create_main_fragment(component, state) {
}, },
d: function destroy$$1() { d: function destroy$$1() {
foo_handler[foo_handler.destroy ? 'destroy' : 'teardown'](); foo_handler.destroy();
} }
}; };
} }

@ -26,6 +26,10 @@ function create_main_fragment(component, state) {
var state = component.get(); var state = component.get();
component.foo( state.bar ); component.foo( state.bar );
}); });
if (foo_handler.teardown) {
foo_handler.destroy = foo_handler.teardown;
}
}, },
m: function mount(target, anchor) { m: function mount(target, anchor) {
@ -39,7 +43,7 @@ function create_main_fragment(component, state) {
}, },
d: function destroy() { d: function destroy() {
foo_handler[foo_handler.destroy ? 'destroy' : 'teardown'](); foo_handler.destroy();
} }
}; };
} }

Loading…
Cancel
Save