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';
|
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
|
|
|
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,
|
2022-10-11 02:23:59 -07:00
|
|
|
} from '../../ui/util/async-components';
|
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';
|
2022-10-11 02:39:52 -07:00
|
|
|
import { scrollRight } from 'flavours/glitch/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
|
|
|
};
|
|
|
|
|
2022-10-23 06:58:24 -07:00
|
|
|
export default 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-06-03 16:39:38 -07:00
|
|
|
columns: ImmutablePropTypes.list.isRequired,
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2022-10-04 11:13:23 -07:00
|
|
|
// Corresponds to (max-width: $no-gap-breakpoint + 285px - 1px) in SCSS
|
|
|
|
mediaQuery = 'matchMedia' in window && window.matchMedia('(max-width: 1174px)');
|
2021-03-24 02:19:07 -07:00
|
|
|
|
2017-07-15 08:25:04 -07:00
|
|
|
state = {
|
2021-03-24 02:19:07 -07:00
|
|
|
renderComposePanel: !(this.mediaQuery && this.mediaQuery.matches),
|
2023-02-03 11:52:07 -08:00
|
|
|
};
|
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.isRtlLayout = document.getElementsByTagName('body')[0].classList.contains('rtl');
|
2017-07-15 08:25:04 -07:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
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 {
|
2022-12-15 07:37:17 -08:00
|
|
|
this.mediaQuery.removeListener(this.handleLayoutChange);
|
2021-03-31 15:00:12 -07:00
|
|
|
}
|
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 });
|
2023-02-03 11:52:07 -08:00
|
|
|
};
|
2021-03-24 02:19:07 -07:00
|
|
|
|
2017-08-29 08:06:19 -07:00
|
|
|
handleWheel = () => {
|
|
|
|
if (typeof this._interruptScrollAnimation !== 'function') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._interruptScrollAnimation();
|
2023-02-03 11:52:07 -08:00
|
|
|
};
|
2017-08-29 08:06:19 -07:00
|
|
|
|
2017-08-04 09:57:46 -07:00
|
|
|
setRef = (node) => {
|
|
|
|
this.node = node;
|
2023-02-03 11:52:07 -08:00
|
|
|
};
|
2017-08-04 09:57:46 -07:00
|
|
|
|
2017-09-09 23:48:11 -07:00
|
|
|
renderLoading = columnId => () => {
|
2022-10-20 05:35:29 -07:00
|
|
|
return columnId === 'COMPOSE' ? <DrawerLoading /> : <ColumnLoading multiColumn />;
|
2023-02-03 11:52:07 -08:00
|
|
|
};
|
2017-07-07 15:06:02 -07:00
|
|
|
|
|
|
|
renderError = (props) => {
|
2022-10-23 06:58:24 -07:00
|
|
|
return <BundleColumnError multiColumn errorType='network' {...props} />;
|
2023-02-03 11:52:07 -08:00
|
|
|
};
|
2017-07-07 15:06:02 -07:00
|
|
|
|
2016-08-31 07:15:12 -07:00
|
|
|
render () {
|
2022-10-23 06:58:24 -07:00
|
|
|
const { columns, children, singleColumn, navbarUnder, openSettings } = this.props;
|
2022-10-04 11:13:23 -07:00
|
|
|
const { renderComposePanel } = this.state;
|
2017-06-03 16:39:38 -07:00
|
|
|
|
|
|
|
if (singleColumn) {
|
2019-05-23 11:01:10 -07:00
|
|
|
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
|
|
|
|
2022-10-23 06:58:24 -07:00
|
|
|
<div className='columns-area__panels__main'>
|
2022-10-04 11:13:23 -07:00
|
|
|
<div className='tabs-bar__wrapper'><div id='tabs-bar__portal' /></div>
|
|
|
|
<div className='columns-area columns-area--mobile'>{children}</div>
|
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>
|
2019-05-23 11:01:10 -07:00
|
|
|
</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
|
|
|
}
|