mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 02:01:48 +08:00
65 lines
1.2 KiB
JavaScript
65 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
|
|
const mainStyle = {
|
|
padding: 10,
|
|
fontFamily: 'arial',
|
|
};
|
|
|
|
export default class Preview extends React.Component {
|
|
constructor(globalState) {
|
|
super();
|
|
this.state = {};
|
|
this.globalState = globalState;
|
|
|
|
this.globalState.on('change', (kind, story) => {
|
|
if (this.mounted) {
|
|
this.setState({
|
|
kind,
|
|
story,
|
|
});
|
|
} else {
|
|
this.state = {
|
|
...this.state,
|
|
kind,
|
|
story,
|
|
};
|
|
}
|
|
});
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.mounted = true;
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.mounted = false;
|
|
}
|
|
|
|
jump() {
|
|
const { kind, story } = this.state;
|
|
this.globalState.emit('jump', 'Component 2', 'State b');
|
|
}
|
|
|
|
toggleFullscreen() {
|
|
this.globalState.emit('toggleFullscreen');
|
|
}
|
|
|
|
render() {
|
|
const { kind, story } = this.state;
|
|
return (
|
|
<div style={mainStyle}>
|
|
<h3>Rendering the Preview</h3>
|
|
{kind} => {story}
|
|
<ul>
|
|
<li>
|
|
<button onClick={this.jump.bind(this)}>Jump to Component2:State b</button>
|
|
</li>
|
|
<li>
|
|
<button onClick={this.toggleFullscreen.bind(this)}>Go FullScreen</button>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
);
|
|
}
|
|
}
|