-
-
Save bscofield/0fb968a9f69b14955b508f919d5f2b86 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
headerRow(columns) { | |
return ( | |
<thead> | |
<tr> | |
{this.headers(columns)} | |
</tr> | |
</thead> | |
); | |
} | |
headers(columns) { | |
return columns.map((col, i) => { | |
let arrow; | |
if (col === this.state.sort.column) { | |
arrow = this.state.sort.order === 'asc' ? | |
<span>↑</span> : <span>↓</span>; | |
} | |
return ( | |
<th key={i} className="table-header" onClick={() => this.setSortState(col)}> | |
{col} {arrow} | |
</th> | |
); | |
}); | |
} | |
rows(values, columns) { | |
return values.map((val, i) => ( | |
<tr key={i}> | |
{this.row(val, columns)} | |
</tr> | |
)); | |
} | |
row(rowData, columns) { | |
return columns.map((col, j) => { | |
const prefix = this.state.wide ? '' : (<span>{col + ':'}</span>); | |
return ( | |
<td key={j}> | |
{prefix} {rowData[col]} | |
</td> | |
); | |
}); | |
} | |
render() { | |
const props = this.props; | |
const length = props.values.length; | |
const limit = props.limit; | |
const page = this.state.page; | |
const start = page * limit; | |
const end = start + limit; | |
const values = this.sortRows(props.values).slice(start, end); | |
const columns = props.headers; | |
const wide = this.state.wide; // assuming the calculation moves to the constructor | |
return ( | |
<div> | |
<table className={'table table-responsive ' + (wide ? styles.wide : styles.narrow)}> | |
{wide ? this.headerRow(columns) : undefined} | |
<tbody> | |
{this.rows(values, columns)} | |
</tbody> | |
</table> | |
<ul className="pager"> | |
<li className={page === 0 ? 'disabled' : ''}> | |
<a onClick={this.prevPage}>Previous</a> | |
</li> | |
<li className={page + 1 >= Math.ceil(length / limit) ? 'disabled' : 0}> | |
<a onClick={this.nextPage}>Next</a> | |
</li> | |
</ul> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment