2016-05-05 23:01:31 +00:00
|
|
|
import React from 'react';
|
|
|
|
import Editor from '../../components/Editor/Editor'
|
2016-05-09 22:28:38 +00:00
|
|
|
import PreviewFrame from '../../components/Preview/PreviewFrame'
|
2016-05-09 20:13:37 +00:00
|
|
|
import Preview from '../../components/Preview/Preview'
|
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'
|
|
|
|
|
|
|
|
class App extends React.Component {
|
|
|
|
render() {
|
|
|
|
return (
|
2016-05-11 02:22:32 +00:00
|
|
|
<div className="app">
|
2016-06-17 17:37:29 +00:00
|
|
|
<Toolbar
|
2016-05-11 20:13:17 +00:00
|
|
|
className="toolbar"
|
|
|
|
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}
|
|
|
|
/>
|
2016-06-20 16:04:58 +00:00
|
|
|
<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
|
2016-05-09 20:13:37 +00:00
|
|
|
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}/>
|
2016-05-09 20:13:37 +00:00
|
|
|
</div>
|
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-06-17 17:37:29 +00:00
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(App);
|