All files / javascripts/profile/components TableLoader.jsx

62.07% Statements 18/29
41.67% Branches 5/12
20% Functions 1/5
64.29% Lines 18/28
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 651x 1x 1x 1x   1x             57x   19x         19x 19x                 19x 19x 19x     19x 19x 19x 19x 19x                                                 1x  
import React from 'react';
import { Table, Tr, Td } from 'reactable';
import { Collapse } from 'react-bootstrap';
import $ from 'jquery';
 
const propTypes = {
  dataEndpoint: React.PropTypes.string.isRequired,
  mutator: React.PropTypes.func,
  columns: React.PropTypes.arrayOf(React.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;
    Iif (!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;
    Eif (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;