2018-03-29 02:57:10 -04:00
|
|
|
import ComboBoxComponent from "select-kit/components/combo-box";
|
|
|
|
import DiscourseURL from "discourse/lib/url";
|
|
|
|
import { default as computed } from "ember-addons/ember-computed-decorators";
|
|
|
|
|
|
|
|
export default ComboBoxComponent.extend({
|
|
|
|
pluginApiIdentifiers: ["group-dropdown"],
|
|
|
|
classNames: "group-dropdown",
|
|
|
|
content: Ember.computed.alias("groups"),
|
|
|
|
tagName: "li",
|
2018-04-12 04:56:32 -04:00
|
|
|
caretDownIcon: "caret-right",
|
|
|
|
caretUpIcon: "caret-down",
|
2018-03-29 02:57:10 -04:00
|
|
|
allowAutoSelectFirst: false,
|
|
|
|
valueAttribute: 'name',
|
|
|
|
|
|
|
|
@computed("content")
|
|
|
|
filterable(content) {
|
|
|
|
return content && content.length >= 10;
|
|
|
|
},
|
|
|
|
|
|
|
|
computeHeaderContent() {
|
|
|
|
let content = this._super();
|
|
|
|
|
|
|
|
if (!this.get("hasSelection")) {
|
|
|
|
content.label = `<span>${I18n.t("groups.index.all")}</span>`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return content;
|
|
|
|
},
|
|
|
|
|
|
|
|
@computed
|
|
|
|
collectionHeader() {
|
|
|
|
return `
|
|
|
|
<a href="${Discourse.getURL("/groups")}" class="group-dropdown-filter">
|
|
|
|
${I18n.t("groups.index.all").toLowerCase()}
|
|
|
|
</a>
|
|
|
|
`.htmlSafe();
|
|
|
|
},
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
onSelect(groupName) {
|
|
|
|
DiscourseURL.routeTo(Discourse.getURL(`/groups/${groupName}`));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|