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

45 Zeilen
1,1 KiB
Text

2021-01-26 09:05:10 +01:00
import Component from "@ember/component";
import { equal } from "@ember/object/computed";
import { ajax } from "discourse/lib/ajax";
import { getToken } from "wizard/lib/ajax";
2021-01-26 09:05:10 +01:00
export default Component.extend({
classNames: ["validator"],
classNameBindings: ["isValid", "isInvalid"],
2022-03-16 12:46:16 +01:00
layoutName: "wizard/templates/components/validator",
validMessageKey: null,
invalidMessageKey: null,
isValid: null,
isInvalid: equal("isValid", false),
init() {
this._super(...arguments);
if (this.get("validation.backend")) {
// set a function that can be called as often as it need to
// from the derived component
this.backendValidate = (params) => {
return ajax("/realtime-validations", {
data: {
type: this.get("type"),
authenticity_token: getToken(),
...params,
},
});
};
}
},
didInsertElement() {
this.appEvents.on("custom-wizard:validate", this, this.checkIsValid);
},
2021-01-30 18:46:04 +01:00
willDestroyElement() {
this.appEvents.off("custom-wizard:validate", this, this.checkIsValid);
},
checkIsValid() {
this.set("isValid", this.validate());
},
});