Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-12 21:22:54 +01:00
27 Zeilen
775 B
Text
27 Zeilen
775 B
Text
|
import Component from "@ember/component";
|
||
|
import discourseComputed from "discourse-common/utils/decorators";
|
||
|
import Subscription from "../mixins/subscription";
|
||
|
|
||
|
export default Component.extend(Subscription, {
|
||
|
classNameBindings: [":wizard-subscription-container", "subscribed"],
|
||
|
|
||
|
@discourseComputed("subscribed")
|
||
|
subscribedIcon(subscribed) {
|
||
|
return subscribed ? "check" : "dash";
|
||
|
},
|
||
|
|
||
|
@discourseComputed("subscribed")
|
||
|
subscribedLabel(subscribed) {
|
||
|
return `admin.wizard.subscription_container.${
|
||
|
subscribed ? "subscribed" : "not_subscribed"
|
||
|
}.label`;
|
||
|
},
|
||
|
|
||
|
@discourseComputed("subscribed")
|
||
|
subscribedTitle(subscribed) {
|
||
|
return `admin.wizard.subscription_container.${
|
||
|
subscribed ? "subscribed" : "not_subscribed"
|
||
|
}.title`;
|
||
|
}
|
||
|
});
|