1
1
mirror of https://github.com/primer/css.git synced 2024-12-29 09:06:07 +03:00

attempt to resize Frame components dynamically

This commit is contained in:
Shawn Allen 2019-01-16 14:58:41 -08:00
parent 92b5f6af2b
commit 85d6383022

View File

@ -5,34 +5,53 @@ import Document, {Head} from 'next/document'
import {BorderBox} from '@primer/components'
import {assetPrefix} from './utils'
const DEFAULT_IFRAME_HEIGHT = 150
export default class Frame extends React.Component {
static defaultProps = {
bg: 'white',
border: 0,
p: 3,
borderRadius: 0,
minHeight: 0,
width: '100%'
}
constructor(props) {
super(props)
this.state = {files: [], height: props.height}
}
componentDidMount() {
this.doc = this.node.contentDocument
this.forceUpdate()
const files = JSON.parse(document.body.dataset.files || '[]')
this.setState({files})
this.node.addEventListener('load', () => this.setState({loaded: true}))
}
getCssLinks() {
const context = JSON.parse(document.body.dataset.context || '{}')
const {files = []} = context
return files.filter(file => file.endsWith('.css'))
.map(file => <link rel="stylesheet" href={`${assetPrefix}/_next/${file}`} />)
const {files} = this.state
return files
? files
.filter(file => file.endsWith('.css'))
.map(file => <link rel="stylesheet" href={`${assetPrefix}/_next/${file}`} key={file} />)
: null
}
getHeight() {
if (!this.node) return null
this.node.style.height = 'max-content'
const {body} = this.node.contentDocument
return body.offsetHeight > DEFAULT_IFRAME_HEIGHT ? body.offsetHeight : body.scrollHeight
}
render() {
const {children, ...rest} = this.props
const height = this.getHeight()
const style = height ? {height} : null
return (
<BorderBox as="iframe" {...rest} ref={node => (this.node = node)}>
{this.doc ? [
ReactDOM.createPortal(this.getCssLinks(), this.doc.head),
ReactDOM.createPortal(children, this.doc.body)
] : null}
<BorderBox as="iframe" style={style} {...rest} ref={node => (this.node = node)}>
{this.doc
? [ReactDOM.createPortal(this.getCssLinks(), this.doc.head), ReactDOM.createPortal(children, this.doc.body)]
: null}
</BorderBox>
)
}