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