mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
58 lines
1.8 KiB
JavaScript
58 lines
1.8 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import TableHeaderItemCarret from './table_header_item_carret';
|
|
|
|
let TableHeaderItem = React.createClass({
|
|
|
|
propTypes: {
|
|
displayName: React.PropTypes.oneOfType([
|
|
React.PropTypes.string,
|
|
React.PropTypes.element
|
|
]).isRequired,
|
|
columnName: React.PropTypes.string.isRequired,
|
|
canBeOrdered: React.PropTypes.bool,
|
|
changeOrder: React.PropTypes.func,
|
|
orderAsc: React.PropTypes.bool,
|
|
orderBy: React.PropTypes.string,
|
|
className: React.PropTypes.string
|
|
},
|
|
|
|
changeOrder() {
|
|
this.props.changeOrder(this.props.columnName, !this.props.orderAsc);
|
|
},
|
|
|
|
render() {
|
|
if(this.props.canBeOrdered && this.props.changeOrder && this.props.orderAsc != null && this.props.orderBy) {
|
|
if(this.props.columnName === this.props.orderBy) {
|
|
return (
|
|
<th
|
|
className={'ascribe-table-header-column ' + this.props.className}
|
|
onClick={this.changeOrder}>
|
|
<span>{this.props.displayName} <TableHeaderItemCarret orderAsc={this.props.orderAsc} /></span>
|
|
</th>
|
|
);
|
|
} else {
|
|
return (
|
|
<th
|
|
className={'ascribe-table-header-column ' + this.props.className}
|
|
onClick={this.changeOrder}>
|
|
<span>{this.props.displayName}</span>
|
|
</th>
|
|
);
|
|
}
|
|
} else {
|
|
return (
|
|
<th className={'ascribe-table-header-column ' + this.props.className}>
|
|
<span>
|
|
{this.props.displayName}
|
|
</span>
|
|
</th>
|
|
);
|
|
}
|
|
}
|
|
});
|
|
|
|
export default TableHeaderItem;
|