mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:15:46 +08:00
d9a02d1336
This reverts commit20780a1eee
. * SECURITY: re-adds accidentally reverted commit: 03d26cd6: ensure embed_url contains valid http(s) uri * when the merge commite62a85cf
was reverted, git chose the2660c2e2
parent to land on instead of the03d26cd6
parent (which contains security fixes)
25 lines
826 B
JavaScript
25 lines
826 B
JavaScript
import I18n from "I18n";
|
|
import Component from "@ember/component";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
pluginApiIdentifiers: ["pinned-button"],
|
|
descriptionKey: "help",
|
|
classNames: "pinned-button",
|
|
classNameBindings: ["isHidden"],
|
|
layoutName: "select-kit/templates/components/pinned-button",
|
|
|
|
@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.t(key);
|
|
},
|
|
|
|
@discourseComputed("pinned", "topic.deleted", "topic.unpinned")
|
|
isHidden(pinned, deleted, unpinned) {
|
|
return deleted || (!pinned && !unpinned);
|
|
}
|
|
});
|