mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 16:29:25 +08:00
21 lines
622 B
JavaScript
21 lines
622 B
JavaScript
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { alias } from "@ember/object/computed";
|
|
import Component from "@ember/component";
|
|
|
|
export default Component.extend({
|
|
tagName: "td",
|
|
classNames: ["admin-report-table-cell"],
|
|
classNameBindings: ["type", "property"],
|
|
options: null,
|
|
|
|
@discourseComputed("label", "data", "options")
|
|
computedLabel(label, data, options) {
|
|
return label.compute(data, options || {});
|
|
},
|
|
|
|
type: alias("label.type"),
|
|
property: alias("label.mainProperty"),
|
|
formatedValue: alias("computedLabel.formatedValue"),
|
|
value: alias("computedLabel.value")
|
|
});
|