mastodon/app/javascript/mastodon/components/column.jsx

67 lines
1.5 KiB
React
Raw Normal View History

import PropTypes from 'prop-types';
import { PureComponent } from 'react';
import { supportsPassiveEvents } from 'detect-passive-events';
import { scrollTop } from '../scroll';
2023-05-22 15:48:01 +02:00
const listenerOptions = supportsPassiveEvents ? { passive: true } : false;
2023-05-23 10:52:27 +02:00
export default class Column extends PureComponent {
static propTypes = {
children: PropTypes.node,
label: PropTypes.string,
bindToDocument: PropTypes.bool,
};
scrollTop () {
const scrollable = this.props.bindToDocument ? document.scrollingElement : this.node.querySelector('.scrollable');
if (!scrollable) {
return;
}
this._interruptScrollAnimation = scrollTop(scrollable);
}
handleWheel = () => {
if (typeof this._interruptScrollAnimation !== 'function') {
return;
}
this._interruptScrollAnimation();
2023-01-30 01:45:35 +01:00
};
setRef = c => {
this.node = c;
2023-01-30 01:45:35 +01:00
};
componentDidMount () {
if (this.props.bindToDocument) {
2023-05-22 15:48:01 +02:00
document.addEventListener('wheel', this.handleWheel, listenerOptions);
} else {
2023-05-22 15:48:01 +02:00
this.node.addEventListener('wheel', this.handleWheel, listenerOptions);
}
}
componentWillUnmount () {
if (this.props.bindToDocument) {
2023-05-22 15:48:01 +02:00
document.removeEventListener('wheel', this.handleWheel, listenerOptions);
} else {
2023-05-22 15:48:01 +02:00
this.node.removeEventListener('wheel', this.handleWheel, listenerOptions);
}
}
render () {
const { label, children } = this.props;
return (
<div role='region' aria-label={label} className='column' ref={this.setRef}>
{children}
</div>
);
}
}