Skip to content
Snippets Groups Projects
Commit 798b0fc5 authored by Nolan Lawson's avatar Nolan Lawson Committed by Eugen Rochko
Browse files

Reduce wasted renders for column_loading.js (#5021)

* Reduce wasted renders for column_loading.js

* Use defaultProps
parent 8fcfcddc
No related branches found
No related tags found
No related merge requests found
......@@ -3,17 +3,28 @@ import PropTypes from 'prop-types';
import Column from '../../../components/column';
import ColumnHeader from '../../../components/column_header';
import ImmutablePureComponent from 'react-immutable-pure-component';
const ColumnLoading = ({ title = '', icon = ' ' }) => (
<Column>
<ColumnHeader icon={icon} title={title} multiColumn={false} focusable={false} />
<div className='scrollable' />
</Column>
);
export default class ColumnLoading extends ImmutablePureComponent {
ColumnLoading.propTypes = {
title: PropTypes.node,
icon: PropTypes.string,
};
static propTypes = {
title: PropTypes.oneOfType(PropTypes.node, PropTypes.string),
icon: PropTypes.string,
};
export default ColumnLoading;
static defaultProps = {
title: '',
icon: '',
};
render() {
let { title, icon } = this.props;
return (
<Column>
<ColumnHeader icon={icon} title={title} multiColumn={false} focusable={false} />
<div className='scrollable' />
</Column>
);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment