♻️ refactor call to PreviewFrame#renderSketch

This commit is contained in:
ghalestrilo 2020-06-19 15:55:37 -03:00
parent a11bc44634
commit 776c3d2caf
2 changed files with 54 additions and 77 deletions

View file

@ -22,6 +22,24 @@ import {
import { hijackConsoleErrorsScript, startTag, getAllScriptOffsets } import { hijackConsoleErrorsScript, startTag, getAllScriptOffsets }
from '../../../utils/consoleUtils'; from '../../../utils/consoleUtils';
// Kept inside class just for linter's
const shouldRenderSketch = (props, prevProps = undefined) => {
const { isPlaying, previewIsRefreshing, fullView } = props;
// if the user explicitly clicks on the play button
if (isPlaying && previewIsRefreshing) return true;
if (!prevProps) return false;
return (props.isPlaying !== prevProps.isPlaying // if sketch starts or stops playing, want to rerender
|| props.isAccessibleOutputPlaying !== prevProps.isAccessibleOutputPlaying // if user switches textoutput preferences
|| props.textOutput !== prevProps.textOutput
|| props.gridOutput !== prevProps.gridOutput
|| props.soundOutput !== prevProps.soundOutput
|| (fullView && props.files[0].id !== prevProps.files[0].id));
};
class PreviewFrame extends React.Component { class PreviewFrame extends React.Component {
constructor(props) { constructor(props) {
super(props); super(props);
@ -29,54 +47,18 @@ class PreviewFrame extends React.Component {
} }
componentDidMount() { componentDidMount() {
console.log(`componentDidMount: ${this.props.isPlaying}`);
window.addEventListener('message', this.handleConsoleEvent); window.addEventListener('message', this.handleConsoleEvent);
// TODO: maybe encapsulate this into a function (together with code from componentDidUpdate) const props = {
if (this.props.isPlaying && this.props.previewIsRefreshing) { ...this.props,
this.renderSketch(); previewIsRefreshing: this.props.previewIsRefreshing,
} isAccessibleOutputPlaying: this.props.isAccessibleOutputPlaying
};
if (shouldRenderSketch(props)) this.renderSketch();
} }
componentDidUpdate(prevProps) { componentDidUpdate(prevProps) {
console.log(`componentDidUpdate: ${this.props.isPlaying}`); if (shouldRenderSketch(this.props, prevProps)) this.renderSketch();
// if sketch starts or stops playing, want to rerender
if (this.props.isPlaying !== prevProps.isPlaying) {
this.renderSketch();
return;
}
// if the user explicitly clicks on the play button
if (this.props.isPlaying && this.props.previewIsRefreshing) {
this.renderSketch();
return;
}
// if user switches textoutput preferences
if (this.props.isAccessibleOutputPlaying !== prevProps.isAccessibleOutputPlaying) {
this.renderSketch();
return;
}
if (this.props.textOutput !== prevProps.textOutput) {
this.renderSketch();
return;
}
if (this.props.gridOutput !== prevProps.gridOutput) {
this.renderSketch();
return;
}
if (this.props.soundOutput !== prevProps.soundOutput) {
this.renderSketch();
return;
}
if (this.props.fullView && this.props.files[0].id !== prevProps.files[0].id) {
this.renderSketch();
}
// small bug - if autorefresh is on, and the usr changes files // small bug - if autorefresh is on, and the usr changes files
// in the sketch, preview will reload // in the sketch, preview will reload
} }

View file

@ -1,3 +1,4 @@
/* eslint-disable */
import React from 'react'; import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { Link } from 'react-router'; import { Link } from 'react-router';
@ -13,8 +14,6 @@ import * as PreferencesActions from '../IDE/actions/preferences';
import * as ConsoleActions from '../IDE/actions/console'; import * as ConsoleActions from '../IDE/actions/console';
import * as FilesActions from '../IDE/actions/files'; import * as FilesActions from '../IDE/actions/files';
import FullView from '../IDE/pages/FullView';
import { getHTMLFile } from '../IDE/reducers/files'; import { getHTMLFile } from '../IDE/reducers/files';
@ -24,7 +23,7 @@ import { remSize } from '../../theme';
const Content = styled.div` const Content = styled.div`
z-index: 0; z-index: 0;
margin-top: ${remSize(48)}; margin-top: ${remSize(68)};
`; `;
const IconLinkWrapper = styled(Link)` const IconLinkWrapper = styled(Link)`
@ -41,7 +40,7 @@ const MobileSketchView = (props) => {
// const files = useSelector(state => state.files); // const files = useSelector(state => state.files);
const { const {
htmlFile, files, selectedFile htmlFile, files, selectedFile, projectName
} = props; } = props;
// Actions // Actions
@ -66,43 +65,37 @@ const MobileSketchView = (props) => {
<ExitIcon viewBox="0 0 16 16" /> <ExitIcon viewBox="0 0 16 16" />
</IconLinkWrapper> </IconLinkWrapper>
<div> <div>
<h2>Hello</h2> <h2>{projectName}</h2>
<h3><br /></h3> <h3><br /></h3>
</div> </div>
</Header> </Header>
<Content> <Content>
<h1>Hello</h1> <PreviewFrame
<section className="preview-frame-holder"> htmlFile={htmlFile}
<PreviewFrame files={files}
htmlFile={htmlFile} head={<link type="text/css" rel="stylesheet" href="/preview-styles.css" />}
files={files}
head={
<link type="text/css" rel="stylesheet" href="/preview-styles.css" />
}
content={selectedFile.content} content={selectedFile.content}
fullView isPlaying
isPlaying isAccessibleOutputPlaying={ide.isAccessibleOutputPlaying}
isAccessibleOutputPlaying={ide.isAccessibleOutputPlaying} previewIsRefreshing={ide.previewIsRefreshing}
previewIsRefreshing={ide.previewIsRefreshing}
textOutput={preferences.textOutput} textOutput={preferences.textOutput}
gridOutput={preferences.gridOutput} gridOutput={preferences.gridOutput}
soundOutput={preferences.soundOutput} soundOutput={preferences.soundOutput}
autorefresh={preferences.autorefresh} autorefresh={preferences.autorefresh}
setTextOutput={setTextOutput} setTextOutput={setTextOutput}
setGridOutput={setGridOutput} setGridOutput={setGridOutput}
setSoundOutput={setSoundOutput} setSoundOutput={setSoundOutput}
dispatchConsoleEvent={dispatchConsoleEvent} dispatchConsoleEvent={dispatchConsoleEvent}
endSketchRefresh={endSketchRefresh} endSketchRefresh={endSketchRefresh}
stopSketch={stopSketch} stopSketch={stopSketch}
setBlobUrl={setBlobUrl} setBlobUrl={setBlobUrl}
expandConsole={expandConsole} expandConsole={expandConsole}
clearConsole={clearConsole} clearConsole={clearConsole}
/> />
</section>
</Content> </Content>
</Screen>); </Screen>);
}; };
@ -171,6 +164,8 @@ MobileSketchView.propTypes = {
uploadFileModalVisible: PropTypes.bool.isRequired uploadFileModalVisible: PropTypes.bool.isRequired
}).isRequired, }).isRequired,
projectName: PropTypes.func.isRequired,
setTextOutput: PropTypes.func.isRequired, setTextOutput: PropTypes.func.isRequired,
setGridOutput: PropTypes.func.isRequired, setGridOutput: PropTypes.func.isRequired,
setSoundOutput: PropTypes.func.isRequired, setSoundOutput: PropTypes.func.isRequired,
@ -185,7 +180,7 @@ MobileSketchView.propTypes = {
function mapStateToProps(state) { function mapStateToProps(state) {
return { return {
htmlFile: getHTMLFile(state.files), htmlFile: getHTMLFile(state.files),
project: state.project, projectName: state.project.name,
files: state.files, files: state.files,
ide: state.ide, ide: state.ide,
preferences: state.preferences, preferences: state.preferences,