2018-02-07 18:06:07 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import React from 'react';
|
2018-10-18 18:10:37 +00:00
|
|
|
import Helmet from 'react-helmet';
|
2016-08-17 22:13:17 +00:00
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import PreviewFrame from '../components/PreviewFrame';
|
2018-10-18 18:10:37 +00:00
|
|
|
import PreviewNav from '../../../components/PreviewNav';
|
2016-08-17 22:13:17 +00:00
|
|
|
import { getHTMLFile, getJSFiles, getCSSFiles } from '../reducers/files';
|
|
|
|
import * as ProjectActions from '../actions/project';
|
|
|
|
|
|
|
|
class FullView extends React.Component {
|
|
|
|
componentDidMount() {
|
2020-06-08 08:50:58 +00:00
|
|
|
this.props.getProject(this.props.params.project_id, this.props.params.username);
|
2016-08-17 22:13:17 +00:00
|
|
|
}
|
|
|
|
|
2018-10-18 18:10:37 +00:00
|
|
|
ident = () => {}
|
|
|
|
|
2016-08-17 22:13:17 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="fullscreen-preview">
|
2018-10-18 18:10:37 +00:00
|
|
|
<Helmet>
|
|
|
|
<title>{this.props.project.name}</title>
|
|
|
|
</Helmet>
|
|
|
|
<PreviewNav
|
|
|
|
owner={{ username: this.props.project.owner ? `${this.props.project.owner.username}` : '' }}
|
|
|
|
project={{ name: this.props.project.name, id: this.props.params.project_id }}
|
|
|
|
/>
|
2020-05-19 19:34:00 +00:00
|
|
|
<main className="preview-frame-holder">
|
2016-08-17 22:13:17 +00:00
|
|
|
<PreviewFrame
|
|
|
|
htmlFile={this.props.htmlFile}
|
|
|
|
jsFiles={this.props.jsFiles}
|
|
|
|
cssFiles={this.props.cssFiles}
|
|
|
|
files={this.props.files}
|
|
|
|
head={
|
|
|
|
<link type="text/css" rel="stylesheet" href="/preview-styles.css" />
|
|
|
|
}
|
2016-10-08 22:52:32 +00:00
|
|
|
fullView
|
2016-08-17 22:13:17 +00:00
|
|
|
isPlaying
|
2018-10-18 18:10:37 +00:00
|
|
|
isAccessibleOutputPlaying={false}
|
|
|
|
textOutput={false}
|
|
|
|
gridOutput={false}
|
|
|
|
soundOutput={false}
|
|
|
|
dispatchConsoleEvent={this.ident}
|
|
|
|
endSketchRefresh={this.ident}
|
|
|
|
previewIsRefreshing={false}
|
|
|
|
setBlobUrl={this.ident}
|
|
|
|
stopSketch={this.ident}
|
|
|
|
expandConsole={this.ident}
|
2019-05-01 19:31:55 +00:00
|
|
|
clearConsole={this.ident}
|
2016-08-17 22:13:17 +00:00
|
|
|
/>
|
2020-05-19 19:34:00 +00:00
|
|
|
</main>
|
2016-08-17 22:13:17 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FullView.propTypes = {
|
|
|
|
params: PropTypes.shape({
|
2020-06-08 08:50:58 +00:00
|
|
|
project_id: PropTypes.string,
|
|
|
|
username: PropTypes.string
|
2017-02-22 19:29:35 +00:00
|
|
|
}).isRequired,
|
2016-08-17 22:13:17 +00:00
|
|
|
project: PropTypes.shape({
|
|
|
|
name: PropTypes.string,
|
|
|
|
owner: PropTypes.shape({
|
|
|
|
username: PropTypes.string
|
|
|
|
})
|
|
|
|
}).isRequired,
|
2017-02-22 19:29:35 +00:00
|
|
|
htmlFile: PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
content: PropTypes.string.isRequired,
|
|
|
|
name: PropTypes.string.isRequired
|
|
|
|
}).isRequired,
|
|
|
|
jsFiles: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
content: PropTypes.string.isRequired,
|
|
|
|
name: PropTypes.string.isRequired
|
|
|
|
})).isRequired,
|
|
|
|
cssFiles: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
content: PropTypes.string.isRequired,
|
|
|
|
name: PropTypes.string.isRequired
|
|
|
|
})).isRequired,
|
2016-08-17 22:13:17 +00:00
|
|
|
getProject: PropTypes.func.isRequired,
|
2017-02-22 19:29:35 +00:00
|
|
|
files: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
id: PropTypes.string.isRequired,
|
|
|
|
content: PropTypes.string.isRequired,
|
|
|
|
name: PropTypes.string.isRequired
|
|
|
|
})).isRequired,
|
2016-08-17 22:13:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function mapStateToProps(state) {
|
|
|
|
return {
|
|
|
|
user: state.user,
|
|
|
|
htmlFile: getHTMLFile(state.files),
|
|
|
|
jsFiles: getJSFiles(state.files),
|
|
|
|
cssFiles: getCSSFiles(state.files),
|
|
|
|
project: state.project,
|
|
|
|
files: state.files
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
|
|
return bindActionCreators(ProjectActions, dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(FullView);
|