extend refresh behavior to the whole component

This commit is contained in:
Julien Barbay 2018-11-14 19:50:10 +09:00
parent 67cfcddb14
commit 2dc1ca2aaf

View File

@ -29,19 +29,27 @@ export default function render({
showMain();
const props = Object.entries(component.props)
const proxy = Object.entries(component.props)
.map(([name, def]) => ({ [name]: def.default }))
.reduce((wrapper, prop) => ({ ...wrapper, ...prop }), {});
.reduce((wrap, prop) => ({ ...wrap, ...prop }), {});
// at component creation || refresh by HMR
if (!root || !forceRender) {
if (root) root.$destroy();
if (!root) {
root = new Vue({
el: '#root',
beforeCreate() {
this.proxy = proxy;
},
render(h) {
return h('div', { attrs: { id: 'root' } }, [h(component, { props: this.proxy || null })]);
const props = this.proxy;
return h('div', { attrs: { id: 'root' } }, [h(component, { props })]);
},
});
} else if (forceRender) {
root.proxy = props;
} else {
root.proxy = proxy;
root.$forceUpdate();
}
}