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

22 lines
716 B
Plaintext
Raw Normal View History

import computed from "ember-addons/ember-computed-decorators";
export default Ember.Component.extend({
descriptionKey: "help",
2017-10-19 15:51:08 -04:00
classNames: "pinned-button",
classNameBindings: ["isHidden"],
layoutName: "select-box-kit/templates/components/pinned-button",
@computed("topic.pinned_globally", "topic.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("topic.pinned", "topic.deleted", "topic.unpinned")
2017-10-19 15:51:08 -04:00
isHidden(pinned, deleted, unpinned) {
return deleted || (!pinned && !unpinned);
}
});