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

40 Zeilen
990 B
Text

/* eslint no-undef: 0 */
2017-10-13 15:02:34 +02:00
import { findCustomWizard } from '../models/custom';
import { ajax } from 'wizard/lib/ajax';
export default Ember.Route.extend({
beforeModel(transition) {
this.set('queryParams', transition.intent.queryParams);
},
2017-10-13 15:02:34 +02:00
model(params) {
return findCustomWizard(params.wizard_id, this.get('queryParams'));
2017-10-13 15:02:34 +02:00
},
afterModel() {
return ajax({
url: `/site/settings`,
type: 'GET',
}).then((result) => {
$.extend(Wizard.SiteSettings, result);
2017-10-13 15:02:34 +02:00
});
},
setupController(controller, model) {
2017-10-22 05:37:58 +02:00
const background = model ? model.get('background') : 'AliceBlue';
2017-10-13 15:02:34 +02:00
Ember.run.scheduleOnce('afterRender', this, function(){
2017-10-22 05:37:58 +02:00
$('body.custom-wizard').css('background', background);
2017-12-03 08:57:40 +01:00
if (model) {
$('#custom-wizard-main').addClass(model.get('id').dasherize());
}
2017-10-13 15:02:34 +02:00
});
controller.setProperties({
customWizard: true,
2019-07-27 09:07:22 +02:00
logoUrl: Wizard.SiteSettings.logo_small,
reset: null
2017-10-13 15:02:34 +02:00
});
}
});