|
|
|
// Theirs
|
|
|
|
import React from 'react'
|
|
|
|
import Head from 'next/head'
|
|
|
|
import { withRouter } from 'next/router'
|
|
|
|
import url from 'url'
|
|
|
|
import morph from 'morphmorph'
|
|
|
|
|
|
|
|
// Ours
|
|
|
|
import { StylesheetLink, CodeMirrorLink, MetaTags } from '../components/Meta'
|
|
|
|
import Carbon from '../components/Carbon'
|
|
|
|
import { DEFAULT_CODE, DEFAULT_SETTINGS } from '../lib/constants'
|
|
|
|
import { getQueryStringState } from '../lib/routing'
|
|
|
|
|
|
|
|
const isInIFrame = morph.get('parent.window.parent')
|
|
|
|
const getParent = win => {
|
|
|
|
const iFrame = isInIFrame(win)
|
|
|
|
|
|
|
|
if (iFrame) {
|
|
|
|
return iFrame
|
|
|
|
}
|
|
|
|
|
|
|
|
return win.parent
|
|
|
|
}
|
|
|
|
|
|
|
|
const Page = props => (
|
|
|
|
<React.Fragment>
|
|
|
|
<Head>
|
|
|
|
<title>Carbon Embeds</title>
|
|
|
|
</Head>
|
|
|
|
<MetaTags />
|
|
|
|
<StylesheetLink theme={props.theme} />
|
|
|
|
<CodeMirrorLink />
|
|
|
|
{props.children}
|
|
|
|
<style jsx global>
|
|
|
|
{`
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
background: transparent;
|
|
|
|
min-height: 0;
|
|
|
|
}
|
|
|
|
`}
|
|
|
|
</style>
|
|
|
|
</React.Fragment>
|
|
|
|
)
|
|
|
|
|
|
|
|
class Embed extends React.Component {
|
|
|
|
state = {
|
|
|
|
...DEFAULT_SETTINGS,
|
|
|
|
code: DEFAULT_CODE,
|
|
|
|
mounted: false,
|
|
|
|
readOnly: true
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
const { asPath = '' } = this.props.router
|
|
|
|
const { query } = url.parse(asPath, true)
|
|
|
|
const queryParams = getQueryStringState(query)
|
|
|
|
const initialState = Object.keys(queryParams).length ? queryParams : {}
|
|
|
|
|
|
|
|
this.setState(
|
|
|
|
{
|
|
|
|
...initialState,
|
|
|
|
id: query.id,
|
|
|
|
copyable: queryParams.copy !== false,
|
|
|
|
readOnly: queryParams.readonly !== false,
|
|
|
|
mounted: true
|
|
|
|
},
|
|
|
|
this.postMessage
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
ref = React.createRef()
|
|
|
|
|
|
|
|
postMessage = () => {
|
|
|
|
getParent(window).postMessage(
|
|
|
|
JSON.stringify({
|
|
|
|
// Used by embed provider
|
|
|
|
src: window.location.toString(),
|
|
|
|
context: 'iframe.resize',
|
|
|
|
height: this.ref.current.exportContainerNode.offsetHeight
|
|
|
|
}),
|
|
|
|
'*'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
updateCode = code => {
|
|
|
|
this.setState({ code }, this.postMessage)
|
|
|
|
|
|
|
|
getParent(window).postMessage(
|
|
|
|
{
|
|
|
|
id: this.state.id ? `carbon:${this.state.id}` : 'carbon',
|
|
|
|
code
|
|
|
|
},
|
|
|
|
'*'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Page theme={this.state.theme}>
|
|
|
|
{this.state.mounted && (
|
|
|
|
<Carbon
|
|
|
|
ref={this.ref}
|
|
|
|
config={this.state}
|
|
|
|
readOnly={this.state.readOnly}
|
|
|
|
copyable={this.state.copyable}
|
|
|
|
updateCode={this.updateCode}
|
|
|
|
>
|
|
|
|
{this.state.code}
|
|
|
|
</Carbon>
|
|
|
|
)}
|
|
|
|
</Page>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default withRouter(Embed)
|