2016-11-21 09:03:55 +00:00
|
|
|
import ColumnsArea from './components/columns_area';
|
2016-09-19 21:25:59 +00:00
|
|
|
import NotificationsContainer from './containers/notifications_container';
|
2016-11-21 09:03:55 +00:00
|
|
|
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
|
|
|
import LoadingBarContainer from './containers/loading_bar_container';
|
|
|
|
import HomeTimeline from '../home_timeline';
|
|
|
|
import Compose from '../compose';
|
|
|
|
import TabsBar from './components/tabs_bar';
|
|
|
|
import ModalContainer from './containers/modal_container';
|
|
|
|
import Notifications from '../notifications';
|
2017-01-19 09:54:18 +00:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { isMobile } from '../../is_mobile';
|
2016-12-06 18:18:37 +00:00
|
|
|
import { debounce } from 'react-decoration';
|
2016-12-11 22:35:06 +00:00
|
|
|
import { uploadCompose } from '../../actions/compose';
|
2017-01-19 09:54:18 +00:00
|
|
|
import { refreshTimeline } from '../../actions/timelines';
|
|
|
|
import { refreshNotifications } from '../../actions/notifications';
|
2017-03-24 02:50:30 +00:00
|
|
|
import UploadArea from './components/upload_area';
|
2016-09-19 21:25:59 +00:00
|
|
|
|
|
|
|
const UI = React.createClass({
|
|
|
|
|
2017-01-06 21:09:55 +00:00
|
|
|
propTypes: {
|
|
|
|
dispatch: React.PropTypes.func.isRequired,
|
|
|
|
children: React.PropTypes.node
|
|
|
|
},
|
|
|
|
|
2016-12-06 18:18:37 +00:00
|
|
|
getInitialState () {
|
|
|
|
return {
|
2017-03-24 02:50:30 +00:00
|
|
|
width: window.innerWidth,
|
|
|
|
draggingOver: false
|
2016-12-06 18:18:37 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2016-09-19 21:25:59 +00:00
|
|
|
mixins: [PureRenderMixin],
|
|
|
|
|
2016-12-06 18:18:37 +00:00
|
|
|
@debounce(500)
|
|
|
|
handleResize () {
|
|
|
|
this.setState({ width: window.innerWidth });
|
|
|
|
},
|
|
|
|
|
2017-03-31 09:48:25 +00:00
|
|
|
handleDragEnter (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
if (!this.dragTargets) {
|
|
|
|
this.dragTargets = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.dragTargets.indexOf(e.target) === -1) {
|
|
|
|
this.dragTargets.push(e.target);
|
|
|
|
}
|
|
|
|
|
2017-04-01 20:11:28 +00:00
|
|
|
if (e.dataTransfer && e.dataTransfer.files.length > 0) {
|
|
|
|
this.setState({ draggingOver: true });
|
|
|
|
}
|
2017-03-31 09:48:25 +00:00
|
|
|
},
|
|
|
|
|
2016-12-11 22:35:06 +00:00
|
|
|
handleDragOver (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2017-03-31 09:48:25 +00:00
|
|
|
try {
|
|
|
|
e.dataTransfer.dropEffect = 'copy';
|
|
|
|
} catch (err) {
|
2016-12-11 22:35:06 +00:00
|
|
|
|
|
|
|
}
|
2017-03-31 09:48:25 +00:00
|
|
|
|
|
|
|
return false;
|
2016-12-11 22:35:06 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
handleDrop (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
2017-03-28 12:17:24 +00:00
|
|
|
this.setState({ draggingOver: false });
|
|
|
|
|
2017-01-06 21:09:55 +00:00
|
|
|
if (e.dataTransfer && e.dataTransfer.files.length === 1) {
|
2016-12-11 22:35:06 +00:00
|
|
|
this.props.dispatch(uploadCompose(e.dataTransfer.files));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-03-31 09:48:25 +00:00
|
|
|
handleDragLeave (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
this.dragTargets = this.dragTargets.filter(el => el !== e.target && this.node.contains(el));
|
|
|
|
|
|
|
|
if (this.dragTargets.length > 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-03-24 02:50:30 +00:00
|
|
|
this.setState({ draggingOver: false });
|
|
|
|
},
|
|
|
|
|
2016-12-06 18:18:37 +00:00
|
|
|
componentWillMount () {
|
|
|
|
window.addEventListener('resize', this.handleResize, { passive: true });
|
2017-03-31 09:48:25 +00:00
|
|
|
document.addEventListener('dragenter', this.handleDragEnter, false);
|
|
|
|
document.addEventListener('dragover', this.handleDragOver, false);
|
|
|
|
document.addEventListener('drop', this.handleDrop, false);
|
|
|
|
document.addEventListener('dragleave', this.handleDragLeave, false);
|
2017-01-19 09:54:18 +00:00
|
|
|
|
|
|
|
this.props.dispatch(refreshTimeline('home'));
|
|
|
|
this.props.dispatch(refreshNotifications());
|
2016-12-06 18:18:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('resize', this.handleResize);
|
2017-03-31 09:48:25 +00:00
|
|
|
document.removeEventListener('dragenter', this.handleDragEnter);
|
|
|
|
document.removeEventListener('dragover', this.handleDragOver);
|
|
|
|
document.removeEventListener('drop', this.handleDrop);
|
|
|
|
document.removeEventListener('dragleave', this.handleDragLeave);
|
|
|
|
},
|
|
|
|
|
|
|
|
setRef (c) {
|
|
|
|
this.node = c;
|
2016-12-06 18:18:37 +00:00
|
|
|
},
|
|
|
|
|
2016-09-19 21:25:59 +00:00
|
|
|
render () {
|
2017-03-24 02:50:30 +00:00
|
|
|
const { width, draggingOver } = this.state;
|
|
|
|
const { children } = this.props;
|
|
|
|
|
2016-12-06 18:18:37 +00:00
|
|
|
let mountedColumns;
|
|
|
|
|
2017-03-24 02:50:30 +00:00
|
|
|
if (isMobile(width)) {
|
2016-12-06 18:18:37 +00:00
|
|
|
mountedColumns = (
|
|
|
|
<ColumnsArea>
|
2017-03-24 02:50:30 +00:00
|
|
|
{children}
|
2016-12-06 18:18:37 +00:00
|
|
|
</ColumnsArea>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
mountedColumns = (
|
|
|
|
<ColumnsArea>
|
2017-01-06 21:09:55 +00:00
|
|
|
<Compose withHeader={true} />
|
2016-12-06 18:18:37 +00:00
|
|
|
<HomeTimeline trackScroll={false} />
|
|
|
|
<Notifications trackScroll={false} />
|
2017-03-24 02:50:30 +00:00
|
|
|
{children}
|
2016-12-06 18:18:37 +00:00
|
|
|
</ColumnsArea>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-09-19 21:25:59 +00:00
|
|
|
return (
|
2017-03-31 09:48:25 +00:00
|
|
|
<div className='ui' ref={this.setRef}>
|
2016-12-06 18:18:37 +00:00
|
|
|
<TabsBar />
|
2016-09-19 21:25:59 +00:00
|
|
|
|
2016-12-06 18:18:37 +00:00
|
|
|
{mountedColumns}
|
2016-09-19 21:25:59 +00:00
|
|
|
|
|
|
|
<NotificationsContainer />
|
2016-09-19 23:53:30 +00:00
|
|
|
<LoadingBarContainer style={{ backgroundColor: '#2b90d9', left: '0', top: '0' }} />
|
2016-10-24 16:07:40 +00:00
|
|
|
<ModalContainer />
|
2017-03-24 02:50:30 +00:00
|
|
|
<UploadArea active={draggingOver} />
|
2016-09-19 21:25:59 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2017-02-05 03:11:14 +00:00
|
|
|
export default connect()(UI);
|