All files / javascripts/profile/components TableLoader.jsx

0% Statements 0/30
0% Branches 0/12
0% Functions 0/5
0% Lines 0/29
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66                                                                                                                                   
import React from 'react';
import PropTypes from 'prop-types';
import { Table, Tr, Td } from 'reactable';
import { Collapse } from 'react-bootstrap';
import $ from 'jquery';
 
const propTypes = {
  dataEndpoint: PropTypes.string.isRequired,
  mutator: PropTypes.func,
  columns: PropTypes.arrayOf(PropTypes.string),
};
 
export default class TableLoader extends React.PureComponent {
  constructor(props) {
    super(props);
    this.state = {
      isLoading: true,
      data: [],
    };
  }
  componentWillMount() {
    $.get(this.props.dataEndpoint, (data) => {
      let actualData = data;
      if (this.props.mutator) {
        actualData = this.props.mutator(data);
      }
      this.setState({ data: actualData, isLoading: false });
    });
  }
  render() {
    const tableProps = Object.assign({}, this.props);
    let columns = this.props.columns;
    if (!columns && this.state.data.length > 0) {
      columns = Object.keys(this.state.data[0]).filter(col => col[0] !== '_');
    }
    delete tableProps.dataEndpoint;
    delete tableProps.mutator;
    delete tableProps.columns;
    if (this.state.isLoading) {
      return <img alt="loading" width="25" src="/static/assets/images/loading.gif" />;
    }
    return (
      <Collapse in transitionAppear >
        <div>
          <Table {...tableProps}>
            {this.state.data.map((row, i) => (
              <Tr key={i}>
                {columns.map((col) => {
                  if (row.hasOwnProperty('_' + col)) {
                    return (
                      <Td key={col} column={col} value={row['_' + col]}>
                        {row[col]}
                      </Td>);
                  }
                  return <Td key={col} column={col}>{row[col]}</Td>;
                })}
              </Tr>
            ))}
          </Table>
        </div>
      </Collapse>
    );
  }
}
TableLoader.propTypes = propTypes;