mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-18 22:39:29 +08:00
`discourse-common` was created in the past to share logic between the 'wizard' app and the main 'discourse' app. Since then, the wizard has been consolidated into the main app, so the separation of `discourse-common` is no longer useful. This commit moves `discourse-common/(lib|utils)/*` into `discourse/lib/*`, adds shims for the imports, and updates existing uses in core.
26 lines
947 B
JavaScript
26 lines
947 B
JavaScript
import Component from "@ember/component";
|
|
import { classNameBindings, classNames } from "@ember-decorators/component";
|
|
import discourseComputed from "discourse/lib/decorators";
|
|
import { i18n } from "discourse-i18n";
|
|
import { pluginApiIdentifiers } from "select-kit/components/select-kit";
|
|
|
|
@classNames("pinned-button")
|
|
@classNameBindings("isHidden")
|
|
@pluginApiIdentifiers("pinned-button")
|
|
export default class PinnedButton extends Component {
|
|
descriptionKey = "help";
|
|
appendReason = true;
|
|
|
|
@discourseComputed("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(key);
|
|
}
|
|
|
|
@discourseComputed("pinned", "topic.deleted", "topic.unpinned")
|
|
isHidden(pinned, deleted, unpinned) {
|
|
return deleted || (!pinned && !unpinned);
|
|
}
|
|
}
|