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

57 lines
1.7 KiB
React
Raw Normal View History

2016-05-06 01:01:31 +02:00
import React from 'react';
import Editor from '../../components/Editor/Editor'
2016-05-10 00:28:38 +02:00
import PreviewFrame from '../../components/Preview/PreviewFrame'
import Preview from '../../components/Preview/Preview'
2016-05-11 19:19:37 +02:00
import Toolbar from '../../components/Toolbar/Toolbar'
2016-06-17 19:37:29 +02:00
import Preferences from '../../components/Preferences/Preferences'
2016-05-06 01:01:31 +02: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 04:22:32 +02:00
<div className="app">
2016-06-17 19:37:29 +02:00
<Toolbar
2016-05-11 22:13:17 +02:00
className="toolbar"
isPlaying={this.props.ide.isPlaying}
2016-06-17 19:37:29 +02:00
startSketch={this.props.startSketch}
stopSketch={this.props.stopSketch}
2016-06-17 20:31:33 +02:00
openPreferences={this.props.openPreferences}
2016-06-17 19:37:29 +02:00
isPreferencesShowing = {this.props.preferences.isPreferencesShowing}
/>
<Preferences
isPreferencesShowing = {this.props.preferences.isPreferencesShowing}
2016-06-20 20:58:15 +02:00
closePreferences={this.props.closePreferences}
increaseFont={this.props.increaseFont}
decreaseFont={this.props.decreaseFont}
fontSize={this.props.preferences.fontSize}/>
2016-06-17 19:37:29 +02:00
<Editor
content={this.props.file.content}
2016-06-20 20:58:15 +02:00
updateFile={this.props.updateFile}
fontSize={this.props.preferences.fontSize} />
2016-06-17 19:37:29 +02:00
<PreviewFrame
content={this.props.file.content}
2016-05-11 04:22:32 +02:00
head={
<link type='text/css' rel='stylesheet' href='preview-styles.css' />
2016-05-11 22:13:17 +02:00
}
isPlaying={this.props.ide.isPlaying}/>
</div>
2016-05-06 01:01:31 +02:00
);
}
}
function mapStateToProps(state) {
return {
2016-05-11 22:13:17 +02:00
file: state.file,
2016-06-17 19:37:29 +02:00
ide: state.ide,
preferences: state.preferences
2016-05-06 01:01:31 +02:00
}
}
function mapDispatchToProps(dispatch) {
return bindActionCreators(FileActions, dispatch);
}
2016-06-17 19:37:29 +02:00
export default connect(mapStateToProps, mapDispatchToProps)(App);