2018-03-06 04:38:33 +01:00
|
|
|
/* 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({
|
|
|
|
model(params) {
|
2019-01-14 03:53:53 +01:00
|
|
|
let opts = {};
|
|
|
|
if (params.reset == 'true') opts['reset'] = true;
|
|
|
|
return findCustomWizard(params.wizard_id, opts);
|
2017-10-13 15:02:34 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
afterModel() {
|
|
|
|
return ajax({
|
|
|
|
url: `/site/settings`,
|
|
|
|
type: 'GET',
|
|
|
|
}).then((result) => {
|
2018-06-14 01:59:41 +02:00
|
|
|
$.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,
|
|
|
|
logoUrl: Wizard.SiteSettings.logo_small_url
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|