🐛 bug(knobs): fixed infinite render loop

closes #1747
This commit is contained in:
kazuya kawaguchi 2017-10-20 13:00:55 +09:00
parent 1e7ec0564b
commit 28e72cb6b1
No known key found for this signature in database
GPG Key ID: 92C928952CA5309E

View File

@ -1,6 +1,14 @@
export const vueHandler = (channel, knobStore) => getStory => context => ({ export const vueHandler = (channel, knobStore) => getStory => context => ({
data() {
return {
context,
getStory,
story: getStory(context),
};
},
render(h) { render(h) {
return h(getStory(context)); return h(this.story);
}, },
methods: { methods: {
@ -10,6 +18,7 @@ export const vueHandler = (channel, knobStore) => getStory => context => ({
const knobOptions = knobStore.get(name); const knobOptions = knobStore.get(name);
knobOptions.value = value; knobOptions.value = value;
this.story = this.getStory(this.context);
this.$forceUpdate(); this.$forceUpdate();
}, },
@ -21,6 +30,7 @@ export const vueHandler = (channel, knobStore) => getStory => context => ({
onKnobReset() { onKnobReset() {
knobStore.reset(); knobStore.reset();
this.setPaneKnobs(false); this.setPaneKnobs(false);
this.story = this.getStory(this.context);
this.$forceUpdate(); this.$forceUpdate();
}, },