mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 14:17:57 +08:00
Replaces toolbar popup-menu with select-kit
This commit is contained in:
@ -0,0 +1,47 @@
|
||||
import DropdownSelectBoxComponent from "select-kit/components/dropdown-select-box";
|
||||
import computed from "ember-addons/ember-computed-decorators";
|
||||
|
||||
export default DropdownSelectBoxComponent.extend({
|
||||
pluginApiIdentifiers: ["toolbar-popup-menu-options"],
|
||||
classNames: ["toolbar-popup-menu-options"],
|
||||
isHidden: Ember.computed.empty("computedContent"),
|
||||
showFullTitle: false,
|
||||
|
||||
@computed("title")
|
||||
collectionHeader(title) {
|
||||
return `<h3>${I18n.t(title)}</h3>`;
|
||||
},
|
||||
|
||||
mutateValue(value) {
|
||||
this.sendAction("onPopupMenuAction", value);
|
||||
this.setProperties({ value: null, highlightedValue: null });
|
||||
},
|
||||
|
||||
computeContent(content) {
|
||||
return content.map(contentItem => {
|
||||
if (contentItem.condition) {
|
||||
return {
|
||||
icon: contentItem.icon,
|
||||
name: I18n.t(contentItem.label),
|
||||
id: contentItem.action
|
||||
};
|
||||
}
|
||||
}).filter(contentItem => contentItem);
|
||||
},
|
||||
|
||||
didInsertElement() {
|
||||
this._super();
|
||||
|
||||
$("#reply-control").on("touchstart.toolbar-popup-menu-options", (event) => {
|
||||
if (this.get("isExpanded") && !this.element.contains(event.target)) {
|
||||
this.close(event);
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
willDestroyElement() {
|
||||
this._super();
|
||||
|
||||
$("#reply-control").off("touchstart.toolbar-popup-menu-options");
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user