2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2017-02-05 01:58:25 +01:00
|
|
|
import ColumnHeader from './column_header';
|
2017-04-21 20:05:35 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2017-05-26 14:09:13 +02:00
|
|
|
import { debounce } from 'lodash';
|
2017-08-04 18:57:46 +02:00
|
|
|
import { scrollTop } from '../../../scroll';
|
2017-07-26 13:46:53 +02:00
|
|
|
import { isMobile } from '../../../is_mobile';
|
2016-09-18 18:18:46 +02:00
|
|
|
|
2017-06-23 19:36:54 +02:00
|
|
|
export default class Column extends React.PureComponent {
|
2016-08-31 16:15:12 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static propTypes = {
|
|
|
|
heading: PropTypes.string,
|
|
|
|
icon: PropTypes.string,
|
|
|
|
children: PropTypes.node,
|
|
|
|
active: PropTypes.bool,
|
2017-05-20 17:31:47 +02:00
|
|
|
hideHeadingOnMobile: PropTypes.bool,
|
2017-08-06 21:27:47 +02:00
|
|
|
name: PropTypes.string,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
2016-08-31 16:15:12 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
handleHeaderClick = () => {
|
2017-05-03 02:04:16 +02:00
|
|
|
const scrollable = this.node.querySelector('.scrollable');
|
2017-06-04 01:39:38 +02:00
|
|
|
|
2017-04-11 21:58:28 +02:00
|
|
|
if (!scrollable) {
|
|
|
|
return;
|
|
|
|
}
|
2017-06-04 01:39:38 +02:00
|
|
|
|
2017-04-11 21:58:28 +02:00
|
|
|
this._interruptScrollAnimation = scrollTop(scrollable);
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|
2016-09-18 18:18:46 +02:00
|
|
|
|
2017-08-09 00:21:58 +02:00
|
|
|
scrollTop () {
|
|
|
|
const scrollable = this.node.querySelector('.scrollable');
|
|
|
|
|
|
|
|
if (!scrollable) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._interruptScrollAnimation = scrollTop(scrollable);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-26 14:09:13 +02:00
|
|
|
handleScroll = debounce(() => {
|
2016-09-18 18:18:46 +02:00
|
|
|
if (typeof this._interruptScrollAnimation !== 'undefined') {
|
|
|
|
this._interruptScrollAnimation();
|
|
|
|
}
|
2017-05-26 14:09:13 +02:00
|
|
|
}, 200)
|
2016-09-18 18:18:46 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
setRef = (c) => {
|
2017-05-03 02:04:16 +02:00
|
|
|
this.node = c;
|
|
|
|
}
|
|
|
|
|
2016-08-31 16:15:12 +02:00
|
|
|
render () {
|
2017-08-06 21:27:47 +02:00
|
|
|
const { heading, icon, children, active, hideHeadingOnMobile, name } = this.props;
|
2017-02-05 01:58:25 +01:00
|
|
|
|
2017-07-26 15:03:23 +02:00
|
|
|
const showHeading = heading && (!hideHeadingOnMobile || (hideHeadingOnMobile && !isMobile(window.innerWidth)));
|
2016-09-10 18:36:48 +02:00
|
|
|
|
2017-07-26 13:46:53 +02:00
|
|
|
const columnHeaderId = showHeading && heading.replace(/ /g, '-');
|
|
|
|
const header = showHeading && (
|
|
|
|
<ColumnHeader icon={icon} active={active} type={heading} onClick={this.handleHeaderClick} columnHeaderId={columnHeaderId} />
|
|
|
|
);
|
2017-02-05 04:11:14 +01:00
|
|
|
return (
|
2017-05-03 02:04:16 +02:00
|
|
|
<div
|
|
|
|
ref={this.setRef}
|
|
|
|
role='region'
|
2017-08-06 21:27:47 +02:00
|
|
|
data-column={name}
|
2017-05-03 02:04:16 +02:00
|
|
|
aria-labelledby={columnHeaderId}
|
|
|
|
className='column'
|
2017-06-06 13:20:07 +02:00
|
|
|
onScroll={this.handleScroll}
|
|
|
|
>
|
2016-09-10 18:36:48 +02:00
|
|
|
{header}
|
2017-02-05 01:58:25 +01:00
|
|
|
{children}
|
2016-08-24 17:56:44 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2016-08-31 16:15:12 +02:00
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|