2016-06-27 19:34:58 +00:00
|
|
|
import React, { PropTypes } from 'react';
|
2016-06-23 22:29:55 +00:00
|
|
|
import Editor from '../components/Editor';
|
2016-07-06 19:09:05 +00:00
|
|
|
import Sidebar from '../components/Sidebar';
|
2016-06-23 22:29:55 +00:00
|
|
|
import PreviewFrame from '../components/PreviewFrame';
|
|
|
|
import Toolbar from '../components/Toolbar';
|
|
|
|
import Preferences from '../components/Preferences';
|
2016-07-13 20:13:28 +00:00
|
|
|
import NewFileModal from '../components/NewFileModal';
|
2016-06-23 22:29:55 +00:00
|
|
|
import Nav from '../../../components/Nav';
|
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import * as FileActions from '../actions/files';
|
|
|
|
import * as IDEActions from '../actions/ide';
|
|
|
|
import * as PreferencesActions from '../actions/preferences';
|
|
|
|
import * as ProjectActions from '../actions/project';
|
2016-07-12 01:54:08 +00:00
|
|
|
import { getFile, getHTMLFile, getJSFiles, getCSSFiles } from '../reducers/files';
|
2016-06-23 22:29:55 +00:00
|
|
|
|
|
|
|
class IDEView extends React.Component {
|
|
|
|
componentDidMount() {
|
|
|
|
if (this.props.params.project_id) {
|
|
|
|
const id = this.props.params.project_id;
|
|
|
|
this.props.getProject(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="ide">
|
|
|
|
<Nav
|
|
|
|
user={this.props.user}
|
|
|
|
createProject={this.props.createProject}
|
|
|
|
saveProject={this.props.saveProject}
|
|
|
|
/>
|
|
|
|
<Toolbar
|
|
|
|
className="Toolbar"
|
|
|
|
isPlaying={this.props.ide.isPlaying}
|
|
|
|
startSketch={this.props.startSketch}
|
|
|
|
stopSketch={this.props.stopSketch}
|
|
|
|
projectName={this.props.project.name}
|
|
|
|
setProjectName={this.props.setProjectName}
|
|
|
|
openPreferences={this.props.openPreferences}
|
|
|
|
isPreferencesVisible={this.props.preferences.isVisible}
|
|
|
|
/>
|
|
|
|
<Preferences
|
|
|
|
isVisible={this.props.preferences.isVisible}
|
|
|
|
closePreferences={this.props.closePreferences}
|
|
|
|
increaseFont={this.props.increaseFont}
|
|
|
|
decreaseFont={this.props.decreaseFont}
|
2016-07-11 00:13:37 +00:00
|
|
|
updateFont={this.props.updateFont}
|
2016-06-23 22:29:55 +00:00
|
|
|
fontSize={this.props.preferences.fontSize}
|
2016-07-06 15:27:39 +00:00
|
|
|
increaseIndentation={this.props.increaseIndentation}
|
|
|
|
decreaseIndentation={this.props.decreaseIndentation}
|
2016-07-11 00:13:37 +00:00
|
|
|
updateIndentation={this.props.updateIndentation}
|
2016-07-06 15:27:39 +00:00
|
|
|
indentationAmount={this.props.preferences.indentationAmount}
|
2016-07-11 02:52:48 +00:00
|
|
|
isTabIndent={this.props.preferences.isTabIndent}
|
|
|
|
indentWithSpace={this.props.indentWithSpace}
|
|
|
|
indentWithTab={this.props.indentWithTab}
|
2016-06-23 22:29:55 +00:00
|
|
|
/>
|
2016-07-08 18:57:22 +00:00
|
|
|
<Sidebar
|
|
|
|
files={this.props.files}
|
|
|
|
selectedFile={this.props.selectedFile}
|
2016-07-08 19:58:49 +00:00
|
|
|
setSelectedFile={this.props.setSelectedFile}
|
2016-07-13 20:13:28 +00:00
|
|
|
newFile={this.props.newFile}
|
2016-07-08 18:57:22 +00:00
|
|
|
/>
|
2016-06-23 22:29:55 +00:00
|
|
|
<Editor
|
2016-07-08 19:58:49 +00:00
|
|
|
file={this.props.selectedFile}
|
2016-07-07 17:50:52 +00:00
|
|
|
updateFileContent={this.props.updateFileContent}
|
2016-06-23 22:29:55 +00:00
|
|
|
fontSize={this.props.preferences.fontSize}
|
2016-07-06 15:27:39 +00:00
|
|
|
indentationAmount={this.props.preferences.indentationAmount}
|
2016-07-11 02:52:48 +00:00
|
|
|
isTabIndent={this.props.preferences.isTabIndent}
|
2016-07-08 18:57:22 +00:00
|
|
|
files={this.props.files}
|
2016-06-23 22:29:55 +00:00
|
|
|
/>
|
|
|
|
<PreviewFrame
|
2016-07-11 19:22:29 +00:00
|
|
|
htmlFile={this.props.htmlFile}
|
|
|
|
jsFiles={this.props.jsFiles}
|
2016-07-12 01:54:08 +00:00
|
|
|
cssFiles={this.props.cssFiles}
|
2016-07-11 19:22:29 +00:00
|
|
|
files={this.props.files}
|
2016-07-08 18:57:22 +00:00
|
|
|
content={this.props.selectedFile.content}
|
2016-06-23 22:29:55 +00:00
|
|
|
head={
|
|
|
|
<link type="text/css" rel="stylesheet" href="/preview-styles.css" />
|
|
|
|
}
|
|
|
|
isPlaying={this.props.ide.isPlaying}
|
|
|
|
/>
|
2016-07-13 20:13:28 +00:00
|
|
|
<NewFileModal
|
|
|
|
isVisible={this.props.ide.modalIsVisible}
|
|
|
|
closeModal={this.props.closeNewFileModal}
|
|
|
|
/>
|
2016-06-23 22:29:55 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 19:34:58 +00:00
|
|
|
IDEView.propTypes = {
|
|
|
|
params: PropTypes.shape({
|
|
|
|
project_id: PropTypes.string
|
|
|
|
}),
|
|
|
|
getProject: PropTypes.func.isRequired,
|
|
|
|
user: PropTypes.object.isRequired,
|
|
|
|
createProject: PropTypes.func.isRequired,
|
|
|
|
saveProject: PropTypes.func.isRequired,
|
|
|
|
ide: PropTypes.shape({
|
2016-07-13 20:13:28 +00:00
|
|
|
isPlaying: PropTypes.bool.isRequired,
|
|
|
|
modalIsVisible: PropTypes.bool.isRequired
|
2016-06-27 19:34:58 +00:00
|
|
|
}).isRequired,
|
|
|
|
startSketch: PropTypes.func.isRequired,
|
|
|
|
stopSketch: PropTypes.func.isRequired,
|
|
|
|
project: PropTypes.shape({
|
|
|
|
name: PropTypes.string.isRequired
|
|
|
|
}).isRequired,
|
|
|
|
setProjectName: PropTypes.func.isRequired,
|
|
|
|
openPreferences: PropTypes.func.isRequired,
|
|
|
|
preferences: PropTypes.shape({
|
|
|
|
isVisible: PropTypes.bool.isRequired,
|
2016-07-06 15:27:39 +00:00
|
|
|
fontSize: PropTypes.number.isRequired,
|
2016-07-11 02:52:48 +00:00
|
|
|
indentationAmount: PropTypes.number.isRequired,
|
|
|
|
isTabIndent: PropTypes.bool.isRequired
|
2016-06-27 19:34:58 +00:00
|
|
|
}).isRequired,
|
|
|
|
closePreferences: PropTypes.func.isRequired,
|
|
|
|
increaseFont: PropTypes.func.isRequired,
|
|
|
|
decreaseFont: PropTypes.func.isRequired,
|
2016-07-11 00:13:37 +00:00
|
|
|
updateFont: PropTypes.func.isRequired,
|
2016-07-06 15:27:39 +00:00
|
|
|
increaseIndentation: PropTypes.func.isRequired,
|
|
|
|
decreaseIndentation: PropTypes.func.isRequired,
|
2016-07-11 00:13:37 +00:00
|
|
|
updateIndentation: PropTypes.func.isRequired,
|
2016-07-11 02:52:48 +00:00
|
|
|
indentWithSpace: PropTypes.func.isRequired,
|
|
|
|
indentWithTab: PropTypes.func.isRequired,
|
2016-07-06 19:09:05 +00:00
|
|
|
files: PropTypes.array.isRequired,
|
2016-07-08 18:57:22 +00:00
|
|
|
updateFileContent: PropTypes.func.isRequired,
|
|
|
|
selectedFile: PropTypes.shape({
|
2016-07-08 19:58:49 +00:00
|
|
|
id: PropTypes.string.isRequired,
|
2016-06-27 19:34:58 +00:00
|
|
|
content: PropTypes.string.isRequired
|
2016-07-08 19:58:49 +00:00
|
|
|
}),
|
2016-07-11 19:22:29 +00:00
|
|
|
setSelectedFile: PropTypes.func.isRequired,
|
|
|
|
htmlFile: PropTypes.object.isRequired,
|
2016-07-12 01:54:08 +00:00
|
|
|
jsFiles: PropTypes.array.isRequired,
|
2016-07-13 20:13:28 +00:00
|
|
|
cssFiles: PropTypes.array.isRequired,
|
|
|
|
newFile: PropTypes.func.isRequired,
|
|
|
|
closeNewFileModal: PropTypes.func.isRequired
|
2016-06-27 19:34:58 +00:00
|
|
|
};
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
function mapStateToProps(state) {
|
|
|
|
return {
|
2016-07-06 19:09:05 +00:00
|
|
|
files: state.files,
|
2016-07-08 18:57:22 +00:00
|
|
|
selectedFile: getFile(state.files, state.ide.selectedFile),
|
2016-07-11 19:22:29 +00:00
|
|
|
htmlFile: getHTMLFile(state.files),
|
|
|
|
jsFiles: getJSFiles(state.files),
|
2016-07-12 01:54:08 +00:00
|
|
|
cssFiles: getCSSFiles(state.files),
|
2016-06-23 22:29:55 +00:00
|
|
|
ide: state.ide,
|
|
|
|
preferences: state.preferences,
|
|
|
|
user: state.user,
|
|
|
|
project: state.project
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
|
|
return bindActionCreators(Object.assign({},
|
|
|
|
FileActions,
|
|
|
|
ProjectActions,
|
|
|
|
IDEActions,
|
|
|
|
PreferencesActions),
|
|
|
|
dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(IDEView);
|