mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 02:23:40 +08:00
0431942f3d
This new iteration of select-kit focuses on following best principales and disallowing mutations inside select-kit components. A best effort has been made to avoid breaking changes, however if you content was a flat array, eg: ["foo", "bar"] You will need to set valueProperty=null and nameProperty=null on the component. Also almost every component should have an `onChange` handler now to decide what to do with the updated data. **select-kit will not mutate your data by itself anymore**
33 lines
1.0 KiB
JavaScript
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}`;
|
|
})
|
|
});
|