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';
|
2016-08-15 16:12:25 +00:00
|
|
|
import TextOutput from '../components/TextOutput';
|
2016-06-23 22:29:55 +00:00
|
|
|
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';
|
2016-07-17 23:06:43 +00:00
|
|
|
import Console from '../components/Console';
|
2016-06-23 22:29:55 +00:00
|
|
|
import { bindActionCreators } from 'redux';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import * as FileActions from '../actions/files';
|
|
|
|
import * as IDEActions from '../actions/ide';
|
|
|
|
import * as ProjectActions from '../actions/project';
|
2016-08-11 17:29:30 +00:00
|
|
|
import * as EditorAccessibilityActions from '../actions/editorAccessibility';
|
2016-08-05 01:43:13 +00:00
|
|
|
import * as PreferencesActions from '../actions/preferences';
|
2016-08-28 00:46:20 +00:00
|
|
|
import * as UserActions from '../../User/actions';
|
2016-08-03 19:11:59 +00:00
|
|
|
import { getFile, getHTMLFile, getJSFiles, getCSSFiles, setSelectedFile } from '../reducers/files';
|
2016-08-11 19:41:13 +00:00
|
|
|
import SplitPane from 'react-split-pane';
|
2016-08-15 21:06:12 +00:00
|
|
|
import Overlay from '../../App/components/Overlay';
|
|
|
|
import SketchList from '../components/SketchList';
|
2016-08-22 16:35:59 +00:00
|
|
|
import About from '../components/About';
|
2016-06-23 22:29:55 +00:00
|
|
|
|
|
|
|
class IDEView extends React.Component {
|
2016-08-11 20:50:31 +00:00
|
|
|
constructor(props) {
|
2016-08-15 21:06:12 +00:00
|
|
|
console.log(props);
|
2016-08-11 20:50:31 +00:00
|
|
|
super(props);
|
|
|
|
this._handleConsolePaneOnDragFinished = this._handleConsolePaneOnDragFinished.bind(this);
|
|
|
|
this._handleSidebarPaneOnDragFinished = this._handleSidebarPaneOnDragFinished.bind(this);
|
|
|
|
}
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
componentDidMount() {
|
2016-08-28 01:52:00 +00:00
|
|
|
this.props.stopSketch();
|
2016-06-23 22:29:55 +00:00
|
|
|
if (this.props.params.project_id) {
|
|
|
|
const id = this.props.params.project_id;
|
|
|
|
this.props.getProject(id);
|
2016-08-03 23:03:01 +00:00
|
|
|
|
2016-08-09 22:45:59 +00:00
|
|
|
// if autosave is on and the user is the owner of the project
|
|
|
|
if (this.props.preferences.autosave
|
|
|
|
&& this.props.project.owner
|
|
|
|
&& this.props.project.owner.id === this.props.user.id) {
|
2016-08-09 21:50:45 +00:00
|
|
|
this.autosaveInterval = setInterval(this.props.saveProject, 30000);
|
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
2016-08-11 20:50:31 +00:00
|
|
|
|
|
|
|
this.consoleSize = this.props.ide.consoleIsExpanded ? 180 : 29;
|
|
|
|
this.sidebarSize = this.props.ide.sidebarIsExpanded ? 180 : 20;
|
2016-08-12 16:45:26 +00:00
|
|
|
this.forceUpdate();
|
2016-08-11 20:50:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUpdate(nextProps) {
|
|
|
|
if (this.props.ide.consoleIsExpanded !== nextProps.ide.consoleIsExpanded) {
|
|
|
|
this.consoleSize = nextProps.ide.consoleIsExpanded ? 180 : 29;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.props.ide.sidebarIsExpanded !== nextProps.ide.sidebarIsExpanded) {
|
|
|
|
this.sidebarSize = nextProps.ide.sidebarIsExpanded ? 180 : 20;
|
|
|
|
}
|
2016-08-15 21:06:12 +00:00
|
|
|
|
|
|
|
if (nextProps.params.project_id && !this.props.params.project_id) {
|
|
|
|
this.props.getProject(nextProps.params.project_id);
|
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
2016-08-04 01:47:24 +00:00
|
|
|
componentDidUpdate(prevProps) {
|
2016-08-09 22:45:59 +00:00
|
|
|
// if user is the owner of the project
|
|
|
|
if (this.props.project.owner && this.props.project.owner.id === this.props.user.id) {
|
|
|
|
// if the user turns on autosave
|
|
|
|
// or the user saves the project for the first time
|
|
|
|
if (!this.autosaveInterval &&
|
|
|
|
((this.props.preferences.autosave && !prevProps.preferences.autosave) ||
|
|
|
|
(this.props.project.id && !prevProps.project.id))) {
|
|
|
|
this.autosaveInterval = setInterval(this.props.saveProject, 30000);
|
|
|
|
// if user turns off autosave preference
|
|
|
|
} else if (this.autosaveInterval && !this.props.preferences.autosave && prevProps.preferences.autosave) {
|
|
|
|
clearInterval(this.autosaveInterval);
|
|
|
|
this.autosaveInterval = null;
|
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
2016-08-12 16:45:26 +00:00
|
|
|
|
|
|
|
if (this.autosaveInterval && !this.props.project.id) {
|
|
|
|
clearInterval(this.autosaveInterval);
|
|
|
|
this.autosaveInterval = null;
|
|
|
|
}
|
2016-06-23 22:29:55 +00:00
|
|
|
}
|
|
|
|
|
2016-08-03 23:03:01 +00:00
|
|
|
componentWillUnmount() {
|
|
|
|
clearInterval(this.autosaveInterval);
|
|
|
|
this.autosaveInterval = null;
|
2016-08-12 16:45:26 +00:00
|
|
|
this.consoleSize = undefined;
|
|
|
|
this.sidebarSize = undefined;
|
2016-08-03 23:03:01 +00:00
|
|
|
}
|
|
|
|
|
2016-08-11 20:50:31 +00:00
|
|
|
_handleConsolePaneOnDragFinished() {
|
|
|
|
this.consoleSize = this.refs.consolePane.state.draggedSize;
|
|
|
|
this.refs.consolePane.setState({
|
|
|
|
resized: false,
|
|
|
|
draggedSize: undefined,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
_handleSidebarPaneOnDragFinished() {
|
2016-08-12 16:45:26 +00:00
|
|
|
console.log('setting sidebar size');
|
2016-08-11 20:50:31 +00:00
|
|
|
this.sidebarSize = this.refs.sidebarPane.state.draggedSize;
|
|
|
|
this.refs.sidebarPane.setState({
|
|
|
|
resized: false,
|
|
|
|
draggedSize: undefined
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="ide">
|
|
|
|
<Nav
|
|
|
|
user={this.props.user}
|
2016-08-12 16:45:26 +00:00
|
|
|
newProject={this.props.newProject}
|
2016-06-23 22:29:55 +00:00
|
|
|
saveProject={this.props.saveProject}
|
2016-07-15 17:11:50 +00:00
|
|
|
exportProjectAsZip={this.props.exportProjectAsZip}
|
2016-07-15 17:36:33 +00:00
|
|
|
cloneProject={this.props.cloneProject}
|
2016-08-17 22:35:15 +00:00
|
|
|
project={this.props.project}
|
2016-08-28 00:46:20 +00:00
|
|
|
logoutUser={this.props.logoutUser}
|
2016-08-28 01:52:00 +00:00
|
|
|
stopSketch={this.props.stopSketch}
|
2016-06-23 22:29:55 +00:00
|
|
|
/>
|
|
|
|
<Toolbar
|
|
|
|
className="Toolbar"
|
|
|
|
isPlaying={this.props.ide.isPlaying}
|
|
|
|
startSketch={this.props.startSketch}
|
|
|
|
stopSketch={this.props.stopSketch}
|
2016-08-12 20:37:38 +00:00
|
|
|
startTextOutput={this.props.startTextOutput}
|
|
|
|
stopTextOutput={this.props.stopTextOutput}
|
2016-06-23 22:29:55 +00:00
|
|
|
projectName={this.props.project.name}
|
|
|
|
setProjectName={this.props.setProjectName}
|
2016-08-15 16:42:13 +00:00
|
|
|
showEditProjectName={this.props.showEditProjectName}
|
|
|
|
hideEditProjectName={this.props.hideEditProjectName}
|
2016-06-23 22:29:55 +00:00
|
|
|
openPreferences={this.props.openPreferences}
|
2016-08-01 17:55:49 +00:00
|
|
|
preferencesIsVisible={this.props.ide.preferencesIsVisible}
|
2016-08-12 20:37:38 +00:00
|
|
|
setTextOutput={this.props.setTextOutput}
|
2016-07-15 15:54:47 +00:00
|
|
|
owner={this.props.project.owner}
|
2016-08-15 16:42:13 +00:00
|
|
|
project={this.props.project}
|
2016-06-23 22:29:55 +00:00
|
|
|
/>
|
|
|
|
<Preferences
|
2016-08-01 17:55:49 +00:00
|
|
|
isVisible={this.props.ide.preferencesIsVisible}
|
2016-06-23 22:29:55 +00:00
|
|
|
closePreferences={this.props.closePreferences}
|
2016-08-05 01:43:13 +00:00
|
|
|
fontSize={this.props.preferences.fontSize}
|
|
|
|
indentationAmount={this.props.preferences.indentationAmount}
|
|
|
|
setIndentation={this.props.setIndentation}
|
|
|
|
indentWithSpace={this.props.indentWithSpace}
|
|
|
|
indentWithTab={this.props.indentWithTab}
|
|
|
|
isTabIndent={this.props.preferences.isTabIndent}
|
|
|
|
setFontSize={this.props.setFontSize}
|
2016-08-09 20:15:28 +00:00
|
|
|
autosave={this.props.preferences.autosave}
|
|
|
|
setAutosave={this.props.setAutosave}
|
2016-08-11 18:09:59 +00:00
|
|
|
lintWarning={this.props.preferences.lintWarning}
|
|
|
|
setLintWarning={this.props.setLintWarning}
|
2016-08-12 19:50:33 +00:00
|
|
|
textOutput={this.props.preferences.textOutput}
|
|
|
|
setTextOutput={this.props.setTextOutput}
|
2016-06-23 22:29:55 +00:00
|
|
|
/>
|
2016-07-21 04:05:47 +00:00
|
|
|
<div className="editor-preview-container">
|
2016-08-11 20:50:31 +00:00
|
|
|
<SplitPane
|
|
|
|
split="vertical"
|
|
|
|
defaultSize={this.sidebarSize}
|
|
|
|
ref="sidebarPane"
|
|
|
|
onDragFinished={this._handleSidebarPaneOnDragFinished}
|
|
|
|
allowResize={this.props.ide.sidebarIsExpanded}
|
2016-08-12 16:45:26 +00:00
|
|
|
minSize={20}
|
2016-08-11 20:50:31 +00:00
|
|
|
>
|
2016-08-11 19:41:13 +00:00
|
|
|
<Sidebar
|
2016-07-21 04:05:47 +00:00
|
|
|
files={this.props.files}
|
2016-08-11 19:41:13 +00:00
|
|
|
setSelectedFile={this.props.setSelectedFile}
|
|
|
|
newFile={this.props.newFile}
|
|
|
|
isExpanded={this.props.ide.sidebarIsExpanded}
|
|
|
|
expandSidebar={this.props.expandSidebar}
|
|
|
|
collapseSidebar={this.props.collapseSidebar}
|
|
|
|
showFileOptions={this.props.showFileOptions}
|
|
|
|
hideFileOptions={this.props.hideFileOptions}
|
|
|
|
deleteFile={this.props.deleteFile}
|
|
|
|
showEditFileName={this.props.showEditFileName}
|
|
|
|
hideEditFileName={this.props.hideEditFileName}
|
|
|
|
updateFileName={this.props.updateFileName}
|
2016-07-21 04:05:47 +00:00
|
|
|
/>
|
2016-08-11 19:41:13 +00:00
|
|
|
<SplitPane
|
|
|
|
split="vertical"
|
|
|
|
defaultSize={'50%'}
|
|
|
|
onChange={() => (this.refs.overlay.style.display = 'block')}
|
|
|
|
onDragFinished={() => (this.refs.overlay.style.display = 'none')}
|
|
|
|
>
|
2016-08-11 20:50:31 +00:00
|
|
|
<SplitPane
|
|
|
|
split="horizontal"
|
|
|
|
primary="second"
|
|
|
|
defaultSize={this.consoleSize}
|
|
|
|
minSize={29}
|
|
|
|
ref="consolePane"
|
|
|
|
onDragFinished={this._handleConsolePaneOnDragFinished}
|
|
|
|
allowResize={this.props.ide.consoleIsExpanded}
|
|
|
|
>
|
2016-08-11 19:41:13 +00:00
|
|
|
<Editor
|
2016-08-12 00:59:01 +00:00
|
|
|
lintWarning={this.props.preferences.lintWarning}
|
|
|
|
lintMessages={this.props.editorAccessibility.lintMessages}
|
|
|
|
updateLineNumber={this.props.updateLineNumber}
|
|
|
|
updateLintMessage={this.props.updateLintMessage}
|
|
|
|
clearLintMessage={this.props.clearLintMessage}
|
2016-08-11 19:41:13 +00:00
|
|
|
file={this.props.selectedFile}
|
|
|
|
updateFileContent={this.props.updateFileContent}
|
|
|
|
fontSize={this.props.preferences.fontSize}
|
|
|
|
indentationAmount={this.props.preferences.indentationAmount}
|
|
|
|
isTabIndent={this.props.preferences.isTabIndent}
|
2016-08-12 01:29:43 +00:00
|
|
|
files={this.props.files}
|
2016-08-12 00:59:01 +00:00
|
|
|
lintMessages={this.props.editorAccessibility.lintMessages}
|
2016-08-12 18:23:34 +00:00
|
|
|
lineNumber={this.props.editorAccessibility.lineNumber}
|
2016-08-11 19:41:13 +00:00
|
|
|
/>
|
|
|
|
<Console
|
|
|
|
consoleEvent={this.props.ide.consoleEvent}
|
|
|
|
isPlaying={this.props.ide.isPlaying}
|
|
|
|
isExpanded={this.props.ide.consoleIsExpanded}
|
|
|
|
expandConsole={this.props.expandConsole}
|
|
|
|
collapseConsole={this.props.collapseConsole}
|
|
|
|
/>
|
|
|
|
</SplitPane>
|
|
|
|
<div>
|
|
|
|
<div className="preview-frame-overlay" ref="overlay">
|
|
|
|
</div>
|
2016-08-15 22:06:09 +00:00
|
|
|
<div>
|
2016-08-15 16:12:25 +00:00
|
|
|
{(() => {
|
2016-08-19 16:44:44 +00:00
|
|
|
if ((this.props.preferences.textOutput && this.props.ide.isPlaying) || this.props.ide.isTextOutputPlaying) {
|
2016-08-15 16:12:25 +00:00
|
|
|
return (
|
|
|
|
<TextOutput />
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
})()}
|
2016-08-15 22:06:09 +00:00
|
|
|
</div>
|
2016-08-11 19:41:13 +00:00
|
|
|
<PreviewFrame
|
|
|
|
htmlFile={this.props.htmlFile}
|
|
|
|
jsFiles={this.props.jsFiles}
|
|
|
|
cssFiles={this.props.cssFiles}
|
|
|
|
files={this.props.files}
|
|
|
|
content={this.props.selectedFile.content}
|
|
|
|
head={
|
|
|
|
<link type="text/css" rel="stylesheet" href="/preview-styles.css" />
|
|
|
|
}
|
|
|
|
isPlaying={this.props.ide.isPlaying}
|
2016-08-12 20:37:38 +00:00
|
|
|
isTextOutputPlaying={this.props.ide.isTextOutputPlaying}
|
2016-08-12 19:50:33 +00:00
|
|
|
textOutput={this.props.preferences.textOutput}
|
2016-08-11 19:41:13 +00:00
|
|
|
dispatchConsoleEvent={this.props.dispatchConsoleEvent}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</SplitPane>
|
|
|
|
</SplitPane>
|
2016-07-21 04:05:47 +00:00
|
|
|
</div>
|
2016-07-20 22:37:49 +00:00
|
|
|
{(() => {
|
|
|
|
if (this.props.ide.modalIsVisible) {
|
|
|
|
return (
|
|
|
|
<NewFileModal
|
2016-07-21 02:18:20 +00:00
|
|
|
canUploadMedia={this.props.user.authenticated}
|
2016-07-20 22:37:49 +00:00
|
|
|
closeModal={this.props.closeNewFileModal}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
})()}
|
2016-08-15 21:06:12 +00:00
|
|
|
{(() => { // eslint-disable-line
|
2016-08-17 19:53:25 +00:00
|
|
|
if (this.props.location.pathname.match(/sketches$/)) {
|
2016-08-15 21:06:12 +00:00
|
|
|
return (
|
|
|
|
<Overlay>
|
2016-08-17 19:53:25 +00:00
|
|
|
<SketchList username={this.props.params.username} />
|
2016-08-15 21:06:12 +00:00
|
|
|
</Overlay>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})()}
|
2016-08-22 16:35:59 +00:00
|
|
|
{(() => { // eslint-disable-line
|
|
|
|
if (this.props.location.pathname === '/about') {
|
|
|
|
return (
|
|
|
|
<Overlay>
|
|
|
|
<About />
|
|
|
|
</Overlay>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})()}
|
2016-06-23 22:29:55 +00:00
|
|
|
</div>
|
2016-07-17 23:06:43 +00:00
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-27 19:34:58 +00:00
|
|
|
IDEView.propTypes = {
|
|
|
|
params: PropTypes.shape({
|
2016-08-17 19:53:25 +00:00
|
|
|
project_id: PropTypes.string,
|
|
|
|
username: PropTypes.string
|
2016-06-27 19:34:58 +00:00
|
|
|
}),
|
2016-08-15 21:06:12 +00:00
|
|
|
location: PropTypes.shape({
|
|
|
|
pathname: PropTypes.string
|
|
|
|
}),
|
2016-06-27 19:34:58 +00:00
|
|
|
getProject: PropTypes.func.isRequired,
|
2016-07-21 02:18:20 +00:00
|
|
|
user: PropTypes.shape({
|
2016-08-09 22:45:59 +00:00
|
|
|
authenticated: PropTypes.bool.isRequired,
|
|
|
|
id: PropTypes.string
|
2016-07-21 02:18:20 +00:00
|
|
|
}).isRequired,
|
2016-08-12 16:45:26 +00:00
|
|
|
newProject: PropTypes.func.isRequired,
|
2016-06-27 19:34:58 +00:00
|
|
|
saveProject: PropTypes.func.isRequired,
|
|
|
|
ide: PropTypes.shape({
|
2016-07-13 20:13:28 +00:00
|
|
|
isPlaying: PropTypes.bool.isRequired,
|
2016-08-12 20:37:38 +00:00
|
|
|
isTextOutputPlaying: PropTypes.bool.isRequired,
|
2016-07-17 23:15:13 +00:00
|
|
|
consoleEvent: PropTypes.object,
|
2016-07-14 16:47:54 +00:00
|
|
|
modalIsVisible: PropTypes.bool.isRequired,
|
2016-07-21 04:33:41 +00:00
|
|
|
sidebarIsExpanded: PropTypes.bool.isRequired,
|
2016-08-01 17:55:49 +00:00
|
|
|
consoleIsExpanded: PropTypes.bool.isRequired,
|
|
|
|
preferencesIsVisible: PropTypes.bool.isRequired
|
2016-06-27 19:34:58 +00:00
|
|
|
}).isRequired,
|
|
|
|
startSketch: PropTypes.func.isRequired,
|
|
|
|
stopSketch: PropTypes.func.isRequired,
|
2016-08-12 20:37:38 +00:00
|
|
|
startTextOutput: PropTypes.func.isRequired,
|
|
|
|
stopTextOutput: PropTypes.func.isRequired,
|
2016-06-27 19:34:58 +00:00
|
|
|
project: PropTypes.shape({
|
2016-08-04 01:47:24 +00:00
|
|
|
id: PropTypes.string,
|
2016-07-15 15:54:47 +00:00
|
|
|
name: PropTypes.string.isRequired,
|
|
|
|
owner: PropTypes.shape({
|
2016-08-09 22:45:59 +00:00
|
|
|
username: PropTypes.string,
|
|
|
|
id: PropTypes.string
|
2016-07-15 15:54:47 +00:00
|
|
|
})
|
2016-06-27 19:34:58 +00:00
|
|
|
}).isRequired,
|
|
|
|
setProjectName: PropTypes.func.isRequired,
|
|
|
|
openPreferences: PropTypes.func.isRequired,
|
2016-08-11 17:29:30 +00:00
|
|
|
editorAccessibility: PropTypes.shape({
|
2016-08-11 17:24:02 +00:00
|
|
|
lintMessages: PropTypes.array.isRequired,
|
2016-08-12 18:23:34 +00:00
|
|
|
lineNumber: PropTypes.string.isRequired
|
2016-08-10 15:13:17 +00:00
|
|
|
}).isRequired,
|
2016-08-11 17:24:02 +00:00
|
|
|
updateLintMessage: PropTypes.func.isRequired,
|
|
|
|
clearLintMessage: PropTypes.func.isRequired,
|
|
|
|
updateLineNumber: PropTypes.func.isRequired,
|
2016-06-27 19:34:58 +00:00
|
|
|
preferences: PropTypes.shape({
|
2016-07-06 15:27:39 +00:00
|
|
|
fontSize: PropTypes.number.isRequired,
|
2016-07-11 02:52:48 +00:00
|
|
|
indentationAmount: PropTypes.number.isRequired,
|
2016-08-09 20:15:28 +00:00
|
|
|
isTabIndent: PropTypes.bool.isRequired,
|
2016-08-11 18:09:59 +00:00
|
|
|
autosave: PropTypes.bool.isRequired,
|
2016-08-12 19:50:33 +00:00
|
|
|
lintWarning: PropTypes.bool.isRequired,
|
|
|
|
textOutput: PropTypes.bool.isRequired
|
2016-06-27 19:34:58 +00:00
|
|
|
}).isRequired,
|
|
|
|
closePreferences: PropTypes.func.isRequired,
|
2016-08-05 01:43:13 +00:00
|
|
|
setFontSize: PropTypes.func.isRequired,
|
|
|
|
setIndentation: PropTypes.func.isRequired,
|
|
|
|
indentWithTab: PropTypes.func.isRequired,
|
|
|
|
indentWithSpace: PropTypes.func.isRequired,
|
2016-08-09 20:15:28 +00:00
|
|
|
setAutosave: PropTypes.func.isRequired,
|
2016-08-11 18:09:59 +00:00
|
|
|
setLintWarning: PropTypes.func.isRequired,
|
2016-08-12 19:50:33 +00:00
|
|
|
setTextOutput: 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,
|
2016-07-17 23:15:13 +00:00
|
|
|
dispatchConsoleEvent: PropTypes.func.isRequired,
|
2016-07-13 20:13:28 +00:00
|
|
|
newFile: PropTypes.func.isRequired,
|
2016-07-14 16:47:54 +00:00
|
|
|
closeNewFileModal: PropTypes.func.isRequired,
|
|
|
|
expandSidebar: PropTypes.func.isRequired,
|
2016-07-15 17:11:50 +00:00
|
|
|
collapseSidebar: PropTypes.func.isRequired,
|
2016-07-15 17:36:33 +00:00
|
|
|
exportProjectAsZip: PropTypes.func.isRequired,
|
2016-07-21 04:33:41 +00:00
|
|
|
cloneProject: PropTypes.func.isRequired,
|
|
|
|
expandConsole: PropTypes.func.isRequired,
|
|
|
|
collapseConsole: PropTypes.func.isRequired,
|
2016-08-03 19:11:59 +00:00
|
|
|
showFileOptions: PropTypes.func.isRequired,
|
|
|
|
hideFileOptions: PropTypes.func.isRequired,
|
2016-08-03 21:10:03 +00:00
|
|
|
deleteFile: PropTypes.func.isRequired,
|
|
|
|
showEditFileName: PropTypes.func.isRequired,
|
|
|
|
hideEditFileName: PropTypes.func.isRequired,
|
2016-08-15 16:42:13 +00:00
|
|
|
updateFileName: PropTypes.func.isRequired,
|
|
|
|
showEditProjectName: PropTypes.func.isRequired,
|
2016-08-28 00:46:20 +00:00
|
|
|
hideEditProjectName: PropTypes.func.isRequired,
|
|
|
|
logoutUser: PropTypes.func.isRequired
|
2016-06-27 19:34:58 +00:00
|
|
|
};
|
|
|
|
|
2016-06-23 22:29:55 +00:00
|
|
|
function mapStateToProps(state) {
|
|
|
|
return {
|
2016-08-03 19:11:59 +00:00
|
|
|
files: setSelectedFile(state.files, state.ide.selectedFile),
|
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,
|
2016-08-11 17:29:30 +00:00
|
|
|
editorAccessibility: state.editorAccessibility,
|
2016-06-23 22:29:55 +00:00
|
|
|
user: state.user,
|
|
|
|
project: state.project
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function mapDispatchToProps(dispatch) {
|
|
|
|
return bindActionCreators(Object.assign({},
|
2016-08-11 17:29:30 +00:00
|
|
|
EditorAccessibilityActions,
|
2016-06-23 22:29:55 +00:00
|
|
|
FileActions,
|
|
|
|
ProjectActions,
|
2016-08-05 01:43:13 +00:00
|
|
|
IDEActions,
|
2016-08-28 00:46:20 +00:00
|
|
|
PreferencesActions,
|
|
|
|
UserActions),
|
2016-06-23 22:29:55 +00:00
|
|
|
dispatch);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(IDEView);
|