All files / javascripts/SqlLab/components TableElement.jsx

91.53% Statements 54/59
75% Branches 21/28
100% Functions 5/5
91.23% Lines 52/57
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 2431x   1x 1x   1x 1x 1x   1x           1x             21x   7x                                   1x 1x 1x             1x                             1x       9x 9x 9x 9x 9x 9x 9x 9x 9x                 9x 9x 27x   9x 9x                   9x     9x 9x 9x 9x 9x 25x       9x               126x 126x 36x   126x                             9x     1x     9x 9x   9x 9x 9x                                     9x                         9x                                                                                                           1x 1x      
import React from 'react';
 
import { ButtonGroup, Collapse, Well } from 'react-bootstrap';
import shortid from 'shortid';
 
import CopyToClipboard from '../../components/CopyToClipboard';
import Link from './Link';
import ModalTrigger from '../../components/ModalTrigger';
 
const propTypes = {
  table: React.PropTypes.object,
  actions: React.PropTypes.object,
  timeout: React.PropTypes.integer,  // used for tests
};
 
const defaultProps = {
  actions: {},
  table: null,
  timeout: 500,
};
 
class TableElement extends React.PureComponent {
  constructor(props) {
    super(props);
    this.state = {
      sortColumns: false,
      expanded: true,
    };
  }
 
  popSelectStar() {
    const qe = {
      id: shortid.generate(),
      title: this.props.table.name,
      dbId: this.props.table.dbId,
      autorun: true,
      sql: this.props.table.selectStar,
    };
    this.props.actions.addQueryEditor(qe);
  }
 
  toggleTable(e) {
    e.preventDefault();
    Eif (this.props.table.expanded) {
      this.props.actions.collapseTable(this.props.table);
    } else {
      this.props.actions.expandTable(this.props.table);
    }
  }
 
  removeTable() {
    this.setState({ expanded: false });
  }
  dataPreviewModal() {
    const query = {
      dbId: this.props.table.dbId,
      sql: this.props.table.selectStar,
      tableName: this.props.table.name,
      sqlEditorId: null,
      tab: '',
      runAsync: false,
      ctas: false,
    };
    this.props.actions.runQuery(query);
  }
  toggleSortColumns() {
    this.setState({ sortColumns: !this.state.sortColumns });
  }
 
  getHeader() {
    const table = this.props.table;
    let header;
    Eif (table.partitions) {
      let partitionQuery;
      let partitionClipBoard;
      Eif (table.partitions.partitionQuery) {
        partitionQuery = table.partitions.partitionQuery;
        const tt = 'Copy partition query to clipboard';
        partitionClipBoard = (
          <CopyToClipboard
            text={partitionQuery}
            shouldShowText={false}
            tooltipText={tt}
            copyNode={<i className="fa fa-clipboard" />}
          />
        );
      }
      let latest = [];
      for (const k in table.partitions.latest) {
        latest.push(`${k}=${table.partitions.latest[k]}`);
      }
      latest = latest.join('/');
      header = (
        <Well bsSize="small">
          <div>
            <small>
              latest partition: {latest}
            </small> {partitionClipBoard}
          </div>
        </Well>
      );
    }
    return header;
  }
  getMetadata() {
    const table = this.props.table;
    let cols;
    Eif (table.columns) {
      cols = table.columns.slice();
      if (this.state.sortColumns) {
        cols.sort((a, b) => a.name.toUpperCase() > b.name.toUpperCase());
      }
    }
    const metadata = (
      <Collapse
        in={table.expanded}
        timeout={this.props.timeout}
      >
        <div>
          {this.getHeader()}
          <div className="table-columns">
            {cols && cols.map((col) => {
              let name = col.name;
              if (col.indexed) {
                name = <strong>{col.name}</strong>;
              }
              return (
                <div className="clearfix table-column" key={shortid.generate()}>
                  <div className="pull-left m-l-10 col-name">
                    {name}
                  </div>
                  <div className="pull-right text-muted">
                    <small> {col.type}</small>
                  </div>
                </div>);
            })}
            <hr />
          </div>
        </div>
      </Collapse>
    );
    return metadata;
  }
  removeFromStore() {
    this.props.actions.removeTable(this.props.table);
  }
 
  render() {
    const table = this.props.table;
 
    let keyLink;
    Eif (table.indexes && table.indexes.length > 0) {
      keyLink = (
        <ModalTrigger
          modalTitle={
            <div>
              Keys for table <strong>{table.name}</strong>
            </div>
          }
          modalBody={
            <pre>{JSON.stringify(table.indexes, null, 4)}</pre>
          }
          triggerNode={
            <Link
              className="fa fa-key pull-left m-l-2"
              tooltip={`View indexes (${table.indexes.length})`}
            />
          }
        />
      );
    }
    return (
      <Collapse
        in={this.state.expanded}
        timeout={this.props.timeout}
        transitionAppear
        onExited={this.removeFromStore.bind(this)}
      >
        <div className="TableElement">
          <div className="clearfix">
            <div className="pull-left">
              <a
                href="#"
                className="table-name"
                onClick={(e) => { this.toggleTable(e); }}
              >
                <strong>{table.name}</strong>
                <small className="m-l-5">
                  <i className={`fa fa-${table.expanded ? 'minus' : 'plus'}-square-o`} />
                </small>
              </a>
            </div>
            <div className="pull-right">
              <ButtonGroup className="ws-el-controls pull-right">
                {keyLink}
                <Link
                  className={
                    `fa fa-sort-${!this.state.sortColumns ? 'alpha' : 'numeric'}-asc ` +
                    'pull-left sort-cols m-l-2'}
                  onClick={this.toggleSortColumns.bind(this)}
                  tooltip={
                    !this.state.sortColumns ?
                    'Sort columns alphabetically' :
                    'Original table column order'}
                  href="#"
                />
                <Link
                  className="fa fa-search-plus pull-left m-l-2"
                  onClick={this.dataPreviewModal.bind(this)}
                  tooltip="Data preview"
                  href="#"
                />
                {table.selectStar && <CopyToClipboard
                  copyNode={
                    <a className="fa fa-clipboard pull-left m-l-2" />
                  }
                  text={table.selectStar}
                  shouldShowText={false}
                  tooltipText="Copy SELECT statement to clipboard"
                />
                }
                <Link
                  className="fa fa-trash table-remove pull-left m-l-2"
                  onClick={this.removeTable.bind(this)}
                  tooltip="Remove from panel"
                  href="#"
                />
              </ButtonGroup>
            </div>
          </div>
          <div>
            {this.getMetadata()}
          </div>
        </div>
      </Collapse>
    );
  }
}
TableElement.propTypes = propTypes;
TableElement.defaultProps = defaultProps;
 
export default TableElement;