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';
|
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
|
|
|
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,
|
|
|
|
BookmarkedStatuses,
|
|
|
|
ListTimeline,
|
|
|
|
Directory,
|
2022-10-11 09:23:59 +00:00
|
|
|
} from '../../ui/util/async-components';
|
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
|
|
|
|
2020-11-04 17:21:05 +00:00
|
|
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
2022-10-11 09:39:52 +00:00
|
|
|
import { scrollRight } from 'flavours/glitch/scroll';
|
2017-08-04 16:57:46 +00:00
|
|
|
|
2017-06-03 23:39:38 +00:00
|
|
|
const componentMap = {
|
2019-04-19 18:14:32 +00:00
|
|
|
'COMPOSE': Compose,
|
2017-06-03 23:39:38 +00:00
|
|
|
'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,
|
2017-10-16 04:02:39 +00:00
|
|
|
'DIRECT': DirectTimeline,
|
2017-07-14 22:49:34 +00:00
|
|
|
'FAVOURITES': FavouritedStatuses,
|
2018-04-17 09:24:07 +00:00
|
|
|
'BOOKMARKS': BookmarkedStatuses,
|
2017-12-09 01:40:49 +00:00
|
|
|
'LIST': ListTimeline,
|
2019-08-29 22:14:36 +00:00
|
|
|
'DIRECTORY': Directory,
|
2017-06-03 23:39:38 +00:00
|
|
|
};
|
|
|
|
|
2022-10-23 13:58:24 +00:00
|
|
|
export default 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-06-03 23:39:38 +00:00
|
|
|
columns: ImmutablePropTypes.list.isRequired,
|
|
|
|
singleColumn: PropTypes.bool,
|
2017-05-20 15:31:47 +00:00
|
|
|
children: PropTypes.node,
|
2019-06-12 15:30:36 +00:00
|
|
|
navbarUnder: PropTypes.bool,
|
2019-06-12 17:38:57 +00:00
|
|
|
openSettings: PropTypes.func,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
|
|
|
|
2022-10-04 18:13:23 +00:00
|
|
|
// Corresponds to (max-width: $no-gap-breakpoint + 285px - 1px) in SCSS
|
|
|
|
mediaQuery = 'matchMedia' in window && window.matchMedia('(max-width: 1174px)');
|
2021-03-24 09:19:07 +00:00
|
|
|
|
2017-07-15 15:25:04 +00:00
|
|
|
state = {
|
2021-03-24 09:19:07 +00:00
|
|
|
renderComposePanel: !(this.mediaQuery && this.mediaQuery.matches),
|
2017-07-15 15:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2017-08-30 15:30:25 +00:00
|
|
|
if (!this.props.singleColumn) {
|
2020-11-04 17:21:05 +00:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, supportsPassiveEvents ? { passive: true } : false);
|
2017-08-30 15:30:25 +00:00
|
|
|
}
|
2017-12-26 19:49:53 +00:00
|
|
|
|
2021-03-24 09:19:07 +00:00
|
|
|
if (this.mediaQuery) {
|
2021-03-31 22:00:12 +00:00
|
|
|
if (this.mediaQuery.addEventListener) {
|
|
|
|
this.mediaQuery.addEventListener('change', this.handleLayoutChange);
|
|
|
|
} else {
|
|
|
|
this.mediaQuery.addListener(this.handleLayoutChange);
|
|
|
|
}
|
2021-03-24 09:19:07 +00:00
|
|
|
this.setState({ renderComposePanel: !this.mediaQuery.matches });
|
|
|
|
}
|
|
|
|
|
2017-12-26 19:49:53 +00:00
|
|
|
this.isRtlLayout = document.getElementsByTagName('body')[0].classList.contains('rtl');
|
2017-07-15 15:25:04 +00:00
|
|
|
}
|
|
|
|
|
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) {
|
2020-11-04 17:21:05 +00:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, supportsPassiveEvents ? { passive: true } : false);
|
2017-08-30 15:30:25 +00:00
|
|
|
}
|
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);
|
|
|
|
}
|
2021-03-24 09:19:07 +00:00
|
|
|
|
|
|
|
if (this.mediaQuery) {
|
2021-03-31 22:00:12 +00:00
|
|
|
if (this.mediaQuery.removeEventListener) {
|
|
|
|
this.mediaQuery.removeEventListener('change', this.handleLayoutChange);
|
|
|
|
} else {
|
2022-12-15 15:37:17 +00:00
|
|
|
this.mediaQuery.removeListener(this.handleLayoutChange);
|
2021-03-31 22:00:12 +00:00
|
|
|
}
|
2021-03-24 09:19:07 +00:00
|
|
|
}
|
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-26 19:49:53 +00:00
|
|
|
const modifier = this.isRtlLayout ? -1 : 1;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-03-24 09:19:07 +00:00
|
|
|
handleLayoutChange = (e) => {
|
|
|
|
this.setState({ renderComposePanel: !e.matches });
|
|
|
|
}
|
|
|
|
|
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-09-10 06:48:11 +00:00
|
|
|
renderLoading = columnId => () => {
|
2022-10-20 12:35:29 +00:00
|
|
|
return columnId === 'COMPOSE' ? <DrawerLoading /> : <ColumnLoading multiColumn />;
|
2017-07-07 22:06:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
renderError = (props) => {
|
2022-10-23 13:58:24 +00:00
|
|
|
return <BundleColumnError multiColumn errorType='network' {...props} />;
|
2017-07-07 22:06:02 +00:00
|
|
|
}
|
|
|
|
|
2016-08-31 14:15:12 +00:00
|
|
|
render () {
|
2022-10-23 13:58:24 +00:00
|
|
|
const { columns, children, singleColumn, navbarUnder, openSettings } = this.props;
|
2022-10-04 18:13:23 +00:00
|
|
|
const { renderComposePanel } = this.state;
|
2017-06-03 23:39:38 +00:00
|
|
|
|
|
|
|
if (singleColumn) {
|
2019-05-23 18:01:10 +00:00
|
|
|
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'>
|
2021-03-24 09:19:07 +00:00
|
|
|
{renderComposePanel && <ComposePanel />}
|
2019-05-25 19:27:00 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-31 11:34:11 +00:00
|
|
|
|
2022-10-23 13:58:24 +00:00
|
|
|
<div className='columns-area__panels__main'>
|
2022-10-04 18:13:23 +00:00
|
|
|
<div className='tabs-bar__wrapper'><div id='tabs-bar__portal' /></div>
|
|
|
|
<div className='columns-area columns-area--mobile'>{children}</div>
|
2019-05-23 18:01:10 +00:00
|
|
|
</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'>
|
2019-06-12 17:38:57 +00:00
|
|
|
<NavigationPanel onOpenSettings={openSettings} />
|
2019-05-25 19:27:00 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-05-23 18:01:10 +00:00
|
|
|
</div>
|
|
|
|
);
|
2017-06-03 23:39:38 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 15:56:44 +00:00
|
|
|
return (
|
2017-08-04 16:57:46 +00:00
|
|
|
<div className='columns-area' 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-27 19:23:56 +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-27 19:23:56 +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
|
|
|
}
|