parent
5fdcd08add
commit
61f20d1d4c
2 changed files with 17 additions and 29 deletions
|
@ -1,12 +1,14 @@
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { bindActionCreators } from 'redux';
|
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { withRouter } from 'react-router';
|
import { withRouter } from 'react-router';
|
||||||
import { Link } from 'react-router';
|
import { Link } from 'react-router';
|
||||||
import InlineSVG from 'react-inlinesvg';
|
import InlineSVG from 'react-inlinesvg';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import * as IDEActions from '../modules/IDE/actions/ide';
|
import * as IDEActions from '../modules/IDE/actions/ide';
|
||||||
|
import * as projectActions from '../modules/IDE/actions/project';
|
||||||
|
import { setAllAccessibleOutput } from '../modules/IDE/actions/preferences';
|
||||||
|
import { logoutUser } from '../modules/User/actions';
|
||||||
|
|
||||||
import { metaKeyName, } from '../utils/metaKey';
|
import { metaKeyName, } from '../utils/metaKey';
|
||||||
|
|
||||||
|
@ -600,15 +602,20 @@ Nav.defaultProps = {
|
||||||
cmController: {}
|
cmController: {}
|
||||||
};
|
};
|
||||||
|
|
||||||
function mapDispatchToProps(dispatch) {
|
function mapStateToProps(state) {
|
||||||
return bindActionCreators(
|
return {
|
||||||
Object.assign(
|
project: state.project,
|
||||||
{},
|
user: state.user,
|
||||||
IDEActions
|
unsavedChanges: state.ide.unsavedChanges
|
||||||
),
|
};
|
||||||
dispatch
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default withRouter(connect(() => ({}), mapDispatchToProps)(Nav));
|
const mapDispatchToProps = {
|
||||||
|
...IDEActions,
|
||||||
|
...projectActions,
|
||||||
|
logoutUser,
|
||||||
|
setAllAccessibleOutput
|
||||||
|
};
|
||||||
|
|
||||||
|
export default withRouter(connect(mapStateToProps, mapDispatchToProps)(Nav));
|
||||||
export { Nav as NavComponent };
|
export { Nav as NavComponent };
|
||||||
|
|
|
@ -209,23 +209,8 @@ class IDEView extends React.Component {
|
||||||
</Helmet>
|
</Helmet>
|
||||||
{this.props.toast.isVisible && <Toast />}
|
{this.props.toast.isVisible && <Toast />}
|
||||||
<Nav
|
<Nav
|
||||||
user={this.props.user}
|
|
||||||
newProject={this.props.newProject}
|
|
||||||
saveProject={this.props.saveProject}
|
|
||||||
autosaveProject={this.props.autosaveProject}
|
|
||||||
exportProjectAsZip={this.props.exportProjectAsZip}
|
|
||||||
cloneProject={this.props.cloneProject}
|
|
||||||
project={this.props.project}
|
|
||||||
logoutUser={this.props.logoutUser}
|
|
||||||
startSketch={this.props.startSketch}
|
|
||||||
stopSketch={this.props.stopSketch}
|
|
||||||
showShareModal={this.props.showShareModal}
|
|
||||||
showErrorModal={this.props.showErrorModal}
|
|
||||||
unsavedChanges={this.props.ide.unsavedChanges}
|
|
||||||
warnIfUnsavedChanges={this.warnIfUnsavedChanges}
|
warnIfUnsavedChanges={this.warnIfUnsavedChanges}
|
||||||
showKeyboardShortcutModal={this.props.showKeyboardShortcutModal}
|
|
||||||
cmController={this.cmController}
|
cmController={this.cmController}
|
||||||
setAllAccessibleOutput={this.props.setAllAccessibleOutput}
|
|
||||||
/>
|
/>
|
||||||
<Toolbar
|
<Toolbar
|
||||||
className="Toolbar"
|
className="Toolbar"
|
||||||
|
@ -527,7 +512,6 @@ IDEView.propTypes = {
|
||||||
id: PropTypes.string,
|
id: PropTypes.string,
|
||||||
username: PropTypes.string
|
username: PropTypes.string
|
||||||
}).isRequired,
|
}).isRequired,
|
||||||
newProject: PropTypes.func.isRequired,
|
|
||||||
saveProject: PropTypes.func.isRequired,
|
saveProject: PropTypes.func.isRequired,
|
||||||
ide: PropTypes.shape({
|
ide: PropTypes.shape({
|
||||||
isPlaying: PropTypes.bool.isRequired,
|
isPlaying: PropTypes.bool.isRequired,
|
||||||
|
@ -615,7 +599,6 @@ IDEView.propTypes = {
|
||||||
closeNewFileModal: PropTypes.func.isRequired,
|
closeNewFileModal: PropTypes.func.isRequired,
|
||||||
expandSidebar: PropTypes.func.isRequired,
|
expandSidebar: PropTypes.func.isRequired,
|
||||||
collapseSidebar: PropTypes.func.isRequired,
|
collapseSidebar: PropTypes.func.isRequired,
|
||||||
exportProjectAsZip: PropTypes.func.isRequired,
|
|
||||||
cloneProject: PropTypes.func.isRequired,
|
cloneProject: PropTypes.func.isRequired,
|
||||||
expandConsole: PropTypes.func.isRequired,
|
expandConsole: PropTypes.func.isRequired,
|
||||||
collapseConsole: PropTypes.func.isRequired,
|
collapseConsole: PropTypes.func.isRequired,
|
||||||
|
@ -623,14 +606,12 @@ IDEView.propTypes = {
|
||||||
updateFileName: PropTypes.func.isRequired,
|
updateFileName: PropTypes.func.isRequired,
|
||||||
showEditProjectName: PropTypes.func.isRequired,
|
showEditProjectName: PropTypes.func.isRequired,
|
||||||
hideEditProjectName: PropTypes.func.isRequired,
|
hideEditProjectName: PropTypes.func.isRequired,
|
||||||
logoutUser: PropTypes.func.isRequired,
|
|
||||||
openProjectOptions: PropTypes.func.isRequired,
|
openProjectOptions: PropTypes.func.isRequired,
|
||||||
closeProjectOptions: PropTypes.func.isRequired,
|
closeProjectOptions: PropTypes.func.isRequired,
|
||||||
newFolder: PropTypes.func.isRequired,
|
newFolder: PropTypes.func.isRequired,
|
||||||
closeNewFolderModal: PropTypes.func.isRequired,
|
closeNewFolderModal: PropTypes.func.isRequired,
|
||||||
createFolder: PropTypes.func.isRequired,
|
createFolder: PropTypes.func.isRequired,
|
||||||
createFile: PropTypes.func.isRequired,
|
createFile: PropTypes.func.isRequired,
|
||||||
showShareModal: PropTypes.func.isRequired,
|
|
||||||
closeShareModal: PropTypes.func.isRequired,
|
closeShareModal: PropTypes.func.isRequired,
|
||||||
showEditorOptions: PropTypes.func.isRequired,
|
showEditorOptions: PropTypes.func.isRequired,
|
||||||
closeEditorOptions: PropTypes.func.isRequired,
|
closeEditorOptions: PropTypes.func.isRequired,
|
||||||
|
|
Loading…
Reference in a new issue