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

25 Zeilen
Kein EOL
687 B
JavaScript

import Controller from "@ember/controller";
import { default as discourseComputed } from 'discourse-common/utils/decorators';
import { equal } from '@ember/object/computed';
export default Controller.extend({
creating: equal('wizardId', 'create'),
@discourseComputed('creating', 'wizardId')
wizardListVal(creating, wizardId) {
return creating ? null : wizardId;
},
@discourseComputed('creating', 'wizardId')
messageKey(creating, wizardId) {
let key = 'select';
if (creating) {
key = 'create';
} else if (wizardId) {
key = 'edit';
}
return key;
},
messageUrl: "https://thepavilion.io/c/knowledge/discourse/custom-wizard"
});