discourse/app/assets/javascripts/select-kit/components/topic-footer-mobile-dropdow...

93 lines
2.0 KiB
Plaintext
Raw Normal View History

import ComboBoxComponent from "select-kit/components/combo-box";
2017-10-19 15:51:08 -04:00
export default ComboBoxComponent.extend({
pluginApiIdentifiers: ["topic-footer-mobile-dropdown"],
2017-10-19 15:51:08 -04:00
classNames: "topic-footer-mobile-dropdown",
filterable: false,
autoFilterable: false,
allowInitialValueMutation: false,
2017-10-19 15:51:08 -04:00
computeHeaderContent() {
let content = this._super();
content.name = I18n.t("topic.controls");
return content;
2017-10-19 15:51:08 -04:00
},
computeContent(content) {
const topic = this.get("topic");
const details = topic.get("details");
2017-10-19 15:51:08 -04:00
if (details.get("can_invite_to")) {
2018-06-15 11:03:24 -04:00
content.push({
id: "invite",
icon: "users",
name: I18n.t("topic.invite_reply.title")
});
2017-10-19 15:51:08 -04:00
}
if (topic.get("bookmarked")) {
2018-06-15 11:03:24 -04:00
content.push({
id: "bookmark",
icon: "bookmark",
name: I18n.t("bookmarked.clear_bookmarks")
});
2017-10-19 15:51:08 -04:00
} else {
2018-06-15 11:03:24 -04:00
content.push({
id: "bookmark",
icon: "bookmark",
name: I18n.t("bookmarked.title")
});
2017-10-19 15:51:08 -04:00
}
2018-06-15 11:03:24 -04:00
content.push({
id: "share",
icon: "link",
name: I18n.t("topic.share.title")
});
2017-10-19 15:51:08 -04:00
if (details.get("can_flag_topic")) {
2018-06-15 11:03:24 -04:00
content.push({
id: "flag",
icon: "flag",
name: I18n.t("topic.flag_topic.title")
});
2017-10-19 15:51:08 -04:00
}
return content;
},
autoHighlight() {},
mutateValue(value) {
2017-11-09 13:57:53 -05:00
const topic = this.get("topic");
2017-10-19 15:51:08 -04:00
2017-11-09 13:57:53 -05:00
if (!topic.get("id")) {
return;
}
2017-10-19 15:51:08 -04:00
const refresh = () => this.deselect(this.get("selection"));
2017-10-19 15:51:08 -04:00
2018-06-15 11:03:24 -04:00
switch (value) {
2017-11-09 13:57:53 -05:00
case "invite":
this.attrs.showInvite();
refresh();
break;
case "bookmark":
2018-06-15 11:03:24 -04:00
topic.toggleBookmark().then(() => refresh());
2017-11-09 13:57:53 -05:00
break;
case "share":
2018-06-15 11:03:24 -04:00
this.appEvents.trigger(
"share:url",
topic.get("shareUrl"),
$("#topic-footer-buttons")
);
2017-11-09 13:57:53 -05:00
refresh();
break;
case "flag":
this.attrs.showFlagTopic();
refresh();
break;
2017-10-19 15:51:08 -04:00
}
}
});