render p5 sketch, live, simplest case
This commit is contained in:
parent
e8fa62aa3d
commit
7419c855c6
4 changed files with 65 additions and 25 deletions
|
@ -2,31 +2,20 @@ import React from 'react';
|
||||||
import ReactDOM from 'react-dom';
|
import ReactDOM from 'react-dom';
|
||||||
|
|
||||||
class Preview extends React.Component {
|
class Preview extends React.Component {
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.renderFrameContents();
|
console.log(ReactDOM.findDOMNode(this));
|
||||||
}
|
|
||||||
|
|
||||||
renderFrameContents() {
|
|
||||||
let doc = ReactDOM.findDOMNode(this).contentDocument;
|
|
||||||
if(doc.readyState === 'complete') {
|
|
||||||
ReactDOM.render(this.props.children, doc.body);
|
|
||||||
} else {
|
|
||||||
setTimeout(this.renderFrameContents, 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidUpdate() {
|
|
||||||
this.renderFrameContents();
|
|
||||||
}
|
|
||||||
|
|
||||||
componentWillUnmount() {
|
|
||||||
React.unmountComponentAtNode(this.getDOMNode().contentDocument.body);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return <iframe sandbox="allow-same-origin"></iframe>;
|
return (
|
||||||
}
|
<div>
|
||||||
|
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.0/p5.min.js"></script>
|
||||||
|
<script type="text/javascript">
|
||||||
|
{this.props.content}
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default Preview;
|
export default Preview;
|
46
shared/components/Preview/PreviewFrame.jsx
Normal file
46
shared/components/Preview/PreviewFrame.jsx
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
import React from 'react';
|
||||||
|
import ReactDOM from 'react-dom';
|
||||||
|
|
||||||
|
class PreviewFrame extends React.Component {
|
||||||
|
|
||||||
|
componentDidMount() {
|
||||||
|
this.renderFrameContents();
|
||||||
|
}
|
||||||
|
|
||||||
|
renderFrameContents() {
|
||||||
|
let doc = ReactDOM.findDOMNode(this).contentDocument;
|
||||||
|
if(doc.readyState === 'complete') {
|
||||||
|
// ReactDOM.render(this.props.children, doc.body);
|
||||||
|
this.renderSketch();
|
||||||
|
} else {
|
||||||
|
setTimeout(this.renderFrameContents, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
renderSketch() {
|
||||||
|
let doc = ReactDOM.findDOMNode(this).contentDocument;
|
||||||
|
doc.write('');
|
||||||
|
doc.close();
|
||||||
|
let p5Script = doc.createElement('script');
|
||||||
|
p5Script.setAttribute('src', 'https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.0/p5.min.js');
|
||||||
|
doc.body.appendChild(p5Script);
|
||||||
|
|
||||||
|
let sketchScript = doc.createElement('script');
|
||||||
|
sketchScript.textContent = this.props.content;
|
||||||
|
doc.body.appendChild(sketchScript);
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidUpdate() {
|
||||||
|
this.renderFrameContents();
|
||||||
|
}
|
||||||
|
|
||||||
|
componentWillUnmount() {
|
||||||
|
React.unmountComponentAtNode(this.getDOMNode().contentDocument.body);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return <iframe sandbox="allow-scripts allow-pointer-lock allow-same-origin allow-popups allow-modals allow-forms"></iframe>;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default PreviewFrame;
|
|
@ -1,5 +1,6 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import Editor from '../../components/Editor/Editor'
|
import Editor from '../../components/Editor/Editor'
|
||||||
|
import PreviewFrame from '../../components/Preview/PreviewFrame'
|
||||||
import Preview from '../../components/Preview/Preview'
|
import Preview from '../../components/Preview/Preview'
|
||||||
import { bindActionCreators } from 'redux'
|
import { bindActionCreators } from 'redux'
|
||||||
import { connect } from 'react-redux'
|
import { connect } from 'react-redux'
|
||||||
|
@ -12,9 +13,7 @@ class App extends React.Component {
|
||||||
<Editor
|
<Editor
|
||||||
content={this.props.file.content}
|
content={this.props.file.content}
|
||||||
updateFile={this.props.updateFile} />
|
updateFile={this.props.updateFile} />
|
||||||
<Preview>
|
<PreviewFrame content={this.props.file.content} />
|
||||||
<h1>Hello world!</h1>
|
|
||||||
</Preview>
|
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,13 @@ import * as ActionTypes from '../constants/constants';
|
||||||
|
|
||||||
const initialState = {
|
const initialState = {
|
||||||
name: "sketch.js",
|
name: "sketch.js",
|
||||||
content: "setup() { } draw() { }"
|
content: `function setup() {
|
||||||
|
createCanvas(400, 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
function draw() {
|
||||||
|
background(220);
|
||||||
|
}`
|
||||||
}
|
}
|
||||||
|
|
||||||
const file = (state = initialState, action) => {
|
const file = (state = initialState, action) => {
|
||||||
|
|
Loading…
Reference in a new issue