mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
36c2284dea
(nothing in all-the* relies on these)
22 lines
663 B
JavaScript
22 lines
663 B
JavaScript
import Component from "@ember/component";
|
|
import { alias } from "@ember/object/computed";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
tagName: "td",
|
|
classNames: ["admin-report-table-cell"],
|
|
classNameBindings: ["type", "property"],
|
|
attributeBindings: ["value:title"],
|
|
options: null,
|
|
|
|
@discourseComputed("label", "data", "options")
|
|
computedLabel(label, data, options) {
|
|
return label.compute(data, options || {});
|
|
},
|
|
|
|
type: alias("label.type"),
|
|
property: alias("label.mainProperty"),
|
|
formattedValue: alias("computedLabel.formattedValue"),
|
|
value: alias("computedLabel.value"),
|
|
});
|