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/wizard/routes/custom.js.es6

37 Zeilen
935 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({
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) => {
$.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
});
}
});