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

85 Zeilen
2 KiB
Text

/* eslint no-undef: 0*/
import { findCustomWizard, updateCachedWizard } from "../models/custom";
import { ajax } from "wizard/lib/ajax";
import WizardI18n from "../lib/wizard-i18n";
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
},
renderTemplate() {
this.render("custom");
const wizardModel = this.modelFor("custom");
const stepModel = this.modelFor("custom.step");
if (
wizardModel.resume_on_revisit &&
wizardModel.submission_last_updated_at &&
stepModel.index > 0
) {
this.showDialog(wizardModel);
}
},
showDialog(wizardModel) {
const title = WizardI18n("wizard.incomplete_submission.title", {
date: moment(wizardModel.submission_last_updated_at).format(
"MMMM Do YYYY"
),
});
const buttons = [
{
label: WizardI18n("wizard.incomplete_submission.restart"),
class: "btn btn-default",
callback: () => {
wizardModel.restart();
},
},
{
label: WizardI18n("wizard.incomplete_submission.resume"),
class: "btn btn-primary",
},
];
const options = {
onEscape: false,
};
bootbox.dialog(title, buttons, options);
},
afterModel(model) {
updateCachedWizard(model);
2017-10-13 15:02:34 +02:00
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);
if (model && model.id) {
$("#custom-wizard-main").addClass(model.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
});