mastodon-glitch/app/javascript/mastodon/features/ui/components/column.jsx

78 lines
1.9 KiB
React
Raw Normal View History

import PropTypes from 'prop-types';
import { PureComponent } from 'react';
import { debounce } from 'lodash';
2023-10-27 13:21:07 +00:00
import ColumnHeader from '../../../components/column_header';
import { isMobile } from '../../../is_mobile';
import { scrollTop } from '../../../scroll';
2023-05-23 08:52:27 +00:00
export default class Column extends PureComponent {
static propTypes = {
heading: PropTypes.string,
2023-10-27 13:21:07 +00:00
alwaysShowBackButton: PropTypes.bool,
icon: PropTypes.string,
iconComponent: PropTypes.func,
children: PropTypes.node,
active: PropTypes.bool,
hideHeadingOnMobile: PropTypes.bool,
};
handleHeaderClick = () => {
const scrollable = this.node.querySelector('.scrollable');
if (!scrollable) {
return;
}
this._interruptScrollAnimation = scrollTop(scrollable);
2023-01-30 00:45:35 +00:00
};
scrollTop () {
const scrollable = this.node.querySelector('.scrollable');
if (!scrollable) {
return;
}
this._interruptScrollAnimation = scrollTop(scrollable);
}
handleScroll = debounce(() => {
if (typeof this._interruptScrollAnimation !== 'undefined') {
this._interruptScrollAnimation();
}
2023-01-30 00:45:35 +00:00
}, 200);
setRef = (c) => {
this.node = c;
2023-01-30 00:45:35 +00:00
};
render () {
2023-10-27 13:21:07 +00:00
const { heading, icon, iconComponent, children, active, hideHeadingOnMobile, alwaysShowBackButton } = this.props;
2017-02-05 00:58:25 +00:00
const showHeading = heading && (!hideHeadingOnMobile || (hideHeadingOnMobile && !isMobile(window.innerWidth)));
const columnHeaderId = showHeading && heading.replace(/ /g, '-');
2023-10-27 13:21:07 +00:00
const header = showHeading && (
2023-10-27 13:21:07 +00:00
<ColumnHeader icon={icon} iconComponent={iconComponent} active={active} title={heading} onClick={this.handleHeaderClick} columnHeaderId={columnHeaderId} showBackButton={alwaysShowBackButton} />
);
return (
<div
ref={this.setRef}
role='region'
aria-labelledby={columnHeaderId}
className='column'
onScroll={this.handleScroll}
>
{header}
2017-02-05 00:58:25 +00:00
{children}
</div>
);
}
}