1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/controllers/admin-wizard.js.es6

71 Zeilen
1,8 KiB
Text

2020-03-30 01:53:28 +02:00
import { default as computed, observes } from 'discourse-common/utils/decorators';
import { notEmpty } from "@ember/object/computed";
2017-11-01 05:21:14 +01:00
import showModal from 'discourse/lib/show-modal';
2020-03-30 01:53:28 +02:00
import { generateId } from '../lib/custom-wizard';
import { dasherize } from "@ember/string";
2017-10-06 04:59:02 +02:00
2017-09-23 04:34:07 +02:00
export default Ember.Controller.extend({
2020-03-30 01:53:28 +02:00
hasName: notEmpty('model.name'),
@computed('model.id')
2017-10-06 04:59:02 +02:00
wizardUrl(wizardId) {
2020-03-30 01:53:28 +02:00
return window.location.origin + '/w/' + dasherize(wizardId);
},
@observes('model.name')
setId() {
if (!this.model.existingId) {
this.set('model.id', generateId(this.model.name));
}
2017-10-06 04:59:02 +02:00
},
2017-11-01 05:21:14 +01:00
@computed('model.after_time_scheduled')
nextSessionScheduledLabel(scheduled) {
2020-03-29 09:49:33 +02:00
return scheduled ?
moment(scheduled).format('MMMM Do, HH:mm') :
I18n.t('admin.wizard.after_time_time_label');
2017-11-01 05:21:14 +01:00
},
2017-09-23 04:34:07 +02:00
actions: {
save() {
2017-10-13 15:02:34 +02:00
this.setProperties({
saving: true,
error: null
});
2020-03-29 09:49:33 +02:00
2017-10-13 15:02:34 +02:00
const wizard = this.get('model');
2020-03-29 09:49:33 +02:00
2017-10-13 15:02:34 +02:00
wizard.save().then(() => {
this.set('saving', false);
2017-10-07 04:27:38 +02:00
if (this.get('newWizard')) {
this.send("refreshAllWizards");
} else {
this.send("refreshWizard");
}
2017-10-30 07:24:51 +01:00
}).catch((result) => {
2017-10-13 15:02:34 +02:00
this.set('saving', false);
2017-10-30 07:24:51 +01:00
this.set('error', I18n.t(`admin.wizard.error.${result.error}`));
2017-10-13 15:02:34 +02:00
Ember.run.later(() => this.set('error', null), 10000);
2017-09-23 04:34:07 +02:00
});
},
remove() {
2017-11-01 05:21:14 +01:00
const wizard = this.get('model');
wizard.remove().then(() => {
2017-10-07 04:27:38 +02:00
this.send("refreshAllWizards");
2017-09-23 04:34:07 +02:00
});
2017-11-01 05:21:14 +01:00
},
setNextSessionScheduled() {
let controller = showModal('next-session-scheduled', {
model: {
dateTime: this.get('model.after_time_scheduled'),
update: (dateTime) => this.set('model.after_time_scheduled', dateTime)
}
});
controller.setup();
},
2017-09-23 04:34:07 +02:00
}
});