0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/controllers/admin-wizards-wizard.js.es6

27 Zeilen
702 B
Text

2020-04-13 14:17:22 +02:00
import Controller from "@ember/controller";
import { default as discourseComputed } from "discourse-common/utils/decorators";
import { equal } from "@ember/object/computed";
2020-04-13 14:17:22 +02:00
export default Controller.extend({
creating: equal("wizardId", "create"),
@discourseComputed("creating", "wizardId")
2020-04-13 14:17:22 +02:00
wizardListVal(creating, wizardId) {
return creating ? null : wizardId;
},
@discourseComputed("creating", "wizardId")
2020-04-20 13:40:32 +02:00
messageKey(creating, wizardId) {
let key = "select";
2020-04-13 14:17:22 +02:00
if (creating) {
key = "create";
2020-04-13 14:17:22 +02:00
} else if (wizardId) {
key = "edit";
2020-04-13 14:17:22 +02:00
}
return key;
2020-04-20 13:40:32 +02:00
},
2022-08-29 11:58:42 +02:00
messageUrl:
2022-09-20 11:16:43 +02:00
"https://discourse.pluginmanager.org/c/discourse-custom-wizard/documentation",
});