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