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

40 Zeilen
994 B
Text

/* eslint no-undef: 0 */
import { findCustomWizard } from "../models/custom";
import { ajax } from "wizard/lib/ajax";
2017-10-13 15:02:34 +02:00
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",
2017-10-13 15:02:34 +02:00
}).then((result) => {
$.extend(Wizard.SiteSettings, result);
2017-10-13 15:02:34 +02:00
});
},
setupController(controller, model) {
const background = model ? model.get("background") : "AliceBlue";
Ember.run.scheduleOnce("afterRender", this, function () {
$("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-12-03 08:57:40 +01:00
}
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
});
},
2017-10-13 15:02:34 +02:00
});