2017-07-09 23:02:26 +10:00
|
|
|
import PropTypes from 'prop-types';
|
2017-07-08 08:06:02 +10:00
|
|
|
|
2023-05-24 01:15:17 +10:00
|
|
|
import ImmutablePureComponent from 'react-immutable-pure-component';
|
|
|
|
|
2017-07-08 08:06:02 +10:00
|
|
|
import Column from '../../../components/column';
|
|
|
|
import ColumnHeader from '../../../components/column_header';
|
|
|
|
|
2017-09-21 03:58:44 +10:00
|
|
|
export default class ColumnLoading extends ImmutablePureComponent {
|
2017-07-08 08:06:02 +10:00
|
|
|
|
2017-09-21 03:58:44 +10:00
|
|
|
static propTypes = {
|
2017-09-23 01:50:29 +10:00
|
|
|
title: PropTypes.oneOfType([PropTypes.node, PropTypes.string]),
|
2017-09-21 03:58:44 +10:00
|
|
|
icon: PropTypes.string,
|
2022-10-20 23:35:29 +11:00
|
|
|
multiColumn: PropTypes.bool,
|
2017-09-21 03:58:44 +10:00
|
|
|
};
|
2017-07-09 23:02:26 +10:00
|
|
|
|
2017-09-21 03:58:44 +10:00
|
|
|
static defaultProps = {
|
|
|
|
title: '',
|
|
|
|
icon: '',
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
2022-10-20 23:35:29 +11:00
|
|
|
let { title, icon, multiColumn } = this.props;
|
|
|
|
|
2017-09-21 03:58:44 +10:00
|
|
|
return (
|
|
|
|
<Column>
|
2022-10-20 23:35:29 +11:00
|
|
|
<ColumnHeader icon={icon} title={title} multiColumn={multiColumn} focusable={false} placeholder />
|
2017-09-21 03:58:44 +10:00
|
|
|
<div className='scrollable' />
|
|
|
|
</Column>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|