import { action, computed } from "@ember/object"; import { htmlSafe } from "@ember/template"; import { classNames } from "@ember-decorators/component"; import I18n from "discourse-i18n"; import DropdownSelectBoxComponent from "select-kit/components/dropdown-select-box"; import { pluginApiIdentifiers, selectKitOptions, } from "select-kit/components/select-kit"; const UNPINNED = "unpinned"; const PINNED = "pinned"; @classNames("pinned-options") @selectKitOptions({ showCaret: true, }) @pluginApiIdentifiers("pinned-options") export default class PinnedOptions extends DropdownSelectBoxComponent { modifySelection(content) { const pinnedGlobally = this.get("topic.pinned_globally"); const pinned = this.value; const globally = pinnedGlobally ? "_globally" : ""; const state = pinned ? `pinned${globally}` : UNPINNED; const title = I18n.t(`topic_statuses.${state}.title`); content.label = htmlSafe(`${title}`); content.title = title; content.name = state; content.icon = `thumbtack${state === UNPINNED ? " unpinned" : ""}`; return content; } @computed get content() { const globally = this.topic.pinned_globally ? "_globally" : ""; return [ { id: PINNED, name: I18n.t(`topic_statuses.pinned${globally}.title`), description: this.site.mobileView ? null : I18n.t(`topic_statuses.pinned${globally}.help`), icon: "thumbtack", }, { id: UNPINNED, name: I18n.t("topic_statuses.unpinned.title"), icon: "thumbtack unpinned", description: this.site.mobileView ? null : I18n.t("topic_statuses.unpinned.help"), }, ]; } @action onChange(value) { const topic = this.topic; if (value === UNPINNED) { return topic.clearPin(); } else { return topic.rePin(); } } }