2017-05-02 17:04:16 -07:00
|
|
|
import React from 'react';
|
2017-04-21 11:05:35 -07:00
|
|
|
import PropTypes from 'prop-types';
|
2018-09-03 08:38:11 -07:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-06-03 16:39:38 -07:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-07-07 15:06:02 -07:00
|
|
|
|
2017-07-09 06:02:26 -07:00
|
|
|
import ReactSwipeableViews from 'react-swipeable-views';
|
2019-05-22 16:35:22 -07:00
|
|
|
import TabsBar, { links, getIndex, getLink } from './tabs_bar';
|
2018-08-31 04:34:11 -07:00
|
|
|
import { Link } from 'react-router-dom';
|
2016-08-24 08:56:44 -07:00
|
|
|
|
2017-07-07 15:06:02 -07:00
|
|
|
import BundleContainer from '../containers/bundle_container';
|
|
|
|
import ColumnLoading from './column_loading';
|
2017-09-09 23:48:11 -07:00
|
|
|
import DrawerLoading from './drawer_loading';
|
2017-07-07 15:06:02 -07:00
|
|
|
import BundleColumnError from './bundle_column_error';
|
2019-08-29 15:14:36 -07:00
|
|
|
import {
|
|
|
|
Compose,
|
|
|
|
Notifications,
|
|
|
|
HomeTimeline,
|
|
|
|
CommunityTimeline,
|
|
|
|
PublicTimeline,
|
|
|
|
HashtagTimeline,
|
|
|
|
DirectTimeline,
|
|
|
|
FavouritedStatuses,
|
|
|
|
BookmarkedStatuses,
|
|
|
|
ListTimeline,
|
|
|
|
Directory,
|
|
|
|
} from 'flavours/glitch/util/async-components';
|
2019-09-09 07:41:41 -07:00
|
|
|
import Icon from 'flavours/glitch/components/icon';
|
2019-05-25 12:27:00 -07:00
|
|
|
import ComposePanel from './compose_panel';
|
|
|
|
import NavigationPanel from './navigation_panel';
|
2017-07-07 15:06:02 -07:00
|
|
|
|
2020-11-04 09:21:05 -08:00
|
|
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
2017-12-03 23:26:40 -08:00
|
|
|
import { scrollRight } from 'flavours/glitch/util/scroll';
|
2017-08-04 09:57:46 -07:00
|
|
|
|
2017-06-03 16:39:38 -07:00
|
|
|
const componentMap = {
|
2019-04-19 11:14:32 -07:00
|
|
|
'COMPOSE': Compose,
|
2017-06-03 16:39:38 -07:00
|
|
|
'HOME': HomeTimeline,
|
|
|
|
'NOTIFICATIONS': Notifications,
|
|
|
|
'PUBLIC': PublicTimeline,
|
2020-05-10 01:36:18 -07:00
|
|
|
'REMOTE': PublicTimeline,
|
2017-06-03 16:39:38 -07:00
|
|
|
'COMMUNITY': CommunityTimeline,
|
|
|
|
'HASHTAG': HashtagTimeline,
|
2017-10-15 21:02:39 -07:00
|
|
|
'DIRECT': DirectTimeline,
|
2017-07-14 15:49:34 -07:00
|
|
|
'FAVOURITES': FavouritedStatuses,
|
2018-04-17 02:24:07 -07:00
|
|
|
'BOOKMARKS': BookmarkedStatuses,
|
2017-12-08 17:40:49 -08:00
|
|
|
'LIST': ListTimeline,
|
2019-08-29 15:14:36 -07:00
|
|
|
'DIRECTORY': Directory,
|
2017-06-03 16:39:38 -07:00
|
|
|
};
|
|
|
|
|
2021-09-26 22:24:04 -07:00
|
|
|
const shouldHideFAB = path => path.match(/^\/statuses\/|^\/@[^/]+\/\d+|^\/publish|^\/search|^\/getting-started|^\/start/);
|
2018-09-11 07:11:26 -07:00
|
|
|
|
2018-09-03 08:38:11 -07:00
|
|
|
const messages = defineMessages({
|
|
|
|
publish: { id: 'compose_form.publish', defaultMessage: 'Toot' },
|
|
|
|
});
|
|
|
|
|
2019-09-08 14:29:42 -07:00
|
|
|
export default @(component => injectIntl(component, { withRef: true }))
|
|
|
|
class ColumnsArea extends ImmutablePureComponent {
|
2016-08-31 07:15:12 -07:00
|
|
|
|
2017-06-08 08:41:32 -07:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
2017-05-12 05:44:10 -07:00
|
|
|
static propTypes = {
|
2017-07-23 05:03:35 -07:00
|
|
|
intl: PropTypes.object.isRequired,
|
2017-06-03 16:39:38 -07:00
|
|
|
columns: ImmutablePropTypes.list.isRequired,
|
2019-01-04 09:53:27 -08:00
|
|
|
swipeToChangeColumns: PropTypes.bool,
|
2017-06-03 16:39:38 -07:00
|
|
|
singleColumn: PropTypes.bool,
|
2017-05-20 08:31:47 -07:00
|
|
|
children: PropTypes.node,
|
2019-06-12 08:30:36 -07:00
|
|
|
navbarUnder: PropTypes.bool,
|
2019-06-12 10:38:57 -07:00
|
|
|
openSettings: PropTypes.func,
|
2017-05-12 05:44:10 -07:00
|
|
|
};
|
|
|
|
|
2021-03-24 02:19:07 -07:00
|
|
|
// Corresponds to (max-width: 600px + (285px * 1) + (10px * 1)) in SCSS
|
|
|
|
mediaQuery = 'matchMedia' in window && window.matchMedia('(max-width: 895px)');
|
|
|
|
|
2017-07-15 08:25:04 -07:00
|
|
|
state = {
|
|
|
|
shouldAnimate: false,
|
2021-03-24 02:19:07 -07:00
|
|
|
renderComposePanel: !(this.mediaQuery && this.mediaQuery.matches),
|
2017-07-15 08:25:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillReceiveProps() {
|
2020-12-07 11:07:24 -08:00
|
|
|
if (typeof this.pendingIndex !== 'number' && this.lastIndex !== getIndex(this.context.router.history.location.pathname)) {
|
|
|
|
this.setState({ shouldAnimate: false });
|
|
|
|
}
|
2017-07-15 08:25:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2017-08-30 08:30:25 -07:00
|
|
|
if (!this.props.singleColumn) {
|
2020-11-04 09:21:05 -08:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, supportsPassiveEvents ? { passive: true } : false);
|
2017-08-30 08:30:25 -07:00
|
|
|
}
|
2017-12-26 11:49:53 -08:00
|
|
|
|
2021-03-24 02:19:07 -07:00
|
|
|
if (this.mediaQuery) {
|
2021-03-31 15:00:12 -07:00
|
|
|
if (this.mediaQuery.addEventListener) {
|
|
|
|
this.mediaQuery.addEventListener('change', this.handleLayoutChange);
|
|
|
|
} else {
|
|
|
|
this.mediaQuery.addListener(this.handleLayoutChange);
|
|
|
|
}
|
2021-03-24 02:19:07 -07:00
|
|
|
this.setState({ renderComposePanel: !this.mediaQuery.matches });
|
|
|
|
}
|
|
|
|
|
2017-12-26 11:49:53 -08:00
|
|
|
this.lastIndex = getIndex(this.context.router.history.location.pathname);
|
|
|
|
this.isRtlLayout = document.getElementsByTagName('body')[0].classList.contains('rtl');
|
|
|
|
|
2017-07-15 08:25:04 -07:00
|
|
|
this.setState({ shouldAnimate: true });
|
|
|
|
}
|
|
|
|
|
2017-08-30 08:30:25 -07: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) {
|
2020-11-04 09:21:05 -08:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, supportsPassiveEvents ? { passive: true } : false);
|
2017-08-30 08:30:25 -07:00
|
|
|
}
|
2020-12-07 10:36:36 -08:00
|
|
|
|
|
|
|
const newIndex = getIndex(this.context.router.history.location.pathname);
|
|
|
|
|
|
|
|
if (this.lastIndex !== newIndex) {
|
|
|
|
this.lastIndex = newIndex;
|
|
|
|
this.setState({ shouldAnimate: true });
|
|
|
|
}
|
2017-08-29 05:16:21 -07:00
|
|
|
}
|
2017-08-04 09:57:46 -07:00
|
|
|
|
2017-08-29 08:06:19 -07:00
|
|
|
componentWillUnmount () {
|
2017-08-30 08:30:25 -07:00
|
|
|
if (!this.props.singleColumn) {
|
|
|
|
this.node.removeEventListener('wheel', this.handleWheel);
|
|
|
|
}
|
2021-03-24 02:19:07 -07:00
|
|
|
|
|
|
|
if (this.mediaQuery) {
|
2021-03-31 15:00:12 -07:00
|
|
|
if (this.mediaQuery.removeEventListener) {
|
|
|
|
this.mediaQuery.removeEventListener('change', this.handleLayoutChange);
|
|
|
|
} else {
|
|
|
|
this.mediaQuery.removeListener(this.handleLayouteChange);
|
|
|
|
}
|
2021-03-24 02:19:07 -07:00
|
|
|
}
|
2017-08-29 08:06:19 -07:00
|
|
|
}
|
|
|
|
|
2017-08-29 05:16:21 -07:00
|
|
|
handleChildrenContentChange() {
|
2017-08-29 07:11:28 -07:00
|
|
|
if (!this.props.singleColumn) {
|
2017-12-26 11:49:53 -08:00
|
|
|
const modifier = this.isRtlLayout ? -1 : 1;
|
|
|
|
this._interruptScrollAnimation = scrollRight(this.node, (this.node.scrollWidth - window.innerWidth) * modifier);
|
2017-08-29 07:11:28 -07:00
|
|
|
}
|
2017-07-13 15:49:01 -07:00
|
|
|
}
|
|
|
|
|
2021-03-24 02:19:07 -07:00
|
|
|
handleLayoutChange = (e) => {
|
|
|
|
this.setState({ renderComposePanel: !e.matches });
|
|
|
|
}
|
|
|
|
|
2017-07-09 06:02:26 -07:00
|
|
|
handleSwipe = (index) => {
|
2017-07-13 15:49:01 -07:00
|
|
|
this.pendingIndex = index;
|
2017-07-26 10:03:56 -07: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 04:52:15 -07:00
|
|
|
|
|
|
|
if (!this.state.shouldAnimate && typeof this.pendingIndex === 'number') {
|
|
|
|
this.context.router.history.push(getLink(this.pendingIndex));
|
|
|
|
this.pendingIndex = null;
|
|
|
|
}
|
2017-07-13 15:49:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
handleAnimationEnd = () => {
|
|
|
|
if (typeof this.pendingIndex === 'number') {
|
|
|
|
this.context.router.history.push(getLink(this.pendingIndex));
|
|
|
|
this.pendingIndex = null;
|
|
|
|
}
|
2017-06-08 08:41:32 -07:00
|
|
|
}
|
|
|
|
|
2017-08-29 08:06:19 -07:00
|
|
|
handleWheel = () => {
|
|
|
|
if (typeof this._interruptScrollAnimation !== 'function') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._interruptScrollAnimation();
|
|
|
|
}
|
|
|
|
|
2017-08-04 09:57:46 -07:00
|
|
|
setRef = (node) => {
|
|
|
|
this.node = node;
|
|
|
|
}
|
|
|
|
|
2017-07-09 06:02:26 -07:00
|
|
|
renderView = (link, index) => {
|
|
|
|
const columnIndex = getIndex(this.context.router.history.location.pathname);
|
2017-07-23 05:03:35 -07:00
|
|
|
const title = this.props.intl.formatMessage({ id: link.props['data-preview-title-id'] });
|
|
|
|
const icon = link.props['data-preview-icon'];
|
2017-06-08 08:41:32 -07:00
|
|
|
|
2017-07-09 06:02:26 -07:00
|
|
|
const view = (index === columnIndex) ?
|
|
|
|
React.cloneElement(this.props.children) :
|
|
|
|
<ColumnLoading title={title} icon={icon} />;
|
|
|
|
|
|
|
|
return (
|
2019-05-22 16:35:22 -07:00
|
|
|
<div className='columns-area columns-area--mobile' key={index}>
|
2017-07-09 06:02:26 -07:00
|
|
|
{view}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2017-06-08 08:41:32 -07:00
|
|
|
|
2017-09-09 23:48:11 -07:00
|
|
|
renderLoading = columnId => () => {
|
|
|
|
return columnId === 'COMPOSE' ? <DrawerLoading /> : <ColumnLoading />;
|
2017-07-07 15:06:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
renderError = (props) => {
|
|
|
|
return <BundleColumnError {...props} />;
|
|
|
|
}
|
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
render () {
|
2019-06-12 10:38:57 -07:00
|
|
|
const { columns, children, singleColumn, swipeToChangeColumns, intl, navbarUnder, openSettings } = this.props;
|
2021-03-24 02:19:07 -07:00
|
|
|
const { shouldAnimate, renderComposePanel } = this.state;
|
2017-06-03 16:39:38 -07:00
|
|
|
|
2017-07-09 06:02:26 -07:00
|
|
|
const columnIndex = getIndex(this.context.router.history.location.pathname);
|
|
|
|
|
2017-06-03 16:39:38 -07:00
|
|
|
if (singleColumn) {
|
2021-09-25 20:46:13 -07:00
|
|
|
const floatingActionButton = shouldHideFAB(this.context.router.history.location.pathname) ? null : <Link key='floating-action-button' to='/publish' className='floating-action-button' aria-label={intl.formatMessage(messages.publish)}><Icon id='pencil' /></Link>;
|
2018-08-31 04:34:11 -07:00
|
|
|
|
2019-05-23 11:01:10 -07:00
|
|
|
const content = columnIndex !== -1 ? (
|
2019-10-24 13:48:11 -07: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%' }} disabled={!swipeToChangeColumns}>
|
2017-07-09 06:02:26 -07:00
|
|
|
{links.map(this.renderView)}
|
2019-05-23 11:01:10 -07:00
|
|
|
</ReactSwipeableViews>
|
|
|
|
) : (
|
|
|
|
<div key='content' className='columns-area columns-area--mobile'>{children}</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className='columns-area__panels'>
|
2019-05-25 12:27:00 -07:00
|
|
|
<div className='columns-area__panels__pane columns-area__panels__pane--compositional'>
|
|
|
|
<div className='columns-area__panels__pane__inner'>
|
2021-03-24 02:19:07 -07:00
|
|
|
{renderComposePanel && <ComposePanel />}
|
2019-05-25 12:27:00 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-31 04:34:11 -07:00
|
|
|
|
2019-05-23 11:01:10 -07:00
|
|
|
<div className='columns-area__panels__main'>
|
2019-06-12 08:30:36 -07:00
|
|
|
{!navbarUnder && <TabsBar key='tabs' />}
|
2019-05-23 11:01:10 -07:00
|
|
|
{content}
|
2019-06-12 08:30:36 -07:00
|
|
|
{navbarUnder && <TabsBar key='tabs' />}
|
2019-05-23 11:01:10 -07:00
|
|
|
</div>
|
2019-05-22 16:35:22 -07:00
|
|
|
|
2019-05-25 12:27:00 -07:00
|
|
|
<div className='columns-area__panels__pane columns-area__panels__pane--start columns-area__panels__pane--navigational'>
|
|
|
|
<div className='columns-area__panels__pane__inner'>
|
2019-06-12 10:38:57 -07:00
|
|
|
<NavigationPanel onOpenSettings={openSettings} />
|
2019-05-25 12:27:00 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-31 04:34:11 -07:00
|
|
|
|
2019-05-23 11:01:10 -07:00
|
|
|
{floatingActionButton}
|
|
|
|
</div>
|
|
|
|
);
|
2017-06-03 16:39:38 -07:00
|
|
|
}
|
|
|
|
|
2016-08-24 08:56:44 -07:00
|
|
|
return (
|
2017-08-04 09:57:46 -07:00
|
|
|
<div className='columns-area' ref={this.setRef}>
|
2017-06-03 16:39:38 -07:00
|
|
|
{columns.map(column => {
|
|
|
|
const params = column.get('params', null) === null ? null : column.get('params').toJS();
|
2018-05-27 12:23:56 -07:00
|
|
|
const other = params && params.other ? params.other : {};
|
2017-07-07 15:06:02 -07:00
|
|
|
|
|
|
|
return (
|
2017-09-09 23:48:11 -07:00
|
|
|
<BundleContainer key={column.get('uuid')} fetchComponent={componentMap[column.get('id')]} loading={this.renderLoading(column.get('id'))} error={this.renderError}>
|
2018-05-27 12:23:56 -07:00
|
|
|
{SpecificComponent => <SpecificComponent columnId={column.get('uuid')} params={params} multiColumn {...other} />}
|
2017-07-07 15:06:02 -07:00
|
|
|
</BundleContainer>
|
|
|
|
);
|
2017-06-03 16:39:38 -07:00
|
|
|
})}
|
|
|
|
|
|
|
|
{React.Children.map(children, child => React.cloneElement(child, { multiColumn: true }))}
|
2016-08-24 08:56:44 -07:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-31 07:15:12 -07:00
|
|
|
|
2017-04-21 11:05:35 -07:00
|
|
|
}
|