2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2018-09-02 09:51:06 -04:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-06-03 19:39:38 -04:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-07-07 18:06:02 -04:00
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
import ReactSwipeableViews from 'react-swipeable-views';
|
2019-05-22 19:35:22 -04:00
|
|
|
import TabsBar, { links, getIndex, getLink } from './tabs_bar';
|
2018-03-02 01:12:40 -05:00
|
|
|
import { Link } from 'react-router-dom';
|
2016-08-24 11:56:44 -04:00
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
import BundleContainer from '../containers/bundle_container';
|
|
|
|
import ColumnLoading from './column_loading';
|
2017-09-10 02:48:11 -04:00
|
|
|
import DrawerLoading from './drawer_loading';
|
2017-07-07 18:06:02 -04:00
|
|
|
import BundleColumnError from './bundle_column_error';
|
2018-04-18 07:09:06 -04:00
|
|
|
import { Compose, Notifications, HomeTimeline, CommunityTimeline, PublicTimeline, HashtagTimeline, DirectTimeline, FavouritedStatuses, ListTimeline } from '../../ui/util/async-components';
|
2019-01-31 18:14:05 -05:00
|
|
|
import Icon from 'mastodon/components/icon';
|
2017-07-07 18:06:02 -04:00
|
|
|
|
2017-08-29 11:06:19 -04:00
|
|
|
import detectPassiveEvents from 'detect-passive-events';
|
2017-08-04 12:57:46 -04:00
|
|
|
import { scrollRight } from '../../../scroll';
|
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
const componentMap = {
|
|
|
|
'COMPOSE': Compose,
|
|
|
|
'HOME': HomeTimeline,
|
|
|
|
'NOTIFICATIONS': Notifications,
|
|
|
|
'PUBLIC': PublicTimeline,
|
|
|
|
'COMMUNITY': CommunityTimeline,
|
|
|
|
'HASHTAG': HashtagTimeline,
|
2018-04-18 07:09:06 -04:00
|
|
|
'DIRECT': DirectTimeline,
|
2017-07-14 18:49:34 -04:00
|
|
|
'FAVOURITES': FavouritedStatuses,
|
2017-11-24 18:35:37 -05:00
|
|
|
'LIST': ListTimeline,
|
2017-06-03 19:39:38 -04:00
|
|
|
};
|
|
|
|
|
2018-09-02 09:51:06 -04:00
|
|
|
const messages = defineMessages({
|
|
|
|
publish: { id: 'compose_form.publish', defaultMessage: 'Toot' },
|
|
|
|
});
|
|
|
|
|
2019-01-17 03:22:12 -05:00
|
|
|
const shouldHideFAB = path => path.match(/^\/statuses\/|^\/search|^\/getting-started/);
|
2018-03-22 04:33:14 -04:00
|
|
|
|
2018-09-14 11:59:48 -04:00
|
|
|
export default @(component => injectIntl(component, { withRef: true }))
|
|
|
|
class ColumnsArea extends ImmutablePureComponent {
|
2016-08-31 10:15:12 -04:00
|
|
|
|
2017-06-08 11:41:32 -04:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
2017-07-23 08:03:35 -04:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-06-03 19:39:38 -04:00
|
|
|
columns: ImmutablePropTypes.list.isRequired,
|
2018-01-15 00:51:00 -05:00
|
|
|
isModalOpen: PropTypes.bool.isRequired,
|
2017-06-03 19:39:38 -04:00
|
|
|
singleColumn: PropTypes.bool,
|
2017-05-20 11:31:47 -04:00
|
|
|
children: PropTypes.node,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
|
|
|
|
2017-07-15 11:25:04 -04:00
|
|
|
state = {
|
|
|
|
shouldAnimate: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps() {
|
|
|
|
this.setState({ shouldAnimate: false });
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2017-08-30 11:30:25 -04:00
|
|
|
if (!this.props.singleColumn) {
|
2017-08-31 05:20:54 -04:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, detectPassiveEvents.hasSupport ? { passive: true } : false);
|
2017-08-30 11:30:25 -04:00
|
|
|
}
|
2017-12-13 14:33:04 -05:00
|
|
|
|
|
|
|
this.lastIndex = getIndex(this.context.router.history.location.pathname);
|
|
|
|
this.isRtlLayout = document.getElementsByTagName('body')[0].classList.contains('rtl');
|
|
|
|
|
2017-07-15 11:25:04 -04:00
|
|
|
this.setState({ shouldAnimate: true });
|
|
|
|
}
|
|
|
|
|
2017-08-30 11:30:25 -04:00
|
|
|
componentWillUpdate(nextProps) {
|
|
|
|
if (this.props.singleColumn !== nextProps.singleColumn && nextProps.singleColumn) {
|
|
|
|
this.node.removeEventListener('wheel', this.handleWheel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate(prevProps) {
|
|
|
|
if (this.props.singleColumn !== prevProps.singleColumn && !this.props.singleColumn) {
|
2017-08-31 05:20:54 -04:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, detectPassiveEvents.hasSupport ? { passive: true } : false);
|
2017-08-30 11:30:25 -04:00
|
|
|
}
|
2017-07-13 18:49:01 -04:00
|
|
|
this.lastIndex = getIndex(this.context.router.history.location.pathname);
|
2017-07-15 11:25:04 -04:00
|
|
|
this.setState({ shouldAnimate: true });
|
2017-08-29 08:16:21 -04:00
|
|
|
}
|
2017-08-04 12:57:46 -04:00
|
|
|
|
2017-08-29 11:06:19 -04:00
|
|
|
componentWillUnmount () {
|
2017-08-30 11:30:25 -04:00
|
|
|
if (!this.props.singleColumn) {
|
|
|
|
this.node.removeEventListener('wheel', this.handleWheel);
|
|
|
|
}
|
2017-08-29 11:06:19 -04:00
|
|
|
}
|
|
|
|
|
2017-08-29 08:16:21 -04:00
|
|
|
handleChildrenContentChange() {
|
2017-08-29 10:11:28 -04:00
|
|
|
if (!this.props.singleColumn) {
|
2017-12-13 14:33:04 -05:00
|
|
|
const modifier = this.isRtlLayout ? -1 : 1;
|
2017-12-13 12:28:13 -05:00
|
|
|
this._interruptScrollAnimation = scrollRight(this.node, (this.node.scrollWidth - window.innerWidth) * modifier);
|
2017-08-29 10:11:28 -04:00
|
|
|
}
|
2017-07-13 18:49:01 -04:00
|
|
|
}
|
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
handleSwipe = (index) => {
|
2017-07-13 18:49:01 -04:00
|
|
|
this.pendingIndex = index;
|
2017-07-26 13:03:56 -04:00
|
|
|
|
|
|
|
const nextLinkTranslationId = links[index].props['data-preview-title-id'];
|
|
|
|
const currentLinkSelector = '.tabs-bar__link.active';
|
|
|
|
const nextLinkSelector = `.tabs-bar__link[data-preview-title-id="${nextLinkTranslationId}"]`;
|
|
|
|
|
|
|
|
// HACK: Remove the active class from the current link and set it to the next one
|
|
|
|
// React-router does this for us, but too late, feeling laggy.
|
|
|
|
document.querySelector(currentLinkSelector).classList.remove('active');
|
|
|
|
document.querySelector(nextLinkSelector).classList.add('active');
|
2017-07-13 18:49:01 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
handleAnimationEnd = () => {
|
|
|
|
if (typeof this.pendingIndex === 'number') {
|
|
|
|
this.context.router.history.push(getLink(this.pendingIndex));
|
|
|
|
this.pendingIndex = null;
|
|
|
|
}
|
2017-06-08 11:41:32 -04:00
|
|
|
}
|
|
|
|
|
2017-08-29 11:06:19 -04:00
|
|
|
handleWheel = () => {
|
|
|
|
if (typeof this._interruptScrollAnimation !== 'function') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._interruptScrollAnimation();
|
|
|
|
}
|
|
|
|
|
2017-08-04 12:57:46 -04:00
|
|
|
setRef = (node) => {
|
|
|
|
this.node = node;
|
|
|
|
}
|
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
renderView = (link, index) => {
|
|
|
|
const columnIndex = getIndex(this.context.router.history.location.pathname);
|
2017-07-23 08:03:35 -04:00
|
|
|
const title = this.props.intl.formatMessage({ id: link.props['data-preview-title-id'] });
|
|
|
|
const icon = link.props['data-preview-icon'];
|
2017-06-08 11:41:32 -04:00
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
const view = (index === columnIndex) ?
|
|
|
|
React.cloneElement(this.props.children) :
|
|
|
|
<ColumnLoading title={title} icon={icon} />;
|
|
|
|
|
|
|
|
return (
|
2019-05-22 19:35:22 -04:00
|
|
|
<div className='columns-area columns-area--mobile' key={index}>
|
2017-07-09 09:02:26 -04:00
|
|
|
{view}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-06-08 11:41:32 -04:00
|
|
|
|
2017-09-10 02:48:11 -04:00
|
|
|
renderLoading = columnId => () => {
|
|
|
|
return columnId === 'COMPOSE' ? <DrawerLoading /> : <ColumnLoading />;
|
2017-07-07 18:06:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
renderError = (props) => {
|
|
|
|
return <BundleColumnError {...props} />;
|
|
|
|
}
|
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
render () {
|
2018-09-02 09:51:06 -04:00
|
|
|
const { columns, children, singleColumn, isModalOpen, intl } = this.props;
|
2017-07-15 11:25:04 -04:00
|
|
|
const { shouldAnimate } = this.state;
|
2017-06-03 19:39:38 -04:00
|
|
|
|
2017-07-09 09:02:26 -04:00
|
|
|
const columnIndex = getIndex(this.context.router.history.location.pathname);
|
2017-07-15 11:25:04 -04:00
|
|
|
this.pendingIndex = null;
|
2017-07-09 09:02:26 -04:00
|
|
|
|
2017-06-03 19:39:38 -04:00
|
|
|
if (singleColumn) {
|
2019-01-31 18:14:05 -05:00
|
|
|
const floatingActionButton = shouldHideFAB(this.context.router.history.location.pathname) ? null : <Link key='floating-action-button' to='/statuses/new' className='floating-action-button' aria-label={intl.formatMessage(messages.publish)}><Icon id='pencil' /></Link>;
|
2018-03-02 01:12:40 -05:00
|
|
|
|
|
|
|
return columnIndex !== -1 ? [
|
2019-05-22 19:35:22 -04:00
|
|
|
<TabsBar key='tabs' />,
|
|
|
|
|
2018-03-02 01:12:40 -05:00
|
|
|
<ReactSwipeableViews key='content' index={columnIndex} onChangeIndex={this.handleSwipe} onTransitionEnd={this.handleAnimationEnd} animateTransitions={shouldAnimate} springConfig={{ duration: '400ms', delay: '0s', easeFunction: 'ease' }} style={{ height: '100%' }}>
|
2017-07-09 09:02:26 -04:00
|
|
|
{links.map(this.renderView)}
|
2018-03-02 01:12:40 -05:00
|
|
|
</ReactSwipeableViews>,
|
|
|
|
|
|
|
|
floatingActionButton,
|
|
|
|
] : [
|
2019-05-22 19:35:22 -04:00
|
|
|
<TabsBar key='tabs' />,
|
|
|
|
|
|
|
|
<div key='content' className='columns-area columns-area--mobile'>{children}</div>,
|
2018-03-02 01:12:40 -05:00
|
|
|
|
|
|
|
floatingActionButton,
|
|
|
|
];
|
2017-06-03 19:39:38 -04:00
|
|
|
}
|
|
|
|
|
2016-08-24 11:56:44 -04:00
|
|
|
return (
|
2018-01-15 00:51:00 -05:00
|
|
|
<div className={`columns-area ${ isModalOpen ? 'unscrollable' : '' }`} ref={this.setRef}>
|
2017-06-03 19:39:38 -04:00
|
|
|
{columns.map(column => {
|
|
|
|
const params = column.get('params', null) === null ? null : column.get('params').toJS();
|
2018-05-21 11:49:10 -04:00
|
|
|
const other = params && params.other ? params.other : {};
|
2017-07-07 18:06:02 -04:00
|
|
|
|
|
|
|
return (
|
2017-09-10 02:48:11 -04:00
|
|
|
<BundleContainer key={column.get('uuid')} fetchComponent={componentMap[column.get('id')]} loading={this.renderLoading(column.get('id'))} error={this.renderError}>
|
2018-05-21 11:49:10 -04:00
|
|
|
{SpecificComponent => <SpecificComponent columnId={column.get('uuid')} params={params} multiColumn {...other} />}
|
2017-07-07 18:06:02 -04:00
|
|
|
</BundleContainer>
|
|
|
|
);
|
2017-06-03 19:39:38 -04:00
|
|
|
})}
|
|
|
|
|
|
|
|
{React.Children.map(children, child => React.cloneElement(child, { multiColumn: true }))}
|
2016-08-24 11:56:44 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-31 10:15:12 -04:00
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|