2017-05-03 09:04:16 +09:00
|
|
|
import React from 'react';
|
2017-04-22 03:05:35 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2017-06-04 08:39:38 +09:00
|
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
2017-07-08 07:06:02 +09:00
|
|
|
import BundleContainer from '../containers/bundle_container';
|
|
|
|
import ColumnLoading from './column_loading';
|
2017-09-10 15:48:11 +09:00
|
|
|
import DrawerLoading from './drawer_loading';
|
2017-07-08 07:06:02 +09:00
|
|
|
import BundleColumnError from './bundle_column_error';
|
2019-08-30 07:14:36 +09:00
|
|
|
import {
|
|
|
|
Compose,
|
|
|
|
Notifications,
|
|
|
|
HomeTimeline,
|
|
|
|
CommunityTimeline,
|
|
|
|
PublicTimeline,
|
|
|
|
HashtagTimeline,
|
|
|
|
DirectTimeline,
|
|
|
|
FavouritedStatuses,
|
2019-11-14 07:02:10 +09:00
|
|
|
BookmarkedStatuses,
|
2019-08-30 07:14:36 +09:00
|
|
|
ListTimeline,
|
|
|
|
Directory,
|
|
|
|
} from '../../ui/util/async-components';
|
2019-05-26 04:27:00 +09:00
|
|
|
import ComposePanel from './compose_panel';
|
|
|
|
import NavigationPanel from './navigation_panel';
|
2020-11-05 02:21:05 +09:00
|
|
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
2017-08-05 01:57:46 +09:00
|
|
|
import { scrollRight } from '../../../scroll';
|
|
|
|
|
2017-06-04 08:39:38 +09:00
|
|
|
const componentMap = {
|
|
|
|
'COMPOSE': Compose,
|
|
|
|
'HOME': HomeTimeline,
|
|
|
|
'NOTIFICATIONS': Notifications,
|
|
|
|
'PUBLIC': PublicTimeline,
|
2020-05-10 17:36:18 +09:00
|
|
|
'REMOTE': PublicTimeline,
|
2017-06-04 08:39:38 +09:00
|
|
|
'COMMUNITY': CommunityTimeline,
|
|
|
|
'HASHTAG': HashtagTimeline,
|
2018-04-18 20:09:06 +09:00
|
|
|
'DIRECT': DirectTimeline,
|
2017-07-15 07:49:34 +09:00
|
|
|
'FAVOURITES': FavouritedStatuses,
|
2019-11-14 07:02:10 +09:00
|
|
|
'BOOKMARKS': BookmarkedStatuses,
|
2017-11-25 08:35:37 +09:00
|
|
|
'LIST': ListTimeline,
|
2019-08-30 07:14:36 +09:00
|
|
|
'DIRECTORY': Directory,
|
2017-06-04 08:39:38 +09:00
|
|
|
};
|
|
|
|
|
2022-10-23 22:58:24 +09:00
|
|
|
export default class ColumnsArea extends ImmutablePureComponent {
|
2016-08-31 23:15:12 +09:00
|
|
|
|
2017-06-09 00:41:32 +09:00
|
|
|
static contextTypes = {
|
|
|
|
router: PropTypes.object.isRequired,
|
|
|
|
};
|
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
static propTypes = {
|
2017-06-04 08:39:38 +09:00
|
|
|
columns: ImmutablePropTypes.list.isRequired,
|
2018-01-15 14:51:00 +09:00
|
|
|
isModalOpen: PropTypes.bool.isRequired,
|
2017-06-04 08:39:38 +09:00
|
|
|
singleColumn: PropTypes.bool,
|
2017-05-21 00:31:47 +09:00
|
|
|
children: PropTypes.node,
|
2017-05-12 21:44:10 +09:00
|
|
|
};
|
|
|
|
|
2022-10-05 03:13:23 +09:00
|
|
|
// Corresponds to (max-width: $no-gap-breakpoint + 285px - 1px) in SCSS
|
|
|
|
mediaQuery = 'matchMedia' in window && window.matchMedia('(max-width: 1174px)');
|
2021-03-24 18:19:07 +09:00
|
|
|
|
2017-07-16 00:25:04 +09:00
|
|
|
state = {
|
2021-03-24 18:19:07 +09:00
|
|
|
renderComposePanel: !(this.mediaQuery && this.mediaQuery.matches),
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2017-07-16 00:25:04 +09:00
|
|
|
|
|
|
|
componentDidMount() {
|
2017-08-31 00:30:25 +09:00
|
|
|
if (!this.props.singleColumn) {
|
2020-11-05 02:21:05 +09:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, supportsPassiveEvents ? { passive: true } : false);
|
2017-08-31 00:30:25 +09:00
|
|
|
}
|
2017-12-14 04:33:04 +09:00
|
|
|
|
2021-03-24 18:19:07 +09:00
|
|
|
if (this.mediaQuery) {
|
2021-04-01 07:00:12 +09:00
|
|
|
if (this.mediaQuery.addEventListener) {
|
|
|
|
this.mediaQuery.addEventListener('change', this.handleLayoutChange);
|
|
|
|
} else {
|
|
|
|
this.mediaQuery.addListener(this.handleLayoutChange);
|
|
|
|
}
|
2021-03-24 18:19:07 +09:00
|
|
|
this.setState({ renderComposePanel: !this.mediaQuery.matches });
|
|
|
|
}
|
|
|
|
|
2017-12-14 04:33:04 +09:00
|
|
|
this.isRtlLayout = document.getElementsByTagName('body')[0].classList.contains('rtl');
|
2017-07-16 00:25:04 +09:00
|
|
|
}
|
|
|
|
|
2023-05-10 16:05:32 +09:00
|
|
|
UNSAFE_componentWillUpdate(nextProps) {
|
2017-08-31 00:30:25 +09:00
|
|
|
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-05 02:21:05 +09:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, supportsPassiveEvents ? { passive: true } : false);
|
2017-08-31 00:30:25 +09:00
|
|
|
}
|
2017-08-29 21:16:21 +09:00
|
|
|
}
|
2017-08-05 01:57:46 +09:00
|
|
|
|
2017-08-30 00:06:19 +09:00
|
|
|
componentWillUnmount () {
|
2017-08-31 00:30:25 +09:00
|
|
|
if (!this.props.singleColumn) {
|
|
|
|
this.node.removeEventListener('wheel', this.handleWheel);
|
|
|
|
}
|
2021-03-24 18:19:07 +09:00
|
|
|
|
|
|
|
if (this.mediaQuery) {
|
2021-04-01 07:00:12 +09:00
|
|
|
if (this.mediaQuery.removeEventListener) {
|
|
|
|
this.mediaQuery.removeEventListener('change', this.handleLayoutChange);
|
|
|
|
} else {
|
2022-12-16 00:37:17 +09:00
|
|
|
this.mediaQuery.removeListener(this.handleLayoutChange);
|
2021-04-01 07:00:12 +09:00
|
|
|
}
|
2021-03-24 18:19:07 +09:00
|
|
|
}
|
2017-08-30 00:06:19 +09:00
|
|
|
}
|
|
|
|
|
2017-08-29 21:16:21 +09:00
|
|
|
handleChildrenContentChange() {
|
2017-08-29 23:11:28 +09:00
|
|
|
if (!this.props.singleColumn) {
|
2017-12-14 04:33:04 +09:00
|
|
|
const modifier = this.isRtlLayout ? -1 : 1;
|
2017-12-14 02:28:13 +09:00
|
|
|
this._interruptScrollAnimation = scrollRight(this.node, (this.node.scrollWidth - window.innerWidth) * modifier);
|
2017-08-29 23:11:28 +09:00
|
|
|
}
|
2017-07-14 07:49:01 +09:00
|
|
|
}
|
|
|
|
|
2021-03-24 18:19:07 +09:00
|
|
|
handleLayoutChange = (e) => {
|
|
|
|
this.setState({ renderComposePanel: !e.matches });
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2021-03-24 18:19:07 +09:00
|
|
|
|
2017-08-30 00:06:19 +09:00
|
|
|
handleWheel = () => {
|
|
|
|
if (typeof this._interruptScrollAnimation !== 'function') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._interruptScrollAnimation();
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2017-08-30 00:06:19 +09:00
|
|
|
|
2017-08-05 01:57:46 +09:00
|
|
|
setRef = (node) => {
|
|
|
|
this.node = node;
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2017-08-05 01:57:46 +09:00
|
|
|
|
2017-09-10 15:48:11 +09:00
|
|
|
renderLoading = columnId => () => {
|
2022-10-20 21:35:29 +09:00
|
|
|
return columnId === 'COMPOSE' ? <DrawerLoading /> : <ColumnLoading multiColumn />;
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2017-07-08 07:06:02 +09:00
|
|
|
|
|
|
|
renderError = (props) => {
|
2022-10-23 22:58:24 +09:00
|
|
|
return <BundleColumnError multiColumn errorType='network' {...props} />;
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2017-07-08 07:06:02 +09:00
|
|
|
|
2016-08-31 23:15:12 +09:00
|
|
|
render () {
|
2022-10-23 22:58:24 +09:00
|
|
|
const { columns, children, singleColumn, isModalOpen } = this.props;
|
2022-10-05 03:13:23 +09:00
|
|
|
const { renderComposePanel } = this.state;
|
2017-06-04 08:39:38 +09:00
|
|
|
|
|
|
|
if (singleColumn) {
|
2019-05-24 03:01:10 +09:00
|
|
|
return (
|
|
|
|
<div className='columns-area__panels'>
|
2019-05-26 04:27:00 +09:00
|
|
|
<div className='columns-area__panels__pane columns-area__panels__pane--compositional'>
|
|
|
|
<div className='columns-area__panels__pane__inner'>
|
2021-03-24 18:19:07 +09:00
|
|
|
{renderComposePanel && <ComposePanel />}
|
2019-05-26 04:27:00 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-03-02 15:12:40 +09:00
|
|
|
|
2022-10-23 22:58:24 +09:00
|
|
|
<div className='columns-area__panels__main'>
|
2022-10-05 03:13:23 +09:00
|
|
|
<div className='tabs-bar__wrapper'><div id='tabs-bar__portal' /></div>
|
|
|
|
<div className='columns-area columns-area--mobile'>{children}</div>
|
2019-05-24 03:01:10 +09:00
|
|
|
</div>
|
2019-05-23 08:35:22 +09:00
|
|
|
|
2019-05-26 04:27:00 +09: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-24 03:01:10 +09:00
|
|
|
</div>
|
|
|
|
);
|
2017-06-04 08:39:38 +09:00
|
|
|
}
|
|
|
|
|
2016-08-25 00:56:44 +09:00
|
|
|
return (
|
2018-01-15 14:51:00 +09:00
|
|
|
<div className={`columns-area ${ isModalOpen ? 'unscrollable' : '' }`} ref={this.setRef}>
|
2017-06-04 08:39:38 +09:00
|
|
|
{columns.map(column => {
|
|
|
|
const params = column.get('params', null) === null ? null : column.get('params').toJS();
|
2018-05-22 00:49:10 +09:00
|
|
|
const other = params && params.other ? params.other : {};
|
2017-07-08 07:06:02 +09:00
|
|
|
|
|
|
|
return (
|
2017-09-10 15:48:11 +09:00
|
|
|
<BundleContainer key={column.get('uuid')} fetchComponent={componentMap[column.get('id')]} loading={this.renderLoading(column.get('id'))} error={this.renderError}>
|
2018-05-22 00:49:10 +09:00
|
|
|
{SpecificComponent => <SpecificComponent columnId={column.get('uuid')} params={params} multiColumn {...other} />}
|
2017-07-08 07:06:02 +09:00
|
|
|
</BundleContainer>
|
|
|
|
);
|
2017-06-04 08:39:38 +09:00
|
|
|
})}
|
|
|
|
|
|
|
|
{React.Children.map(children, child => React.cloneElement(child, { multiColumn: true }))}
|
2016-08-25 00:56:44 +09:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-31 23:15:12 +09:00
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|