2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2017-11-21 18:53:09 +08:00
|
|
|
import DropdownSelectBoxComponent from "select-kit/components/dropdown-select-box";
|
2020-03-10 16:56:55 +08:00
|
|
|
import { computed, action } from "@ember/object";
|
|
|
|
|
|
|
|
const UNPINNED = "unpinned";
|
|
|
|
const PINNED = "pinned";
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
|
|
export default DropdownSelectBoxComponent.extend({
|
|
|
|
pluginApiIdentifiers: ["pinned-options"],
|
2020-02-03 21:22:14 +08:00
|
|
|
classNames: ["pinned-options"],
|
2017-11-21 18:53:09 +08:00
|
|
|
|
2020-05-18 20:07:40 +08:00
|
|
|
selectKitOptions: {
|
|
|
|
showCaret: true,
|
|
|
|
},
|
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
modifySelection(content) {
|
2017-11-21 18:53:09 +08:00
|
|
|
const pinnedGlobally = this.get("topic.pinned_globally");
|
2020-02-03 21:22:14 +08:00
|
|
|
const pinned = this.value;
|
2017-11-21 18:53:09 +08:00
|
|
|
const globally = pinnedGlobally ? "_globally" : "";
|
2020-03-10 16:56:55 +08:00
|
|
|
const state = pinned ? `pinned${globally}` : UNPINNED;
|
2017-11-21 18:53:09 +08:00
|
|
|
const title = I18n.t(`topic_statuses.${state}.title`);
|
|
|
|
|
2020-05-18 16:50:33 +08:00
|
|
|
content.label = `<span>${title}</span>`.htmlSafe();
|
2017-12-22 20:08:12 +08:00
|
|
|
content.title = title;
|
|
|
|
content.name = state;
|
2020-03-10 16:56:55 +08:00
|
|
|
content.icon = `thumbtack${state === UNPINNED ? " unpinned" : ""}`;
|
2017-11-21 18:53:09 +08:00
|
|
|
return content;
|
|
|
|
},
|
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
content: computed(function () {
|
|
|
|
const globally = this.topic.pinned_globally ? "_globally" : "";
|
2017-11-21 18:53:09 +08:00
|
|
|
|
2020-02-03 21:22:14 +08:00
|
|
|
return [
|
2017-11-21 18:53:09 +08:00
|
|
|
{
|
2020-03-10 16:56:55 +08:00
|
|
|
id: PINNED,
|
2020-02-03 21:22:14 +08:00
|
|
|
name: I18n.t(`topic_statuses.pinned${globally}.title`),
|
2020-02-04 22:34:56 +08:00
|
|
|
description: this.site.mobileView
|
|
|
|
? null
|
|
|
|
: I18n.t(`topic_statuses.pinned${globally}.help`),
|
2018-11-27 05:49:57 +08:00
|
|
|
icon: "thumbtack",
|
2017-11-21 18:53:09 +08:00
|
|
|
},
|
|
|
|
{
|
2020-03-10 16:56:55 +08:00
|
|
|
id: UNPINNED,
|
2017-11-21 18:53:09 +08:00
|
|
|
name: I18n.t("topic_statuses.unpinned.title"),
|
2018-11-27 05:49:57 +08:00
|
|
|
icon: "thumbtack unpinned",
|
2020-02-04 22:34:56 +08:00
|
|
|
description: this.site.mobileView
|
|
|
|
? null
|
|
|
|
: I18n.t("topic_statuses.unpinned.help"),
|
2017-11-21 18:53:09 +08:00
|
|
|
},
|
2020-02-03 21:22:14 +08:00
|
|
|
];
|
|
|
|
}),
|
2017-11-21 18:53:09 +08:00
|
|
|
|
2020-03-10 16:56:55 +08:00
|
|
|
@action
|
|
|
|
onChange(value) {
|
|
|
|
const topic = this.topic;
|
2018-01-11 16:39:51 +08:00
|
|
|
|
2020-03-10 16:56:55 +08:00
|
|
|
if (value === UNPINNED) {
|
|
|
|
return topic.clearPin();
|
|
|
|
} else {
|
|
|
|
return topic.rePin();
|
2017-11-21 18:53:09 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|