2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2020-04-16 13:58:04 +08:00
|
|
|
import { schedule } from "@ember/runloop";
|
2019-10-24 00:30:52 +08:00
|
|
|
import Component from "@ember/component";
|
2016-09-23 02:39:36 +08:00
|
|
|
import getUrl from "discourse-common/lib/get-url";
|
2020-01-17 01:56:53 +08:00
|
|
|
import discourseComputed, { observes } from "discourse-common/utils/decorators";
|
2019-11-06 02:43:49 +08:00
|
|
|
import { htmlSafe } from "@ember/template";
|
2016-08-26 01:14:56 +08:00
|
|
|
|
2016-09-16 04:01:44 +08:00
|
|
|
jQuery.fn.wiggle = function(times, duration) {
|
|
|
|
if (times > 0) {
|
|
|
|
this.animate(
|
|
|
|
{
|
|
|
|
marginLeft: times-- % 2 === 0 ? -15 : 15
|
|
|
|
},
|
|
|
|
duration,
|
|
|
|
0,
|
|
|
|
() => this.wiggle(times, duration)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
this.animate({ marginLeft: 0 }, duration, 0);
|
|
|
|
}
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
|
2016-09-21 00:28:22 +08:00
|
|
|
const alreadyWarned = {};
|
|
|
|
|
2019-10-24 00:30:52 +08:00
|
|
|
export default Component.extend({
|
2016-08-26 01:14:56 +08:00
|
|
|
classNames: ["wizard-step"],
|
|
|
|
saving: null,
|
|
|
|
|
|
|
|
didInsertElement() {
|
2019-01-19 17:05:51 +08:00
|
|
|
this._super(...arguments);
|
2016-08-26 01:14:56 +08:00
|
|
|
this.autoFocus();
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("step.index")
|
2018-07-30 23:56:48 +08:00
|
|
|
showQuitButton: index => index === 0,
|
2016-09-15 04:36:08 +08:00
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("step.displayIndex", "wizard.totalSteps")
|
2016-08-26 01:14:56 +08:00
|
|
|
showNextButton: (current, total) => current < total,
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("step.displayIndex", "wizard.totalSteps")
|
2016-09-01 01:35:49 +08:00
|
|
|
showDoneButton: (current, total) => current === total,
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed(
|
2018-11-16 03:44:19 +08:00
|
|
|
"step.index",
|
|
|
|
"step.displayIndex",
|
|
|
|
"wizard.totalSteps",
|
|
|
|
"wizard.completed"
|
|
|
|
)
|
|
|
|
showFinishButton: (index, displayIndex, total, completed) => {
|
|
|
|
return index !== 0 && displayIndex !== total && completed;
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("step.index")
|
2018-07-30 23:56:48 +08:00
|
|
|
showBackButton: index => index > 0,
|
2016-08-26 01:14:56 +08:00
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("step.banner")
|
2016-09-21 01:25:56 +08:00
|
|
|
bannerImage(src) {
|
|
|
|
if (!src) {
|
|
|
|
return;
|
|
|
|
}
|
2016-09-23 02:39:36 +08:00
|
|
|
return getUrl(`/images/wizard/${src}`);
|
2016-09-21 01:25:56 +08:00
|
|
|
},
|
|
|
|
|
2020-04-01 21:36:50 +08:00
|
|
|
@discourseComputed("step.id")
|
|
|
|
bannerAndDescriptionClass(id) {
|
|
|
|
return `wizard-banner-and-description wizard-banner-and-description-${id}`;
|
|
|
|
},
|
|
|
|
|
2016-08-26 01:14:56 +08:00
|
|
|
@observes("step.id")
|
|
|
|
_stepChanged() {
|
|
|
|
this.set("saving", false);
|
|
|
|
this.autoFocus();
|
|
|
|
},
|
|
|
|
|
|
|
|
keyPress(key) {
|
|
|
|
if (key.keyCode === 13) {
|
2019-05-27 16:15:39 +08:00
|
|
|
if (this.showDoneButton) {
|
2016-09-23 01:38:40 +08:00
|
|
|
this.send("quit");
|
|
|
|
} else {
|
|
|
|
this.send("nextStep");
|
|
|
|
}
|
2016-08-26 01:14:56 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2019-11-08 05:38:28 +08:00
|
|
|
@discourseComputed("step.index", "wizard.totalSteps")
|
2016-08-26 01:14:56 +08:00
|
|
|
barStyle(displayIndex, totalSteps) {
|
2016-09-21 02:04:18 +08:00
|
|
|
let ratio = parseFloat(displayIndex) / parseFloat(totalSteps - 1);
|
|
|
|
if (ratio < 0) {
|
|
|
|
ratio = 0;
|
|
|
|
}
|
|
|
|
if (ratio > 1) {
|
|
|
|
ratio = 1;
|
|
|
|
}
|
|
|
|
|
2019-11-06 02:43:49 +08:00
|
|
|
return htmlSafe(`width: ${ratio * 200}px`);
|
2016-08-26 01:14:56 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
autoFocus() {
|
2020-04-16 13:58:04 +08:00
|
|
|
schedule("afterRender", () => {
|
2016-09-23 01:38:40 +08:00
|
|
|
const $invalid = $(".wizard-field.invalid:eq(0) .wizard-focusable");
|
2016-08-26 01:14:56 +08:00
|
|
|
|
|
|
|
if ($invalid.length) {
|
|
|
|
return $invalid.focus();
|
|
|
|
}
|
|
|
|
|
2016-09-23 01:38:40 +08:00
|
|
|
$(".wizard-focusable:eq(0)").focus();
|
2016-08-26 01:14:56 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2016-09-16 04:01:44 +08:00
|
|
|
animateInvalidFields() {
|
2020-04-16 13:58:04 +08:00
|
|
|
schedule("afterRender", () =>
|
2016-09-21 05:01:54 +08:00
|
|
|
$(".invalid input[type=text], .invalid textarea").wiggle(2, 100)
|
|
|
|
);
|
2016-09-16 04:01:44 +08:00
|
|
|
},
|
|
|
|
|
2016-09-21 00:28:22 +08:00
|
|
|
advance() {
|
|
|
|
this.set("saving", true);
|
2019-05-27 16:15:39 +08:00
|
|
|
this.step
|
2016-09-21 00:28:22 +08:00
|
|
|
.save()
|
2019-01-10 18:06:01 +08:00
|
|
|
.then(response => this.goNext(response))
|
2016-09-21 00:28:22 +08:00
|
|
|
.catch(() => this.animateInvalidFields())
|
|
|
|
.finally(() => this.set("saving", false));
|
|
|
|
},
|
|
|
|
|
2016-08-26 01:14:56 +08:00
|
|
|
actions: {
|
2016-09-15 04:36:08 +08:00
|
|
|
quit() {
|
2016-09-23 02:39:36 +08:00
|
|
|
document.location = getUrl("/");
|
2016-09-15 04:36:08 +08:00
|
|
|
},
|
|
|
|
|
2018-11-16 03:44:19 +08:00
|
|
|
exitEarly() {
|
2019-05-27 16:15:39 +08:00
|
|
|
const step = this.step;
|
2018-11-16 03:44:19 +08:00
|
|
|
step.validate();
|
|
|
|
|
|
|
|
if (step.get("valid")) {
|
|
|
|
this.set("saving", true);
|
|
|
|
|
|
|
|
step
|
|
|
|
.save()
|
|
|
|
.then(() => this.send("quit"))
|
|
|
|
.catch(() => this.animateInvalidFields())
|
|
|
|
.finally(() => this.set("saving", false));
|
|
|
|
} else {
|
|
|
|
this.animateInvalidFields();
|
|
|
|
this.autoFocus();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-08-26 01:14:56 +08:00
|
|
|
backStep() {
|
2019-05-27 16:15:39 +08:00
|
|
|
if (this.saving) {
|
2016-08-26 01:14:56 +08:00
|
|
|
return;
|
|
|
|
}
|
2019-01-10 18:06:01 +08:00
|
|
|
|
|
|
|
this.goBack();
|
2016-08-26 01:14:56 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
nextStep() {
|
2019-05-27 16:15:39 +08:00
|
|
|
if (this.saving) {
|
2016-08-26 01:14:56 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-05-27 16:15:39 +08:00
|
|
|
const step = this.step;
|
2016-09-21 00:28:22 +08:00
|
|
|
const result = step.validate();
|
|
|
|
|
|
|
|
if (result.warnings.length) {
|
|
|
|
const unwarned = result.warnings.filter(w => !alreadyWarned[w]);
|
|
|
|
if (unwarned.length) {
|
|
|
|
unwarned.forEach(w => (alreadyWarned[w] = true));
|
|
|
|
return window.swal(
|
|
|
|
{
|
|
|
|
customClass: "wizard-warning",
|
|
|
|
title: "",
|
|
|
|
text: unwarned.map(w => I18n.t(`wizard.${w}`)).join("\n"),
|
|
|
|
type: "warning",
|
|
|
|
showCancelButton: true,
|
|
|
|
confirmButtonColor: "#6699ff"
|
|
|
|
},
|
|
|
|
confirmed => {
|
|
|
|
if (confirmed) {
|
|
|
|
this.advance();
|
2018-06-15 23:03:24 +08:00
|
|
|
}
|
2016-09-21 00:28:22 +08:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2016-08-26 01:14:56 +08:00
|
|
|
|
|
|
|
if (step.get("valid")) {
|
2016-09-21 00:28:22 +08:00
|
|
|
this.advance();
|
2016-08-26 01:14:56 +08:00
|
|
|
} else {
|
2016-09-16 04:01:44 +08:00
|
|
|
this.animateInvalidFields();
|
2016-08-26 01:14:56 +08:00
|
|
|
this.autoFocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|