Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
34 Zeilen
812 B
JavaScript
34 Zeilen
812 B
JavaScript
import { inject as service } from "@ember/service";
|
|
import { action, computed } from "@ember/object";
|
|
import Component from "@glimmer/component";
|
|
|
|
export default class WizardSubscriptionCta extends Component {
|
|
@service subscription;
|
|
|
|
@computed("subscription.subscribed")
|
|
get i18nKey() {
|
|
return `admin.wizard.subscription.cta.${
|
|
this.subscription.subscribed ? "subscribed" : "none"
|
|
}`;
|
|
}
|
|
|
|
@computed("subscription.subscribed")
|
|
get icon() {
|
|
return this.subscription.subscribed ? "far-life-ring" : "external-link-alt";
|
|
}
|
|
|
|
@computed("i18nKey")
|
|
get title() {
|
|
return `${this.i18nKey}.title`;
|
|
}
|
|
|
|
@computed("i18nKey")
|
|
get label() {
|
|
return `${this.i18nKey}.label`;
|
|
}
|
|
|
|
@action
|
|
click() {
|
|
window.open(this.subscription.subscriptionCtaLink, "_blank").focus();
|
|
}
|
|
}
|