mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:31:05 +08:00
Finish cleanup of addon knobs
This commit is contained in:
parent
bac1905875
commit
6255569279
@ -57,10 +57,15 @@ export default class Panel extends React.Component {
|
|||||||
this.loadedFromUrl = false;
|
this.loadedFromUrl = false;
|
||||||
this.props.channel.on('addon:knobs:setKnobs', this.setKnobs);
|
this.props.channel.on('addon:knobs:setKnobs', this.setKnobs);
|
||||||
this.props.channel.on('addon:knobs:setOptions', this.setOptions);
|
this.props.channel.on('addon:knobs:setOptions', this.setOptions);
|
||||||
|
|
||||||
|
this.stopListeningOnStory = this.props.api.onStory(() => {
|
||||||
|
this.setState({ knobs: [] });
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillUnmount() {
|
componentWillUnmount() {
|
||||||
this.props.channel.removeListener('addon:knobs:setKnobs', this.setKnobs);
|
this.props.channel.removeListener('addon:knobs:setKnobs', this.setKnobs);
|
||||||
|
this.stopListeningOnStory();
|
||||||
}
|
}
|
||||||
|
|
||||||
setOptions(options = { debounce: false, timestamps: false }) {
|
setOptions(options = { debounce: false, timestamps: false }) {
|
||||||
@ -155,6 +160,7 @@ Panel.propTypes = {
|
|||||||
}).isRequired,
|
}).isRequired,
|
||||||
onReset: PropTypes.object, // eslint-disable-line
|
onReset: PropTypes.object, // eslint-disable-line
|
||||||
api: PropTypes.shape({
|
api: PropTypes.shape({
|
||||||
|
onStory: PropTypes.func,
|
||||||
getQueryParam: PropTypes.func,
|
getQueryParam: PropTypes.func,
|
||||||
setQueryParams: PropTypes.func,
|
setQueryParams: PropTypes.func,
|
||||||
}).isRequired,
|
}).isRequired,
|
||||||
|
@ -33,10 +33,6 @@ export default class WrapStory extends React.Component {
|
|||||||
this.props.channel.removeListener('addon:knobs:knobChange', this.knobChanged);
|
this.props.channel.removeListener('addon:knobs:knobChange', this.knobChanged);
|
||||||
this.props.channel.removeListener('addon:knobs:reset', this.resetKnobs);
|
this.props.channel.removeListener('addon:knobs:reset', this.resetKnobs);
|
||||||
this.props.knobStore.unsubscribe(this.setPaneKnobs);
|
this.props.knobStore.unsubscribe(this.setPaneKnobs);
|
||||||
|
|
||||||
// cleanup before leaving
|
|
||||||
this.props.knobStore.reset();
|
|
||||||
this.setPaneKnobs(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
setPaneKnobs(timestamp = +new Date()) {
|
setPaneKnobs(timestamp = +new Date()) {
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
export const vueHandler = (channel, knobStore) => getStory => context => ({
|
export const vueHandler = (channel, knobStore) => getStory => context => ({
|
||||||
render(h) {
|
render(h) {
|
||||||
const story = getStory(context);
|
return h(getStory(context));
|
||||||
return h(typeof story === 'string' ? { template: story } : story);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
@ -31,10 +30,8 @@ export const vueHandler = (channel, knobStore) => getStory => context => ({
|
|||||||
},
|
},
|
||||||
|
|
||||||
beforeDestroy(){
|
beforeDestroy(){
|
||||||
console.log('beforeDestroy');
|
|
||||||
channel.removeListener('addon:knobs:reset', this.onKnobReset);
|
channel.removeListener('addon:knobs:reset', this.onKnobReset);
|
||||||
channel.removeListener('addon:knobs:knobChange', this.onKnobChange);
|
channel.removeListener('addon:knobs:knobChange', this.onKnobChange);
|
||||||
knobStore.unsubscribe(this.setPaneKnobs);
|
knobStore.unsubscribe(this.setPaneKnobs);
|
||||||
this.onKnobReset();
|
|
||||||
}
|
}
|
||||||
});
|
});
|
@ -96,8 +96,7 @@ export function renderMain(data, storyStore) {
|
|||||||
app = new Vue({
|
app = new Vue({
|
||||||
el: '#root',
|
el: '#root',
|
||||||
render(h) {
|
render(h) {
|
||||||
const story = typeof element === 'string' ? { template: element } : element;
|
return h('div', {attrs: { id: 'root' } }, [h(element)]);
|
||||||
return h('div', {attrs: { id: 'root' } }, [h(story)]);
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,6 @@ import { addonNotes, WithNotes } from '@storybook/addon-notes';
|
|||||||
import { withKnobs, addonKnobs, text, number } from '@storybook/addon-knobs';
|
import { withKnobs, addonKnobs, text, number } from '@storybook/addon-knobs';
|
||||||
import { linkTo } from '@storybook/addon-links';
|
import { linkTo } from '@storybook/addon-links';
|
||||||
import WithEvents from '@storybook/addon-events';
|
import WithEvents from '@storybook/addon-events';
|
||||||
import { withKnobs, text, number } from '@storybook/addon-knobs';
|
|
||||||
import centered from '@storybook/addon-centered';
|
import centered from '@storybook/addon-centered';
|
||||||
|
|
||||||
import Button from '@storybook/components/dist/demo/Button';
|
import Button from '@storybook/components/dist/demo/Button';
|
||||||
|
@ -14,7 +14,9 @@ import MyButton from './Button.vue';
|
|||||||
|
|
||||||
storiesOf('Button', module)
|
storiesOf('Button', module)
|
||||||
// Works if Vue.component is called in the config.js in .storybook
|
// Works if Vue.component is called in the config.js in .storybook
|
||||||
.add('story as a function template', () => '<my-button :rounded="true">story as a function template</my-button>')
|
.add('story as a function template', () => ({
|
||||||
|
template: '<my-button :rounded="true">story as a function template</my-button>'
|
||||||
|
}))
|
||||||
.add('story as a function renderer', () => (h) => h('div', ['story as a function renderer']))
|
.add('story as a function renderer', () => (h) => h('div', ['story as a function renderer']))
|
||||||
.add('story as a function component with template', () => ({
|
.add('story as a function component with template', () => ({
|
||||||
template: '<my-button :rounded="true">story as a function component with template</my-button>',
|
template: '<my-button :rounded="true">story as a function component with template</my-button>',
|
||||||
@ -57,8 +59,12 @@ storiesOf('Button', module)
|
|||||||
}));
|
}));
|
||||||
|
|
||||||
storiesOf('Other', module)
|
storiesOf('Other', module)
|
||||||
.add('button with emoji', () => '<button>😑😐😶🙄</button>')
|
.add('button with emoji', () => ({
|
||||||
.add('p with emoji', () => '<p>🤔😳😯😮</p>')
|
template: '<button>😑😐😶🙄</button>'
|
||||||
|
}))
|
||||||
|
.add('p with emoji', () => ({
|
||||||
|
template: '<p>🤔😳😯😮</p>'
|
||||||
|
}))
|
||||||
.add('colorful', () => ({
|
.add('colorful', () => ({
|
||||||
render(h) {
|
render(h) {
|
||||||
return h(MyButton, { props: { color: 'pink' } }, ['colorful']);
|
return h(MyButton, { props: { color: 'pink' } }, ['colorful']);
|
||||||
@ -78,7 +84,9 @@ storiesOf('Other', module)
|
|||||||
|
|
||||||
|
|
||||||
storiesOf('Addon Notes', module)
|
storiesOf('Addon Notes', module)
|
||||||
.add('with some emoji', addonNotes({notes: 'My notes on emojies'})(() => '<p>🤔😳😯😮</p>'))
|
.add('with some emoji', addonNotes({notes: 'My notes on emojies'})(() => ({
|
||||||
|
template: '<p>🤔😳😯😮</p>'
|
||||||
|
})))
|
||||||
.add('with some button', addonNotes({ notes: 'My notes on some button' })(() => ({
|
.add('with some button', addonNotes({ notes: 'My notes on some button' })(() => ({
|
||||||
components: { MyButton },
|
components: { MyButton },
|
||||||
template: '<my-button :rounded="true">rounded</my-button>'
|
template: '<my-button :rounded="true">rounded</my-button>'
|
||||||
@ -93,7 +101,9 @@ storiesOf('Addon Notes', module)
|
|||||||
})
|
})
|
||||||
))
|
))
|
||||||
.add('with some long text', addonNotes({ notes: 'My notes on some long text' })(
|
.add('with some long text', addonNotes({ notes: 'My notes on some long text' })(
|
||||||
() => '<div>A looooooooonnnnnnnggggggggggggg text</div>'
|
() => ({
|
||||||
|
template: '<div>A looooooooonnnnnnnggggggggggggg text</div>'
|
||||||
|
})
|
||||||
))
|
))
|
||||||
.add('with some bold text', addonNotes({ notes: 'My notes on some bold text' })(() => ({
|
.add('with some bold text', addonNotes({ notes: 'My notes on some bold text' })(() => ({
|
||||||
render: h => h('div', [h('strong', ['A very long text to display'])])
|
render: h => h('div', [h('strong', ['A very long text to display'])])
|
||||||
@ -106,5 +116,7 @@ storiesOf('Addon Notes', module)
|
|||||||
const age = number('Age', 89);
|
const age = number('Age', 89);
|
||||||
|
|
||||||
const content = `I am ${name} and I'm ${age} years old.`;
|
const content = `I am ${name} and I'm ${age} years old.`;
|
||||||
return `<div>${content}</div>`
|
return {
|
||||||
|
template: `<div>${content}</div>`
|
||||||
|
};
|
||||||
}));
|
}));
|
Loading…
x
Reference in New Issue
Block a user