mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
40 lines
987 B
JavaScript
40 lines
987 B
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
|
|
const iframeStyle = {
|
|
width: '100%',
|
|
height: '100%',
|
|
border: 0,
|
|
margin: 0,
|
|
padding: 0,
|
|
};
|
|
|
|
class Preview extends Component {
|
|
shouldComponentUpdate() {
|
|
// When the manager is re-rendered, due to changes in the layout (going full screen / changing
|
|
// addon panel to right) Preview section will update. If its re-rendered the whole html page
|
|
// inside the html is re-rendered making the story to re-mount.
|
|
// We dont have to re-render this component for any reason since changes are communicated to
|
|
// story using the channel and necessary changes are done by it.
|
|
return false;
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<iframe
|
|
id="storybook-preview-iframe"
|
|
title="preview"
|
|
style={iframeStyle}
|
|
src={this.props.url}
|
|
allowFullScreen
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
Preview.propTypes = {
|
|
url: PropTypes.string.isRequired,
|
|
};
|
|
|
|
export default Preview;
|