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>
33 lines
776 B
JavaScript
33 lines
776 B
JavaScript
import PropTypes from "prop-types";
|
|
|
|
import ImmutablePureComponent from "react-immutable-pure-component";
|
|
|
|
import Column from "../../../components/column";
|
|
import ColumnHeader from "../../../components/column_header";
|
|
|
|
export default class ColumnLoading extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
title: PropTypes.oneOfType([PropTypes.node, PropTypes.string]),
|
|
icon: PropTypes.string,
|
|
multiColumn: PropTypes.bool,
|
|
};
|
|
|
|
static defaultProps = {
|
|
title: "",
|
|
icon: "",
|
|
};
|
|
|
|
render() {
|
|
let { title, icon, multiColumn } = this.props;
|
|
|
|
return (
|
|
<Column>
|
|
<ColumnHeader icon={icon} title={title} multiColumn={multiColumn} focusable={false} placeholder />
|
|
<div className='scrollable' />
|
|
</Column>
|
|
);
|
|
}
|
|
|
|
}
|