mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 20:47:07 +08:00
d1cc60c435
Changes made using the ember-native-class-codemod, plus some manual tweaks
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
import { computed } from "@ember/object";
|
|
import { readOnly } from "@ember/object/computed";
|
|
import { classNames } from "@ember-decorators/component";
|
|
import { escapeExpression } from "discourse/lib/utilities";
|
|
import I18n from "discourse-i18n";
|
|
import DropdownSelectBoxRowComponent from "select-kit/components/dropdown-select-box/dropdown-select-box-row";
|
|
|
|
@classNames("notifications-button-row")
|
|
export default class NotificationsButtonRow extends DropdownSelectBoxRowComponent {
|
|
@readOnly("selectKit.options.i18nPrefix") i18nPrefix;
|
|
@readOnly("selectKit.options.i18nPostfix") i18nPostfix;
|
|
|
|
@computed("_start")
|
|
get label() {
|
|
return escapeExpression(I18n.t(`${this._start}.title`));
|
|
}
|
|
|
|
@computed("item.icon")
|
|
get icons() {
|
|
return [escapeExpression(this.item.icon)];
|
|
}
|
|
|
|
@computed("_start")
|
|
get description() {
|
|
if (this.site && this.site.mobileView) {
|
|
return null;
|
|
}
|
|
|
|
return escapeExpression(I18n.t(`${this._start}.description`));
|
|
}
|
|
|
|
@computed("i18nPrefix", "i18nPostfix", "rowName")
|
|
get _start() {
|
|
return `${this.i18nPrefix}.${this.rowName}${this.i18nPostfix}`;
|
|
}
|
|
}
|