discourse/app/assets/javascripts/select-kit/components/notifications-button/notifications-button-row.js
Robin Ward 07813c4a91
Convert select-kit from es6 to js (#9246)
* Convert select-kit from es6 to js

* Hide more git blames
2020-03-20 12:40:32 -04:00

33 lines
1.0 KiB
JavaScript

import { readOnly } from "@ember/object/computed";
import { computed } from "@ember/object";
import DropdownSelectBoxRowComponent from "select-kit/components/dropdown-select-box/dropdown-select-box-row";
import { escapeExpression } from "discourse/lib/utilities";
export default DropdownSelectBoxRowComponent.extend({
classNames: ["notifications-button-row"],
i18nPrefix: readOnly("selectKit.options.i18nPrefix"),
i18nPostfix: readOnly("selectKit.options.i18nPostfix"),
label: computed("_start", function() {
return escapeExpression(I18n.t(`${this._start}.title`));
}),
title: readOnly("label"),
icons: computed("title", "item.icon", function() {
return [escapeExpression(this.item.icon)];
}),
description: computed("_start", function() {
if (this.site && this.site.mobileView) {
return null;
}
return escapeExpression(I18n.t(`${this._start}.description`));
}),
_start: computed("i18nPrefix", "i18nPostfix", "rowName", function() {
return `${this.i18nPrefix}.${this.rowName}${this.i18nPostfix}`;
})
});