2017-06-03 23:39:38 +00:00
|
|
|
import React from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2017-07-24 23:05:51 +00:00
|
|
|
import detectPassiveEvents from 'detect-passive-events';
|
2017-12-04 07:26:40 +00:00
|
|
|
import { scrollTop } from 'flavours/glitch/util/scroll';
|
2017-06-03 23:39:38 +00:00
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default class Column extends React.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,
|
2017-06-03 23:39:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
scrollTop () {
|
|
|
|
const scrollable = this.node.querySelector('.scrollable');
|
|
|
|
|
|
|
|
if (!scrollable) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._interruptScrollAnimation = scrollTop(scrollable);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleWheel = () => {
|
|
|
|
if (typeof this._interruptScrollAnimation !== 'function') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._interruptScrollAnimation();
|
|
|
|
}
|
|
|
|
|
|
|
|
setRef = c => {
|
|
|
|
this.node = c;
|
|
|
|
}
|
|
|
|
|
2017-07-24 23:05:51 +00:00
|
|
|
componentDidMount () {
|
2017-08-31 09:20:54 +00:00
|
|
|
this.node.addEventListener('wheel', this.handleWheel, detectPassiveEvents.hasSupport ? { passive: true } : false);
|
2017-07-24 23:05:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
this.node.removeEventListener('wheel', this.handleWheel);
|
|
|
|
}
|
|
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|