discourse/app/assets/javascripts/select-kit/components/pinned-button.js.es6

23 lines
743 B
Plaintext
Raw Normal View History

import computed from "ember-addons/ember-computed-decorators";
export default Ember.Component.extend({
pluginApiIdentifiers: ["pinned-button"],
descriptionKey: "help",
2017-10-19 15:51:08 -04:00
classNames: "pinned-button",
classNameBindings: ["isHidden"],
layoutName: "select-kit/templates/components/pinned-button",
@computed("topic.pinned_globally", "pinned")
reasonText(pinnedGlobally, pinned) {
const globally = pinnedGlobally ? "_globally" : "";
const pinnedKey = pinned ? `pinned${globally}` : "unpinned";
const key = `topic_statuses.${pinnedKey}.help`;
return I18n.t(key);
},
@computed("pinned", "topic.deleted", "topic.unpinned")
2017-10-19 15:51:08 -04:00
isHidden(pinned, deleted, unpinned) {
return deleted || (!pinned && !unpinned);
}
});