mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
20 lines
664 B
JavaScript
20 lines
664 B
JavaScript
import discourseComputed from "discourse-common/utils/decorators";
|
|
import Component from "@ember/component";
|
|
|
|
export default Component.extend({
|
|
tagName: "th",
|
|
classNames: ["admin-report-table-header"],
|
|
classNameBindings: ["label.mainProperty", "label.type", "isCurrentSort"],
|
|
attributeBindings: ["label.title:title"],
|
|
|
|
@discourseComputed("currentSortLabel.sortProperty", "label.sortProperty")
|
|
isCurrentSort(currentSortField, labelSortField) {
|
|
return currentSortField === labelSortField;
|
|
},
|
|
|
|
@discourseComputed("currentSortDirection")
|
|
sortIcon(currentSortDirection) {
|
|
return currentSortDirection === 1 ? "caret-up" : "caret-down";
|
|
}
|
|
});
|