2019-11-08 05:38:28 +08:00
|
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
2019-10-31 04:28:29 +08:00
|
|
|
import { alias } from "@ember/object/computed";
|
2019-10-24 00:30:52 +08:00
|
|
|
import Component from "@ember/component";
|
2018-08-02 06:40:59 +08:00
|
|
|
|
2019-10-24 00:30:52 +08:00
|
|
|
export default Component.extend({
|
2018-08-02 06:40:59 +08:00
|
|
|
tagName: "td",
|
|
|
|
classNames: ["admin-report-table-cell"],
|
|
|
|
classNameBindings: ["type", "property"],
|
|
|
|
options: null,
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("label", "data", "options")
|
2018-08-02 06:40:59 +08:00
|
|
|
computedLabel(label, data, options) {
|
|
|
|
return label.compute(data, options || {});
|
|
|
|
},
|
|
|
|
|
2019-10-31 04:28:29 +08:00
|
|
|
type: alias("label.type"),
|
|
|
|
property: alias("label.mainProperty"),
|
|
|
|
formatedValue: alias("computedLabel.formatedValue"),
|
|
|
|
value: alias("computedLabel.value")
|
2018-08-02 06:40:59 +08:00
|
|
|
});
|