mirror of
https://github.com/discourse/discourse.git
synced 2025-02-10 13:24:55 +00:00
This reverts commit 20780a1eeed56b321daf18ee6bbfe681a51d1bf4. * SECURITY: re-adds accidentally reverted commit: 03d26cd6: ensure embed_url contains valid http(s) uri * when the merge commit e62a85cf was reverted, git chose the 2660c2e2 parent to land on instead of the 03d26cd6 parent (which contains security fixes)
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
import I18n from "I18n";
|
|
import DropdownSelectBoxComponent from "select-kit/components/dropdown-select-box";
|
|
import { allLevels, buttonDetails } from "discourse/lib/notification-levels";
|
|
import { computed, setProperties } from "@ember/object";
|
|
|
|
export default DropdownSelectBoxComponent.extend({
|
|
pluginApiIdentifiers: ["notifications-button"],
|
|
classNames: ["notifications-button"],
|
|
content: allLevels,
|
|
nameProperty: "key",
|
|
|
|
selectKitOptions: {
|
|
autoFilterable: false,
|
|
filterable: false,
|
|
i18nPrefix: "",
|
|
i18nPostfix: ""
|
|
},
|
|
|
|
modifyComponentForRow() {
|
|
return "notifications-button/notifications-button-row";
|
|
},
|
|
|
|
modifySelection(content) {
|
|
content = content || {};
|
|
const { i18nPrefix, i18nPostfix } = this.selectKit.options;
|
|
const title = I18n.t(
|
|
`${i18nPrefix}.${this.buttonForValue.key}${i18nPostfix}.title`
|
|
);
|
|
setProperties(content, {
|
|
title,
|
|
label: title,
|
|
icon: this.buttonForValue.icon
|
|
});
|
|
return content;
|
|
},
|
|
|
|
buttonForValue: computed("value", function() {
|
|
return buttonDetails(this.value);
|
|
})
|
|
});
|