2020-03-27 13:59:38 -07:00
|
|
|
import React from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
import ComposeFormContainer from '../features/compose/containers/compose_form_container';
|
|
|
|
import Avatar from '../components/avatar';
|
2020-04-14 13:45:38 -07:00
|
|
|
// import GroupSidebarPanel from '../features/groups/sidebar_panel';
|
2020-03-27 13:59:38 -07:00
|
|
|
|
2020-04-01 19:20:47 -07:00
|
|
|
const mapStateToProps = state => {
|
|
|
|
const me = state.get('me');
|
|
|
|
return {
|
2020-06-16 05:06:44 -07:00
|
|
|
me,
|
2020-04-01 19:20:47 -07:00
|
|
|
account: state.getIn(['accounts', me]),
|
2020-04-14 11:44:40 -07:00
|
|
|
};
|
2020-04-01 19:20:47 -07:00
|
|
|
};
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
export default @connect(mapStateToProps)
|
|
|
|
class HomePage extends ImmutablePureComponent {
|
2020-04-14 11:44:40 -07:00
|
|
|
|
2020-04-15 13:21:53 -07:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.composeBlock = React.createRef();
|
|
|
|
}
|
|
|
|
|
2021-06-16 11:34:54 -07:00
|
|
|
static defaultProps = {
|
|
|
|
layout: { LEFT: null, RIGHT: null },
|
|
|
|
}
|
|
|
|
|
2020-04-14 14:47:35 -07:00
|
|
|
render() {
|
2021-06-16 11:34:54 -07:00
|
|
|
const { me, children, account } = this.props;
|
|
|
|
const LAYOUT = this.props.layout || this.defaultProps.layout;
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='page'>
|
|
|
|
<div className='page__columns'>
|
|
|
|
<div className='columns-area__panels'>
|
|
|
|
|
|
|
|
<div className='columns-area__panels__pane columns-area__panels__pane--left'>
|
|
|
|
<div className='columns-area__panels__pane__inner'>
|
2021-06-16 11:34:54 -07:00
|
|
|
{LAYOUT.LEFT}
|
2020-03-27 13:59:38 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='columns-area__panels__main'>
|
|
|
|
<div className='columns-area columns-area--mobile'>
|
2021-01-27 18:40:30 -08:00
|
|
|
{me && <div className='timeline-compose-block' ref={this.composeBlock}>
|
2020-03-27 13:59:38 -07:00
|
|
|
<div className='timeline-compose-block__avatar'>
|
|
|
|
<Avatar account={account} size={46} />
|
|
|
|
</div>
|
2020-04-15 13:21:53 -07:00
|
|
|
<ComposeFormContainer
|
|
|
|
shouldCondense
|
|
|
|
autoFocus={false}
|
|
|
|
clickableAreaRef={this.composeBlock}
|
|
|
|
/>
|
2021-01-27 18:40:30 -08:00
|
|
|
</div>}
|
2020-03-27 13:59:38 -07:00
|
|
|
|
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='columns-area__panels__pane columns-area__panels__pane--right'>
|
|
|
|
<div className='columns-area__panels__pane__inner'>
|
2021-06-16 11:34:54 -07:00
|
|
|
{LAYOUT.RIGHT}
|
2020-03-27 13:59:38 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-14 11:44:40 -07:00
|
|
|
);
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|
2020-04-14 11:44:40 -07:00
|
|
|
|
2020-03-27 13:59:38 -07:00
|
|
|
}
|