mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:40:42 +08:00
34 lines
719 B
JavaScript
34 lines
719 B
JavaScript
import DropdownSelectBoxComponent from "select-kit/components/dropdown-select-box";
|
|
|
|
export default DropdownSelectBoxComponent.extend({
|
|
classNames: "group-members-dropdown",
|
|
headerIcon: ["bars"],
|
|
showFullTitle: false,
|
|
allowInitialValueMutation: false,
|
|
autoHighlight() {},
|
|
|
|
computeContent() {
|
|
const items = [
|
|
{
|
|
id: "showAddMembersModal",
|
|
name: I18n.t("groups.add_members.title"),
|
|
icon: "user-plus"
|
|
}
|
|
];
|
|
|
|
if (this.currentUser.admin) {
|
|
items.push({
|
|
id: "showBulkAddModal",
|
|
name: I18n.t("admin.groups.bulk_add.title"),
|
|
icon: "users"
|
|
});
|
|
}
|
|
|
|
return items;
|
|
},
|
|
|
|
mutateValue(value) {
|
|
this.sendAction(value);
|
|
}
|
|
});
|