You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
import Drawer from './components/drawer'; |
|
import ComposeFormContainer from './containers/compose_form_container'; |
|
import UploadFormContainer from './containers/upload_form_container'; |
|
import NavigationContainer from './containers/navigation_container'; |
|
import PureRenderMixin from 'react-addons-pure-render-mixin'; |
|
import SearchContainer from './containers/search_container'; |
|
import { connect } from 'react-redux'; |
|
import { mountCompose, unmountCompose } from '../../actions/compose'; |
|
|
|
const Compose = React.createClass({ |
|
|
|
propTypes: { |
|
dispatch: React.PropTypes.func.isRequired, |
|
withHeader: React.PropTypes.bool |
|
}, |
|
|
|
mixins: [PureRenderMixin], |
|
|
|
componentDidMount () { |
|
this.props.dispatch(mountCompose()); |
|
}, |
|
|
|
componentWillUnmount () { |
|
this.props.dispatch(unmountCompose()); |
|
}, |
|
|
|
render () { |
|
return ( |
|
<Drawer withHeader={this.props.withHeader}> |
|
<SearchContainer /> |
|
<NavigationContainer /> |
|
<ComposeFormContainer /> |
|
<UploadFormContainer /> |
|
</Drawer> |
|
); |
|
} |
|
|
|
}); |
|
|
|
export default connect()(Compose);
|
|
|