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

43 lines
1.1 KiB
JavaScript

import React from 'react';
import Editor from '../../components/Editor/Editor'
import PreviewFrame from '../../components/Preview/PreviewFrame'
import Preview from '../../components/Preview/Preview'
import Toolbar from '../../components/Toolbar/Toolbar'
import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import * as FileActions from '../../redux/actions'
class App extends React.Component {
render() {
return (
<div className="app">
<Toolbar
className="toolbar"
isPlaying={this.props.ide.isPlaying}
toggleSketch={this.props.toggleSketch} />
<Editor
content={this.props.file.content}
updateFile={this.props.updateFile} />
<PreviewFrame
content={this.props.file.content}
head={
<link type='text/css' rel='stylesheet' href='preview-styles.css' />
}
isPlaying={this.props.ide.isPlaying}/>
</div>
);
}
}
function mapStateToProps(state) {
return {
file: state.file,
ide: state.ide
}
}
function mapDispatchToProps(dispatch) {
return bindActionCreators(FileActions, dispatch);
}
export default connect(mapStateToProps, mapDispatchToProps)(App);