2016-11-21 04:03:55 -05:00
|
|
|
import ColumnsArea from './components/columns_area';
|
2016-09-19 17:25:59 -04:00
|
|
|
import NotificationsContainer from './containers/notifications_container';
|
2016-11-21 04:03:55 -05:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import LoadingBarContainer from './containers/loading_bar_container';
|
|
|
|
import HomeTimeline from '../home_timeline';
|
|
|
|
import MentionsTimeline from '../mentions_timeline';
|
|
|
|
import Compose from '../compose';
|
|
|
|
import TabsBar from './components/tabs_bar';
|
|
|
|
import ModalContainer from './containers/modal_container';
|
|
|
|
import Notifications from '../notifications';
|
2017-01-19 04:54:18 -05:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { isMobile } from '../../is_mobile';
|
2016-12-06 13:18:37 -05:00
|
|
|
import { debounce } from 'react-decoration';
|
2016-12-11 17:35:06 -05:00
|
|
|
import { uploadCompose } from '../../actions/compose';
|
2017-01-19 04:54:18 -05:00
|
|
|
import { refreshTimeline } from '../../actions/timelines';
|
|
|
|
import { refreshNotifications } from '../../actions/notifications';
|
2016-09-19 17:25:59 -04:00
|
|
|
|
|
|
|
const UI = React.createClass({
|
|
|
|
|
2017-01-06 16:09:55 -05:00
|
|
|
propTypes: {
|
|
|
|
dispatch: React.PropTypes.func.isRequired,
|
|
|
|
children: React.PropTypes.node
|
|
|
|
},
|
|
|
|
|
2016-12-06 13:18:37 -05:00
|
|
|
getInitialState () {
|
|
|
|
return {
|
|
|
|
width: window.innerWidth
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2016-09-19 17:25:59 -04:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-12-06 13:18:37 -05:00
|
|
|
@debounce(500)
|
|
|
|
handleResize () {
|
|
|
|
this.setState({ width: window.innerWidth });
|
|
|
|
},
|
|
|
|
|
2016-12-11 17:35:06 -05:00
|
|
|
handleDragOver (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
e.dataTransfer.dropEffect = 'copy';
|
|
|
|
|
|
|
|
if (e.dataTransfer.effectAllowed === 'all' || e.dataTransfer.effectAllowed === 'uninitialized') {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
handleDrop (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
2017-01-06 16:09:55 -05:00
|
|
|
if (e.dataTransfer && e.dataTransfer.files.length === 1) {
|
2016-12-11 17:35:06 -05:00
|
|
|
this.props.dispatch(uploadCompose(e.dataTransfer.files));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-12-06 13:18:37 -05:00
|
|
|
componentWillMount () {
|
|
|
|
window.addEventListener('resize', this.handleResize, { passive: true });
|
2016-12-11 17:35:06 -05:00
|
|
|
window.addEventListener('dragover', this.handleDragOver);
|
|
|
|
window.addEventListener('drop', this.handleDrop);
|
2017-01-19 04:54:18 -05:00
|
|
|
|
|
|
|
this.props.dispatch(refreshTimeline('home'));
|
|
|
|
this.props.dispatch(refreshNotifications());
|
2016-12-06 13:18:37 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('resize', this.handleResize);
|
2016-12-11 17:35:06 -05:00
|
|
|
window.removeEventListener('dragover', this.handleDragOver);
|
|
|
|
window.removeEventListener('drop', this.handleDrop);
|
2016-12-06 13:18:37 -05:00
|
|
|
},
|
|
|
|
|
2016-09-19 17:25:59 -04:00
|
|
|
render () {
|
2016-12-06 13:18:37 -05:00
|
|
|
let mountedColumns;
|
|
|
|
|
2017-01-08 05:04:01 -05:00
|
|
|
if (isMobile(this.state.width)) {
|
2016-12-06 13:18:37 -05:00
|
|
|
mountedColumns = (
|
|
|
|
<ColumnsArea>
|
|
|
|
{this.props.children}
|
|
|
|
</ColumnsArea>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
mountedColumns = (
|
|
|
|
<ColumnsArea>
|
2017-01-06 16:09:55 -05:00
|
|
|
<Compose withHeader={true} />
|
2016-12-06 13:18:37 -05:00
|
|
|
<HomeTimeline trackScroll={false} />
|
|
|
|
<Notifications trackScroll={false} />
|
|
|
|
{this.props.children}
|
|
|
|
</ColumnsArea>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-19 17:25:59 -04:00
|
|
|
return (
|
2016-10-12 07:17:17 -04:00
|
|
|
<div style={{ flex: '0 0 auto', display: 'flex', flexDirection: 'column', width: '100%', height: '100%', background: '#1a1c23' }}>
|
2016-12-06 13:18:37 -05:00
|
|
|
<TabsBar />
|
2016-09-19 17:25:59 -04:00
|
|
|
|
2016-12-06 13:18:37 -05:00
|
|
|
{mountedColumns}
|
2016-09-19 17:25:59 -04:00
|
|
|
|
|
|
|
<NotificationsContainer />
|
2016-09-19 19:53:30 -04:00
|
|
|
<LoadingBarContainer style={{ backgroundColor: '#2b90d9', left: '0', top: '0' }} />
|
2016-10-24 12:07:40 -04:00
|
|
|
<ModalContainer />
|
2016-09-19 17:25:59 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-12-11 17:35:06 -05:00
|
|
|
export default connect()(UI);
|