2016-06-27 19:47:48 +00:00
|
|
|
import React, { PropTypes } from 'react';
|
2016-06-23 22:29:55 +00:00
|
|
|
import ReactDOM from 'react-dom';
|
2016-11-16 18:12:36 +00:00
|
|
|
// import escapeStringRegexp from 'escape-string-regexp';
|
2016-07-11 21:21:20 +00:00
|
|
|
import srcDoc from 'srcdoc-polyfill';
|
2016-06-23 22:29:55 +00:00
|
|
|
|
2016-10-05 17:58:45 +00:00
|
|
|
import loopProtect from 'loop-protect';
|
2016-10-22 20:42:43 +00:00
|
|
|
import { getBlobUrl } from '../actions/files';
|
2016-11-16 18:12:36 +00:00
|
|
|
import { resolvePathToFile } from '../../../../server/utils/filePath';
|
2016-08-28 13:52:57 +00:00
|
|
|
|
2016-08-30 22:06:55 +00:00
|
|
|
const startTag = '@fs-';
|
2016-11-30 16:51:54 +00:00
|
|
|
const MEDIA_FILE_REGEX = /^('|")(?!(http:\/\/|https:\/\/)).*\.(png|jpg|jpeg|gif|bmp|mp3|wav|aiff|ogg|json|txt|csv|svg|obj|mp4|ogg|webm|mov|otf|ttf)('|")$/i;
|
|
|
|
const MEDIA_FILE_REGEX_NO_QUOTES = /^(?!(http:\/\/|https:\/\/)).*\.(png|jpg|jpeg|gif|bmp|mp3|wav|aiff|ogg|json|txt|csv|svg|obj|mp4|ogg|webm|mov|otf|ttf)$/i;
|
2016-10-25 22:38:20 +00:00
|
|
|
const STRING_REGEX = /(['"])((\\\1|.)*?)\1/gm;
|
2016-11-16 18:12:36 +00:00
|
|
|
const TEXT_FILE_REGEX = /(.+\.json$|.+\.txt$|.+\.csv$)/i;
|
|
|
|
const NOT_EXTERNAL_LINK_REGEX = /^(?!(http:\/\/|https:\/\/))/;
|
|
|
|
const EXTERNAL_LINK_REGEX = /^(http:\/\/|https:\/\/)/;
|
2016-08-28 13:52:57 +00:00
|
|
|
|
2016-08-27 17:54:20 +00:00
|
|
|
function getAllScriptOffsets(htmlFile) {
|
2016-08-28 13:52:57 +00:00
|
|
|
const offs = [];
|
|
|
|
let found = true;
|
|
|
|
let lastInd = 0;
|
|
|
|
let ind = 0;
|
|
|
|
let endFilenameInd = 0;
|
|
|
|
let filename = '';
|
|
|
|
let lineOffset = 0;
|
2016-08-27 17:54:20 +00:00
|
|
|
while (found) {
|
2016-08-28 13:52:57 +00:00
|
|
|
ind = htmlFile.indexOf(startTag, lastInd);
|
|
|
|
if (ind === -1) {
|
2016-08-27 17:54:20 +00:00
|
|
|
found = false;
|
2016-08-26 18:22:58 +00:00
|
|
|
} else {
|
2016-08-28 13:52:57 +00:00
|
|
|
endFilenameInd = htmlFile.indexOf('.js', ind + startTag.length + 3);
|
|
|
|
filename = htmlFile.substring(ind + startTag.length, endFilenameInd);
|
2016-12-13 20:37:11 +00:00
|
|
|
// the length of hijackConsoleErrorsScript is 35 lines, already needed a -1 offset.
|
|
|
|
lineOffset = htmlFile.substring(0, ind).split('\n').length + 34;
|
2016-08-28 13:52:57 +00:00
|
|
|
offs.push([lineOffset, filename]);
|
2016-08-27 17:54:20 +00:00
|
|
|
lastInd = ind + 1;
|
2016-08-26 18:22:58 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-27 17:54:20 +00:00
|
|
|
return offs;
|
|
|
|
}
|
2016-08-26 18:22:58 +00:00
|
|
|
|
2016-08-30 22:06:55 +00:00
|
|
|
function hijackConsoleErrorsScript(offs) {
|
2016-11-16 18:12:36 +00:00
|
|
|
const s = `
|
2016-08-27 17:54:20 +00:00
|
|
|
function getScriptOff(line) {
|
2016-08-28 13:52:57 +00:00
|
|
|
var offs = ${offs};
|
2016-08-27 17:54:20 +00:00
|
|
|
var l = 0;
|
|
|
|
var file = '';
|
|
|
|
for (var i=0; i<offs.length; i++) {
|
|
|
|
var n = offs[i][0];
|
|
|
|
if (n < line && n > l) {
|
|
|
|
l = n;
|
|
|
|
file = offs[i][1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return [line - l, file];
|
|
|
|
}
|
|
|
|
|
2016-08-30 22:06:55 +00:00
|
|
|
// catch reference errors, via http://stackoverflow.com/a/12747364/2994108
|
|
|
|
window.onerror = function (msg, url, lineNumber, columnNo, error) {
|
|
|
|
var string = msg.toLowerCase();
|
|
|
|
var substring = "script error";
|
|
|
|
var data = {};
|
|
|
|
|
|
|
|
if (string.indexOf(substring) !== -1){
|
|
|
|
data = 'Script Error: See Browser Console for Detail';
|
|
|
|
} else {
|
|
|
|
var fileInfo = getScriptOff(lineNumber);
|
|
|
|
data = msg + ' (' + fileInfo[1] + ': line ' + fileInfo[0] + ')';
|
|
|
|
}
|
2016-10-08 23:18:38 +00:00
|
|
|
|
|
|
|
window.parent.postMessage([{
|
2016-08-30 22:06:55 +00:00
|
|
|
method: 'error',
|
|
|
|
arguments: data,
|
2016-12-13 20:37:11 +00:00
|
|
|
source: fileInfo[1]
|
2016-10-08 23:18:38 +00:00
|
|
|
}], '*');
|
2016-08-30 22:06:55 +00:00
|
|
|
return false;
|
|
|
|
};
|
2016-11-16 18:12:36 +00:00
|
|
|
`;
|
2016-08-28 13:52:57 +00:00
|
|
|
return s;
|
2016-08-26 18:22:58 +00:00
|
|
|
}
|
2016-07-17 23:06:43 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
class PreviewFrame extends React.Component {
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
if (this.props.isPlaying) {
|
|
|
|
this.renderFrameContents();
|
|
|
|
}
|
2016-07-17 23:06:43 +00:00
|
|
|
|
2016-08-17 22:13:17 +00:00
|
|
|
if (this.props.dispatchConsoleEvent) {
|
2017-01-11 19:13:49 +00:00
|
|
|
window.addEventListener('message', (messageEvent) => {
|
|
|
|
messageEvent.data.forEach(message => {
|
|
|
|
const args = message.arguments;
|
|
|
|
Object.keys(args).forEach((key) => {
|
|
|
|
if (args[key].includes('Exiting potential infinite loop')) {
|
|
|
|
this.props.stopSketch();
|
|
|
|
this.props.expandConsole();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
this.props.dispatchConsoleEvent(messageEvent.data);
|
2016-08-17 22:13:17 +00:00
|
|
|
});
|
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 19:47:48 +00:00
|
|
|
componentDidUpdate(prevProps) {
|
2016-09-29 04:54:35 +00:00
|
|
|
// if sketch starts or stops playing, want to rerender
|
2016-06-27 19:47:48 +00:00
|
|
|
if (this.props.isPlaying !== prevProps.isPlaying) {
|
2016-07-11 19:22:29 +00:00
|
|
|
this.renderSketch();
|
2016-09-28 19:20:54 +00:00
|
|
|
return;
|
2016-06-27 19:47:48 +00:00
|
|
|
}
|
|
|
|
|
2016-09-28 22:05:14 +00:00
|
|
|
// if the user explicitly clicks on the play button
|
|
|
|
if (this.props.isPlaying && this.props.previewIsRefreshing) {
|
2016-06-27 19:47:48 +00:00
|
|
|
this.renderSketch();
|
2016-09-28 22:05:14 +00:00
|
|
|
return;
|
2016-06-27 19:47:48 +00:00
|
|
|
}
|
2016-08-17 22:13:17 +00:00
|
|
|
|
2016-11-09 18:16:14 +00:00
|
|
|
// if user switches textoutput preferences
|
|
|
|
if (this.props.isTextOutputPlaying !== prevProps.isTextOutputPlaying) {
|
|
|
|
this.renderSketch();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.props.textOutput !== prevProps.textOutput) {
|
|
|
|
this.renderSketch();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-08 22:52:32 +00:00
|
|
|
if (this.props.fullView && this.props.files[0].id !== prevProps.files[0].id) {
|
|
|
|
this.renderSketch();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-09-29 04:54:35 +00:00
|
|
|
// small bug - if autorefresh is on, and the usr changes files
|
|
|
|
// in the sketch, preview will reload
|
2016-06-27 19:47:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
ReactDOM.unmountComponentAtNode(ReactDOM.findDOMNode(this).contentDocument.body);
|
|
|
|
}
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
clearPreview() {
|
2016-07-11 19:22:29 +00:00
|
|
|
const doc = ReactDOM.findDOMNode(this);
|
|
|
|
doc.srcDoc = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
injectLocalFiles() {
|
2016-11-16 18:12:36 +00:00
|
|
|
const htmlFile = this.props.htmlFile.content;
|
2016-08-28 13:52:57 +00:00
|
|
|
let scriptOffs = [];
|
2016-07-20 01:36:21 +00:00
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
const resolvedFiles = this.resolveJSAndCSSLinks(this.props.files);
|
|
|
|
|
|
|
|
const parser = new DOMParser();
|
|
|
|
const sketchDoc = parser.parseFromString(htmlFile, 'text/html');
|
|
|
|
|
2016-11-30 17:38:53 +00:00
|
|
|
const base = sketchDoc.createElement('base');
|
|
|
|
base.href = `${window.location.href}/`;
|
|
|
|
sketchDoc.head.appendChild(base);
|
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
this.resolvePathsForElementsWithAttribute('src', sketchDoc, resolvedFiles);
|
|
|
|
this.resolvePathsForElementsWithAttribute('href', sketchDoc, resolvedFiles);
|
|
|
|
// should also include background, data, poster, but these are used way less often
|
|
|
|
|
|
|
|
this.resolveScripts(sketchDoc, resolvedFiles);
|
|
|
|
this.resolveStyles(sketchDoc, resolvedFiles);
|
|
|
|
|
|
|
|
let scriptsToInject = [
|
|
|
|
'/loop-protect.min.js',
|
|
|
|
'/hijackConsole.js'
|
|
|
|
];
|
2016-11-23 18:35:12 +00:00
|
|
|
if (this.props.isTextOutputPlaying || (this.props.textOutput !== 0 && this.props.isPlaying)) {
|
2016-11-16 18:12:36 +00:00
|
|
|
let interceptorScripts = [];
|
2016-11-23 18:35:12 +00:00
|
|
|
if (this.props.textOutput === 0) {
|
|
|
|
this.props.setTextOutput(1);
|
|
|
|
}
|
2016-11-16 18:12:36 +00:00
|
|
|
if (this.props.textOutput === 1) {
|
|
|
|
interceptorScripts = [
|
2016-11-23 18:35:12 +00:00
|
|
|
'/p5-interceptor/loadData.js',
|
|
|
|
'/p5-interceptor/intercept-helper-functions.js',
|
|
|
|
'/p5-interceptor/textInterceptor/interceptor-functions.js',
|
|
|
|
'/p5-interceptor/textInterceptor/intercept-p5.js',
|
|
|
|
'/p5-interceptor/ntc.min.js'
|
2016-11-16 18:12:36 +00:00
|
|
|
];
|
|
|
|
} else if (this.props.textOutput === 2) {
|
|
|
|
interceptorScripts = [
|
2016-11-23 18:35:12 +00:00
|
|
|
'/p5-interceptor/loadData.js',
|
|
|
|
'/p5-interceptor/intercept-helper-functions.js',
|
|
|
|
'/p5-interceptor/gridInterceptor/interceptor-functions.js',
|
|
|
|
'/p5-interceptor/gridInterceptor/intercept-p5.js',
|
|
|
|
'/p5-interceptor/ntc.min.js'
|
2016-11-16 18:12:36 +00:00
|
|
|
];
|
|
|
|
} else if (this.props.textOutput === 3) {
|
|
|
|
interceptorScripts = [
|
2016-11-23 18:35:12 +00:00
|
|
|
'/p5-interceptor/loadData.js',
|
|
|
|
'/p5-interceptor/soundInterceptor/intercept-p5.js'
|
2016-11-16 18:12:36 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
scriptsToInject = scriptsToInject.concat(interceptorScripts);
|
|
|
|
}
|
|
|
|
|
|
|
|
scriptsToInject.forEach(scriptToInject => {
|
|
|
|
const script = sketchDoc.createElement('script');
|
|
|
|
script.src = scriptToInject;
|
|
|
|
sketchDoc.head.appendChild(script);
|
2016-07-19 23:36:50 +00:00
|
|
|
});
|
2016-07-11 19:22:29 +00:00
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
const sketchDocString = `<!DOCTYPE HTML>\n${sketchDoc.documentElement.outerHTML}`;
|
|
|
|
scriptOffs = getAllScriptOffsets(sketchDocString);
|
|
|
|
const consoleErrorsScript = sketchDoc.createElement('script');
|
|
|
|
consoleErrorsScript.innerHTML = hijackConsoleErrorsScript(JSON.stringify(scriptOffs));
|
2016-12-13 20:37:11 +00:00
|
|
|
// sketchDoc.head.appendChild(consoleErrorsScript);
|
|
|
|
sketchDoc.head.insertBefore(consoleErrorsScript, sketchDoc.head.firstElement);
|
2016-11-16 18:12:36 +00:00
|
|
|
|
|
|
|
return `<!DOCTYPE HTML>\n${sketchDoc.documentElement.outerHTML}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
resolvePathsForElementsWithAttribute(attr, sketchDoc, files) {
|
|
|
|
const elements = sketchDoc.querySelectorAll(`[${attr}]`);
|
2016-12-07 21:12:06 +00:00
|
|
|
const elementsArray = Array.prototype.slice.call(elements);
|
|
|
|
elementsArray.forEach(element => {
|
2016-11-16 18:12:36 +00:00
|
|
|
if (element.getAttribute(attr).match(MEDIA_FILE_REGEX_NO_QUOTES)) {
|
|
|
|
const resolvedFile = resolvePathToFile(element.getAttribute(attr), files);
|
|
|
|
if (resolvedFile) {
|
|
|
|
element.setAttribute(attr, resolvedFile.url);
|
2016-10-25 22:38:20 +00:00
|
|
|
}
|
2016-11-16 18:12:36 +00:00
|
|
|
}
|
2016-10-25 22:38:20 +00:00
|
|
|
});
|
2016-11-16 18:12:36 +00:00
|
|
|
}
|
2016-10-25 22:38:20 +00:00
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
resolveJSAndCSSLinks(files) {
|
|
|
|
const newFiles = [];
|
|
|
|
files.forEach(file => {
|
|
|
|
const newFile = { ...file };
|
|
|
|
if (file.name.match(/.*\.js$/i)) {
|
|
|
|
newFile.content = this.resolveJSLinksInString(newFile.content, files);
|
|
|
|
} else if (file.name.match(/.*\.css$/i)) {
|
|
|
|
newFile.content = this.resolveCSSLinksInString(newFile.content, files);
|
2016-11-11 22:36:19 +00:00
|
|
|
}
|
2016-11-16 18:12:36 +00:00
|
|
|
newFiles.push(newFile);
|
2016-07-11 19:22:29 +00:00
|
|
|
});
|
2016-11-16 18:12:36 +00:00
|
|
|
return newFiles;
|
|
|
|
}
|
2016-07-11 19:22:29 +00:00
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
resolveJSLinksInString(content, files) {
|
|
|
|
let newContent = content;
|
|
|
|
let jsFileStrings = content.match(STRING_REGEX);
|
|
|
|
jsFileStrings = jsFileStrings || [];
|
|
|
|
jsFileStrings.forEach(jsFileString => {
|
|
|
|
if (jsFileString.match(MEDIA_FILE_REGEX)) {
|
|
|
|
const filePath = jsFileString.substr(1, jsFileString.length - 2);
|
|
|
|
const resolvedFile = resolvePathToFile(filePath, files);
|
|
|
|
if (resolvedFile) {
|
|
|
|
if (resolvedFile.url) {
|
|
|
|
newContent = newContent.replace(filePath, resolvedFile.url);
|
|
|
|
} else if (resolvedFile.name.match(TEXT_FILE_REGEX)) {
|
|
|
|
// could also pull file from API instead of using bloburl
|
|
|
|
const blobURL = getBlobUrl(resolvedFile);
|
|
|
|
this.props.setBlobUrl(resolvedFile, blobURL);
|
|
|
|
newContent = newContent.replace(filePath, blobURL);
|
|
|
|
}
|
|
|
|
}
|
2016-11-11 22:36:19 +00:00
|
|
|
}
|
2016-07-12 01:54:08 +00:00
|
|
|
});
|
2016-11-16 18:12:36 +00:00
|
|
|
newContent = loopProtect(newContent);
|
|
|
|
return newContent;
|
|
|
|
}
|
2016-07-12 01:54:08 +00:00
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
resolveCSSLinksInString(content, files) {
|
|
|
|
let newContent = content;
|
|
|
|
let cssFileStrings = content.match(STRING_REGEX);
|
|
|
|
cssFileStrings = cssFileStrings || [];
|
|
|
|
cssFileStrings.forEach(cssFileString => {
|
|
|
|
if (cssFileString.match(MEDIA_FILE_REGEX)) {
|
|
|
|
const filePath = cssFileString.substr(1, cssFileString.length - 2);
|
|
|
|
const resolvedFile = resolvePathToFile(filePath, files);
|
|
|
|
if (resolvedFile) {
|
|
|
|
if (resolvedFile.url) {
|
|
|
|
newContent = newContent.replace(filePath, resolvedFile.url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return newContent;
|
|
|
|
}
|
2016-08-12 19:50:33 +00:00
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
resolveScripts(sketchDoc, files) {
|
|
|
|
const scriptsInHTML = sketchDoc.getElementsByTagName('script');
|
|
|
|
const scriptsInHTMLArray = Array.prototype.slice.call(scriptsInHTML);
|
|
|
|
scriptsInHTMLArray.forEach(script => {
|
|
|
|
if (script.getAttribute('src') && script.getAttribute('src').match(NOT_EXTERNAL_LINK_REGEX) !== null) {
|
|
|
|
const resolvedFile = resolvePathToFile(script.getAttribute('src'), files);
|
|
|
|
if (resolvedFile) {
|
|
|
|
if (resolvedFile.url) {
|
|
|
|
script.setAttribute('src', resolvedFile.url);
|
|
|
|
} else {
|
2016-12-09 21:21:43 +00:00
|
|
|
script.setAttribute('data-tag', `${startTag}${resolvedFile.name}`);
|
2016-11-16 18:12:36 +00:00
|
|
|
script.removeAttribute('src');
|
|
|
|
script.innerHTML = resolvedFile.content; // eslint-disable-line
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (!(script.getAttribute('src') && script.getAttribute('src').match(EXTERNAL_LINK_REGEX)) !== null) {
|
|
|
|
script.innerHTML = this.resolveJSLinksInString(script.innerHTML, files); // eslint-disable-line
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2016-10-06 19:45:26 +00:00
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
resolveStyles(sketchDoc, files) {
|
|
|
|
const inlineCSSInHTML = sketchDoc.getElementsByTagName('style');
|
|
|
|
const inlineCSSInHTMLArray = Array.prototype.slice.call(inlineCSSInHTML);
|
|
|
|
inlineCSSInHTMLArray.forEach(style => {
|
|
|
|
style.innerHTML = this.resolveCSSLinksInString(style.innerHTML, files); // eslint-disable-line
|
|
|
|
});
|
2016-08-30 22:06:55 +00:00
|
|
|
|
2016-11-16 18:12:36 +00:00
|
|
|
const cssLinksInHTML = sketchDoc.querySelectorAll('link[rel="stylesheet"]');
|
2016-12-07 21:12:06 +00:00
|
|
|
const cssLinksInHTMLArray = Array.prototype.slice.call(cssLinksInHTML);
|
|
|
|
cssLinksInHTMLArray.forEach(css => {
|
2016-11-16 18:12:36 +00:00
|
|
|
if (css.getAttribute('href') && css.getAttribute('href').match(NOT_EXTERNAL_LINK_REGEX) !== null) {
|
|
|
|
const resolvedFile = resolvePathToFile(css.getAttribute('href'), files);
|
|
|
|
if (resolvedFile) {
|
|
|
|
if (resolvedFile.url) {
|
|
|
|
css.href = resolvedFile.url; // eslint-disable-line
|
|
|
|
} else {
|
|
|
|
const style = sketchDoc.createElement('style');
|
|
|
|
style.innerHTML = `\n${resolvedFile.content}`;
|
2016-12-13 20:37:11 +00:00
|
|
|
sketchDoc.head.appendChild(style);
|
2016-11-16 18:12:36 +00:00
|
|
|
css.parentElement.removeChild(css);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
renderSketch() {
|
2016-07-11 19:22:29 +00:00
|
|
|
const doc = ReactDOM.findDOMNode(this);
|
2016-10-06 19:45:26 +00:00
|
|
|
if (this.props.isPlaying) {
|
2016-07-11 21:21:20 +00:00
|
|
|
srcDoc.set(doc, this.injectLocalFiles());
|
2016-10-08 22:52:32 +00:00
|
|
|
if (this.props.endSketchRefresh) {
|
|
|
|
this.props.endSketchRefresh();
|
|
|
|
}
|
2016-07-11 19:22:29 +00:00
|
|
|
} else {
|
2016-07-18 00:49:10 +00:00
|
|
|
doc.srcdoc = '';
|
|
|
|
srcDoc.set(doc, ' ');
|
2016-07-11 19:22:29 +00:00
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
2016-06-27 19:47:48 +00:00
|
|
|
renderFrameContents() {
|
|
|
|
const doc = ReactDOM.findDOMNode(this).contentDocument;
|
|
|
|
if (doc.readyState === 'complete') {
|
2016-06-27 21:22:54 +00:00
|
|
|
this.renderSketch();
|
2016-06-27 19:47:48 +00:00
|
|
|
} else {
|
|
|
|
setTimeout(this.renderFrameContents, 0);
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2016-06-27 19:47:48 +00:00
|
|
|
return (
|
|
|
|
<iframe
|
|
|
|
className="preview-frame"
|
2016-08-10 21:24:52 +00:00
|
|
|
aria-label="sketch output"
|
|
|
|
role="main"
|
2016-07-13 19:23:48 +00:00
|
|
|
tabIndex="0"
|
2016-06-27 19:47:48 +00:00
|
|
|
frameBorder="0"
|
2016-10-06 17:01:48 +00:00
|
|
|
ref="iframe"
|
2016-06-27 19:47:48 +00:00
|
|
|
title="sketch output"
|
2016-10-19 17:03:19 +00:00
|
|
|
sandbox="allow-scripts allow-pointer-lock allow-same-origin allow-popups allow-forms"
|
2016-07-17 23:06:43 +00:00
|
|
|
/>
|
2016-06-27 19:47:48 +00:00
|
|
|
);
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 19:47:48 +00:00
|
|
|
PreviewFrame.propTypes = {
|
|
|
|
isPlaying: PropTypes.bool.isRequired,
|
2016-08-29 19:58:21 +00:00
|
|
|
isTextOutputPlaying: PropTypes.bool.isRequired,
|
2016-11-12 16:53:02 +00:00
|
|
|
textOutput: PropTypes.number.isRequired,
|
2016-11-23 18:35:12 +00:00
|
|
|
setTextOutput: PropTypes.func.isRequired,
|
2016-08-17 22:13:17 +00:00
|
|
|
content: PropTypes.string,
|
2016-07-11 19:22:29 +00:00
|
|
|
htmlFile: PropTypes.shape({
|
|
|
|
content: PropTypes.string.isRequired
|
|
|
|
}),
|
2016-07-21 03:02:45 +00:00
|
|
|
files: PropTypes.array.isRequired,
|
2016-08-17 22:13:17 +00:00
|
|
|
dispatchConsoleEvent: PropTypes.func,
|
2016-09-12 05:31:30 +00:00
|
|
|
children: PropTypes.element,
|
2016-09-28 22:05:14 +00:00
|
|
|
autorefresh: PropTypes.bool.isRequired,
|
|
|
|
endSketchRefresh: PropTypes.func.isRequired,
|
|
|
|
previewIsRefreshing: PropTypes.bool.isRequired,
|
2016-10-08 22:52:32 +00:00
|
|
|
fullView: PropTypes.bool,
|
2017-01-11 19:13:49 +00:00
|
|
|
setBlobUrl: PropTypes.func.isRequired,
|
|
|
|
stopSketch: PropTypes.func.isRequired,
|
|
|
|
expandConsole: PropTypes.func.isRequired
|
2016-06-27 19:47:48 +00:00
|
|
|
};
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
export default PreviewFrame;
|