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-custom-fields.js.es6

37 Zeilen
1 KiB
Text

2020-10-17 03:31:07 +02:00
import Controller from "@ember/controller";
import EmberObject from '@ember/object';
import { ajax } from 'discourse/lib/ajax';
import { popupAjaxError } from 'discourse/lib/ajax-error';
import CustomWizardCustomField from "../models/custom-wizard-custom-field";
2020-10-17 03:31:07 +02:00
export default Controller.extend({
2020-10-20 07:40:23 +02:00
fieldKeys: ['klass', 'type', 'serializers', 'name'],
documentationUrl: "https://thepavilion.io/t/3572",
2020-10-17 03:31:07 +02:00
actions: {
addField() {
this.get('customFields').pushObject(
CustomWizardCustomField.create()
2020-10-17 03:31:07 +02:00
);
},
2020-10-20 07:40:23 +02:00
removeField(field) {
this.get('customFields').removeObject(field);
},
saveFields() {
this.set('saving', true);
CustomWizardCustomField.saveFields(this.customFields)
.then(result => {
if (result.success) {
this.set('saveIcon', 'check');
} else {
this.set('saveIcon', 'times');
}
setTimeout(() => this.set('saveIcon', ''), 5000);
}).finally(() => {
this.set('saving', false);
});
2020-10-17 03:31:07 +02:00
}
}
});