discourse/app/assets/javascripts/select-kit/addon/components/toolbar-popup-menu-options.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
664 B
JavaScript
Raw Normal View History

import DropdownSelectBoxComponent from "select-kit/components/dropdown-select-box";
import I18n from "I18n";
export default DropdownSelectBoxComponent.extend({
pluginApiIdentifiers: ["toolbar-popup-menu-options"],
classNames: ["toolbar-popup-menu-options"],
selectKitOptions: {
showFullTitle: false,
filterable: false,
autoFilterable: false,
},
modifyContent(contents) {
return contents
.map((content) => {
if (content.condition) {
return {
icon: content.icon,
name: I18n.t(content.label),
id: content.action,
};
}
})
.filter(Boolean);
},
});