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';
|
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
|
|
|
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';
|
2019-08-29 18:14:36 -04:00
|
|
|
import {
|
|
|
|
Compose,
|
|
|
|
Notifications,
|
|
|
|
HomeTimeline,
|
|
|
|
CommunityTimeline,
|
|
|
|
PublicTimeline,
|
|
|
|
HashtagTimeline,
|
|
|
|
DirectTimeline,
|
|
|
|
FavouritedStatuses,
|
2019-11-13 17:02:10 -05:00
|
|
|
BookmarkedStatuses,
|
2019-08-29 18:14:36 -04:00
|
|
|
ListTimeline,
|
|
|
|
Directory,
|
|
|
|
} from '../../ui/util/async-components';
|
2019-05-25 15:27:00 -04:00
|
|
|
import ComposePanel from './compose_panel';
|
|
|
|
import NavigationPanel from './navigation_panel';
|
2020-11-04 12:21:05 -05:00
|
|
|
import { supportsPassiveEvents } 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,
|
2020-05-10 04:36:18 -04:00
|
|
|
'REMOTE': PublicTimeline,
|
2017-06-03 19:39:38 -04:00
|
|
|
'COMMUNITY': CommunityTimeline,
|
|
|
|
'HASHTAG': HashtagTimeline,
|
2018-04-18 07:09:06 -04:00
|
|
|
'DIRECT': DirectTimeline,
|
2017-07-14 18:49:34 -04:00
|
|
|
'FAVOURITES': FavouritedStatuses,
|
2019-11-13 17:02:10 -05:00
|
|
|
'BOOKMARKS': BookmarkedStatuses,
|
2017-11-24 18:35:37 -05:00
|
|
|
'LIST': ListTimeline,
|
2019-08-29 18:14:36 -04:00
|
|
|
'DIRECTORY': Directory,
|
2017-06-03 19:39:38 -04:00
|
|
|
};
|
|
|
|
|
2022-10-23 09:58:24 -04:00
|
|
|
export default 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-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
|
|
|
};
|
|
|
|
|
2022-10-04 14:13:23 -04:00
|
|
|
// Corresponds to (max-width: $no-gap-breakpoint + 285px - 1px) in SCSS
|
|
|
|
mediaQuery = 'matchMedia' in window && window.matchMedia('(max-width: 1174px)');
|
2021-03-24 05:19:07 -04:00
|
|
|
|
2017-07-15 11:25:04 -04:00
|
|
|
state = {
|
2021-03-24 05:19:07 -04:00
|
|
|
renderComposePanel: !(this.mediaQuery && this.mediaQuery.matches),
|
2017-07-15 11:25:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2017-08-30 11:30:25 -04:00
|
|
|
if (!this.props.singleColumn) {
|
2020-11-04 12:21:05 -05:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, supportsPassiveEvents ? { passive: true } : false);
|
2017-08-30 11:30:25 -04:00
|
|
|
}
|
2017-12-13 14:33:04 -05:00
|
|
|
|
2021-03-24 05:19:07 -04:00
|
|
|
if (this.mediaQuery) {
|
2021-03-31 18:00:12 -04:00
|
|
|
if (this.mediaQuery.addEventListener) {
|
|
|
|
this.mediaQuery.addEventListener('change', this.handleLayoutChange);
|
|
|
|
} else {
|
|
|
|
this.mediaQuery.addListener(this.handleLayoutChange);
|
|
|
|
}
|
2021-03-24 05:19:07 -04:00
|
|
|
this.setState({ renderComposePanel: !this.mediaQuery.matches });
|
|
|
|
}
|
|
|
|
|
2017-12-13 14:33:04 -05:00
|
|
|
this.isRtlLayout = document.getElementsByTagName('body')[0].classList.contains('rtl');
|
2017-07-15 11:25:04 -04:00
|
|
|
}
|
|
|
|
|
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) {
|
2020-11-04 12:21:05 -05:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, supportsPassiveEvents ? { passive: true } : false);
|
2017-08-30 11:30:25 -04:00
|
|
|
}
|
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);
|
|
|
|
}
|
2021-03-24 05:19:07 -04:00
|
|
|
|
|
|
|
if (this.mediaQuery) {
|
2021-03-31 18:00:12 -04:00
|
|
|
if (this.mediaQuery.removeEventListener) {
|
|
|
|
this.mediaQuery.removeEventListener('change', this.handleLayoutChange);
|
|
|
|
} else {
|
2022-12-15 10:37:17 -05:00
|
|
|
this.mediaQuery.removeListener(this.handleLayoutChange);
|
2021-03-31 18:00:12 -04:00
|
|
|
}
|
2021-03-24 05:19:07 -04:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2021-03-24 05:19:07 -04:00
|
|
|
handleLayoutChange = (e) => {
|
|
|
|
this.setState({ renderComposePanel: !e.matches });
|
|
|
|
}
|
|
|
|
|
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-09-10 02:48:11 -04:00
|
|
|
renderLoading = columnId => () => {
|
2022-10-20 08:35:29 -04:00
|
|
|
return columnId === 'COMPOSE' ? <DrawerLoading /> : <ColumnLoading multiColumn />;
|
2017-07-07 18:06:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
renderError = (props) => {
|
2022-10-23 09:58:24 -04:00
|
|
|
return <BundleColumnError multiColumn errorType='network' {...props} />;
|
2017-07-07 18:06:02 -04:00
|
|
|
}
|
|
|
|
|
2016-08-31 10:15:12 -04:00
|
|
|
render () {
|
2022-10-23 09:58:24 -04:00
|
|
|
const { columns, children, singleColumn, isModalOpen } = this.props;
|
2022-10-04 14:13:23 -04:00
|
|
|
const { renderComposePanel } = this.state;
|
2017-06-03 19:39:38 -04:00
|
|
|
|
|
|
|
if (singleColumn) {
|
2019-05-23 14:01:10 -04:00
|
|
|
return (
|
|
|
|
<div className='columns-area__panels'>
|
2019-05-25 15:27:00 -04:00
|
|
|
<div className='columns-area__panels__pane columns-area__panels__pane--compositional'>
|
|
|
|
<div className='columns-area__panels__pane__inner'>
|
2021-03-24 05:19:07 -04:00
|
|
|
{renderComposePanel && <ComposePanel />}
|
2019-05-25 15:27:00 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-03-02 01:12:40 -05:00
|
|
|
|
2022-10-23 09:58:24 -04:00
|
|
|
<div className='columns-area__panels__main'>
|
2022-10-04 14:13:23 -04:00
|
|
|
<div className='tabs-bar__wrapper'><div id='tabs-bar__portal' /></div>
|
|
|
|
<div className='columns-area columns-area--mobile'>{children}</div>
|
2019-05-23 14:01:10 -04:00
|
|
|
</div>
|
2019-05-22 19:35:22 -04:00
|
|
|
|
2019-05-25 15:27:00 -04: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>
|
2019-05-23 14:01:10 -04:00
|
|
|
</div>
|
|
|
|
);
|
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
|
|
|
}
|