p5.js-web-editor/shared/containers/IDEView/IDEView.jsx

56 lines
1.7 KiB
React
Raw Normal View History

2016-05-18 17:37:59 +00:00
import React from 'react'
2016-05-05 23:01:31 +00:00
import Editor from '../../components/Editor/Editor'
2016-05-09 22:28:38 +00:00
import PreviewFrame from '../../components/Preview/PreviewFrame'
2016-05-11 17:19:37 +00:00
import Toolbar from '../../components/Toolbar/Toolbar'
2016-06-17 17:37:29 +00:00
import Preferences from '../../components/Preferences/Preferences'
2016-05-05 23:01:31 +00:00
import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import * as FileActions from '../../redux/actions'
2016-05-18 17:37:59 +00:00
class IDEView extends React.Component {
2016-05-05 23:01:31 +00:00
render() {
return (
2016-05-18 17:37:59 +00:00
<div className="ide">
<Toolbar
className="Toolbar"
2016-05-11 20:13:17 +00:00
isPlaying={this.props.ide.isPlaying}
2016-06-17 17:37:29 +00:00
startSketch={this.props.startSketch}
stopSketch={this.props.stopSketch}
2016-06-17 18:31:33 +00:00
openPreferences={this.props.openPreferences}
2016-06-17 17:37:29 +00:00
isPreferencesShowing = {this.props.preferences.isPreferencesShowing}
/>
<Preferences
isPreferencesShowing = {this.props.preferences.isPreferencesShowing}
2016-06-20 18:58:15 +00:00
closePreferences={this.props.closePreferences}
increaseFont={this.props.increaseFont}
decreaseFont={this.props.decreaseFont}
fontSize={this.props.preferences.fontSize}/>
2016-06-17 17:37:29 +00:00
<Editor
content={this.props.file.content}
2016-06-20 18:58:15 +00:00
updateFile={this.props.updateFile}
fontSize={this.props.preferences.fontSize} />
2016-06-17 17:37:29 +00:00
<PreviewFrame
content={this.props.file.content}
2016-05-11 02:22:32 +00:00
head={
<link type='text/css' rel='stylesheet' href='preview-styles.css' />
2016-05-11 20:13:17 +00:00
}
isPlaying={this.props.ide.isPlaying}/>
</div>
2016-05-18 17:37:59 +00:00
)
2016-05-05 23:01:31 +00:00
}
}
function mapStateToProps(state) {
return {
2016-05-11 20:13:17 +00:00
file: state.file,
2016-06-17 17:37:29 +00:00
ide: state.ide,
preferences: state.preferences
2016-05-05 23:01:31 +00:00
}
}
function mapDispatchToProps(dispatch) {
return bindActionCreators(FileActions, dispatch);
}
2016-05-18 17:37:59 +00:00
export default connect(mapStateToProps, mapDispatchToProps)(IDEView);