2017-06-04 01:39:38 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2023-05-28 16:38:10 +02:00
|
|
|
import { PureComponent } from 'react';
|
|
|
|
|
2020-11-04 18:21:05 +01:00
|
|
|
import { supportsPassiveEvents } from 'detect-passive-events';
|
2023-05-28 16:38:10 +02:00
|
|
|
|
2022-10-11 11:39:52 +02:00
|
|
|
import { scrollTop } from '../scroll';
|
2017-06-04 01:39:38 +02:00
|
|
|
|
2023-05-22 15:48:01 +02:00
|
|
|
const listenerOptions = supportsPassiveEvents ? { passive: true } : false;
|
|
|
|
|
2023-05-28 14:18:23 +02:00
|
|
|
export default class Column extends PureComponent {
|
2017-06-04 01:39:38 +02:00
|
|
|
|
|
|
|
static propTypes = {
|
|
|
|
children: PropTypes.node,
|
2017-07-30 18:36:28 +02:00
|
|
|
extraClasses: PropTypes.string,
|
2017-08-06 21:27:47 +02:00
|
|
|
name: PropTypes.string,
|
2018-08-28 12:01:04 +02:00
|
|
|
label: PropTypes.string,
|
2019-08-01 19:17:17 +02:00
|
|
|
bindToDocument: PropTypes.bool,
|
2017-06-04 01:39:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
scrollTop () {
|
2023-08-24 14:10:48 +02:00
|
|
|
let scrollable = null;
|
|
|
|
|
|
|
|
if (this.props.bindToDocument) {
|
|
|
|
scrollable = document.scrollingElement;
|
|
|
|
} else {
|
|
|
|
scrollable = this.node.querySelector('.scrollable');
|
|
|
|
|
|
|
|
// Some columns have nested `.scrollable` containers, with the outer one
|
|
|
|
// being a wrapper while the actual scrollable content is deeper.
|
|
|
|
if (scrollable.classList.contains('scrollable--flex')) {
|
|
|
|
scrollable = scrollable?.querySelector('.scrollable') || scrollable;
|
|
|
|
}
|
|
|
|
}
|
2017-06-04 01:39:38 +02:00
|
|
|
|
|
|
|
if (!scrollable) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._interruptScrollAnimation = scrollTop(scrollable);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleWheel = () => {
|
|
|
|
if (typeof this._interruptScrollAnimation !== 'function') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._interruptScrollAnimation();
|
2023-02-03 20:52:07 +01:00
|
|
|
};
|
2017-06-04 01:39:38 +02:00
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.node = c;
|
2023-02-03 20:52:07 +01:00
|
|
|
};
|
2017-06-04 01:39:38 +02:00
|
|
|
|
2017-07-25 01:05:51 +02:00
|
|
|
componentDidMount () {
|
2019-08-01 19:17:17 +02:00
|
|
|
if (this.props.bindToDocument) {
|
2023-05-22 15:48:01 +02:00
|
|
|
document.addEventListener('wheel', this.handleWheel, listenerOptions);
|
2019-08-01 19:17:17 +02:00
|
|
|
} else {
|
2023-05-22 15:48:01 +02:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, listenerOptions);
|
2019-08-01 19:17:17 +02:00
|
|
|
}
|
2017-07-25 01:05:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
2019-08-01 19:17:17 +02:00
|
|
|
if (this.props.bindToDocument) {
|
2023-05-22 15:48:01 +02:00
|
|
|
document.removeEventListener('wheel', this.handleWheel, listenerOptions);
|
2019-08-01 19:17:17 +02:00
|
|
|
} else {
|
2023-05-22 15:48:01 +02:00
|
|
|
this.node.removeEventListener('wheel', this.handleWheel, listenerOptions);
|
2019-08-01 19:17:17 +02:00
|
|
|
}
|
2017-07-25 01:05:51 +02:00
|
|
|
}
|
|
|
|
|
2017-06-04 01:39:38 +02:00
|
|
|
render () {
|
2018-08-28 12:01:04 +02:00
|
|
|
const { children, extraClasses, name, label } = this.props;
|
2017-06-04 01:39:38 +02:00
|
|
|
|
|
|
|
return (
|
2018-08-28 12:01:04 +02:00
|
|
|
<div role='region' aria-label={label} data-column={name} className={`column ${extraClasses || ''}`} ref={this.setRef}>
|
2017-06-04 01:39:38 +02:00
|
|
|
{children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|