import ColumnsArea from './components/columns_area';
import NotificationsContainer from './containers/notifications_container';
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';
import { debounce } from 'react-decoration';
import { uploadCompose } from '../../actions/compose';
import { connect } from 'react-redux';
const UI = React.createClass({
  getInitialState () {
    return {
      width: window.innerWidth
    };
  },
  mixins: [PureRenderMixin],
  @debounce(500)
  handleResize () {
    this.setState({ width: window.innerWidth });
  },
  handleDragOver (e) {
    e.preventDefault();
    e.stopPropagation();
    e.dataTransfer.dropEffect = 'copy';
    if (e.dataTransfer.effectAllowed === 'all' || e.dataTransfer.effectAllowed === 'uninitialized') {
      //
    }
  },
  handleDrop (e) {
    e.preventDefault();
    if (e.dataTransfer) {
      this.props.dispatch(uploadCompose(e.dataTransfer.files));
    }
  },
  componentWillMount () {
    window.addEventListener('resize', this.handleResize, { passive: true });
    window.addEventListener('dragover', this.handleDragOver);
    window.addEventListener('drop', this.handleDrop);
  },
  componentWillUnmount () {
    window.removeEventListener('resize', this.handleResize);
    window.removeEventListener('dragover', this.handleDragOver);
    window.removeEventListener('drop', this.handleDrop);
  },
  render () {
    const layoutBreakpoint = 1024;
    let mountedColumns;
    if (this.state.width <= layoutBreakpoint) {
      mountedColumns = (