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