Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
25 Zeilen
655 B
Text
25 Zeilen
655 B
Text
|
import Controller from "@ember/controller";
|
||
|
import { or } from "@ember/object/computed";
|
||
|
import discourseComputed from "discourse-common/utils/decorators";
|
||
|
|
||
|
const reasons = {
|
||
|
noWizard: "none",
|
||
|
requiresLogin: "requires_login",
|
||
|
notPermitted: "not_permitted",
|
||
|
completed: "completed"
|
||
|
}
|
||
|
|
||
|
export default Controller.extend({
|
||
|
noAccess: or('noWizard', 'requiresLogin', 'notPermitted', 'completed'),
|
||
|
|
||
|
@discourseComputed('noAccessReason')
|
||
|
noAccessI18nKey(reason) {
|
||
|
return reason ? `wizard.${reasons[reason]}` : 'wizard.none';
|
||
|
},
|
||
|
|
||
|
@discourseComputed
|
||
|
noAccessReason() {
|
||
|
return Object.keys(reasons).find(reason => this.get(reason));
|
||
|
}
|
||
|
});
|