Co-authored-by: tobi <tobi.smethurst@protonmail.com> Reviewed-on: https://codeberg.org/superseriousbusiness/masto-fe-standalone/pulls/88 Co-authored-by: Zoë Bijl <moiety@noreply.codeberg.org> Co-committed-by: Zoë Bijl <moiety@noreply.codeberg.org>
76 lines
1.8 KiB
JavaScript
76 lines
1.8 KiB
JavaScript
import PropTypes from "prop-types";
|
|
import { PureComponent } from "react";
|
|
|
|
import { debounce } from "lodash";
|
|
|
|
import { isMobile } from "../../../is_mobile";
|
|
import { scrollTop } from "../../../scroll";
|
|
|
|
import ColumnHeader from "./column_header";
|
|
|
|
export default class Column extends PureComponent {
|
|
|
|
static propTypes = {
|
|
heading: PropTypes.string,
|
|
icon: PropTypes.string,
|
|
children: PropTypes.node,
|
|
active: PropTypes.bool,
|
|
hideHeadingOnMobile: PropTypes.bool,
|
|
};
|
|
|
|
handleHeaderClick = () => {
|
|
const scrollable = this.node.querySelector(".scrollable");
|
|
|
|
if (!scrollable) {
|
|
return;
|
|
}
|
|
|
|
this._interruptScrollAnimation = scrollTop(scrollable);
|
|
};
|
|
|
|
scrollTop () {
|
|
const scrollable = this.node.querySelector(".scrollable");
|
|
|
|
if (!scrollable) {
|
|
return;
|
|
}
|
|
|
|
this._interruptScrollAnimation = scrollTop(scrollable);
|
|
}
|
|
|
|
|
|
handleScroll = debounce(() => {
|
|
if (typeof this._interruptScrollAnimation !== "undefined") {
|
|
this._interruptScrollAnimation();
|
|
}
|
|
}, 200);
|
|
|
|
setRef = (c) => {
|
|
this.node = c;
|
|
};
|
|
|
|
render () {
|
|
const { heading, icon, children, active, hideHeadingOnMobile } = this.props;
|
|
|
|
const showHeading = heading && (!hideHeadingOnMobile || (hideHeadingOnMobile && !isMobile(window.innerWidth)));
|
|
|
|
const columnHeaderId = showHeading && heading.replace(/ /g, "-");
|
|
const header = showHeading && (
|
|
<ColumnHeader icon={icon} active={active} type={heading} onClick={this.handleHeaderClick} columnHeaderId={columnHeaderId} />
|
|
);
|
|
return (
|
|
<div
|
|
ref={this.setRef}
|
|
role='region'
|
|
aria-labelledby={columnHeaderId}
|
|
className='column'
|
|
onScroll={this.handleScroll}
|
|
>
|
|
{header}
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|