mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
|
|
import TableItem from './table_item';
|
|
import TableHeader from './table_header';
|
|
|
|
import TableColumnModel from '../../models/table_column_model';
|
|
|
|
|
|
let Table = React.createClass({
|
|
propTypes: {
|
|
columnList: React.PropTypes.arrayOf(React.PropTypes.instanceOf(TableColumnModel))
|
|
},
|
|
render() {
|
|
if(this.props.itemList && this.props.itemList.length > 0) {
|
|
return (
|
|
<div className="ascribe-table">
|
|
<TableHeader columnList={this.props.columnList} itemList={this.props.itemList} fetchList={this.props.fetchList} orderAsc={this.props.orderAsc} orderBy={this.props.orderBy} />
|
|
{this.props.itemList.map((item, i) => {
|
|
return (
|
|
<TableItem columnList={this.props.columnList} columnContent={item} key={i} />
|
|
);
|
|
})}
|
|
</div>
|
|
);
|
|
|
|
} else {
|
|
return (
|
|
<p>Loading</p>
|
|
);
|
|
}
|
|
}
|
|
});
|
|
|
|
export default Table;
|