discourse/app/assets/javascripts/select-kit/components/topic-footer-mobile-dropdown.js.es6

107 lines
2.3 KiB
Plaintext
Raw Normal View History

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