2020-04-13 14:17:22 +02:00
|
|
|
import Controller from "@ember/controller";
|
2021-03-28 11:06:49 +02:00
|
|
|
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({
|
2021-03-28 11:06:49 +02:00
|
|
|
creating: equal("wizardId", "create"),
|
|
|
|
|
|
|
|
@discourseComputed("creating", "wizardId")
|
2020-04-13 14:17:22 +02:00
|
|
|
wizardListVal(creating, wizardId) {
|
|
|
|
return creating ? null : wizardId;
|
|
|
|
},
|
2021-03-28 11:06:49 +02:00
|
|
|
|
|
|
|
@discourseComputed("creating", "wizardId")
|
2020-04-20 13:40:32 +02:00
|
|
|
messageKey(creating, wizardId) {
|
2021-03-28 11:06:49 +02:00
|
|
|
let key = "select";
|
2020-04-13 14:17:22 +02:00
|
|
|
if (creating) {
|
2021-03-28 11:06:49 +02:00
|
|
|
key = "create";
|
2020-04-13 14:17:22 +02:00
|
|
|
} else if (wizardId) {
|
2021-03-28 11:06:49 +02:00
|
|
|
key = "edit";
|
2020-04-13 14:17:22 +02:00
|
|
|
}
|
2021-03-28 11:06:49 +02:00
|
|
|
return key;
|
2020-04-20 13:40:32 +02:00
|
|
|
},
|
2021-03-28 11:06:49 +02:00
|
|
|
|
2022-08-29 11:58:42 +02:00
|
|
|
messageUrl:
|
2023-10-10 09:29:05 +02:00
|
|
|
"https://pavilion.tech/products/discourse-custom-wizard-plugin/documentation/",
|
2021-03-28 11:06:49 +02:00
|
|
|
});
|