2019-10-24 01:06:54 +08:00
|
|
|
import Controller from "@ember/controller";
|
2018-11-29 07:03:50 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
|
2019-10-24 01:06:54 +08:00
|
|
|
export default Controller.extend({
|
2018-11-29 07:03:50 +08:00
|
|
|
email: null,
|
|
|
|
text: null,
|
|
|
|
elided: null,
|
|
|
|
format: null,
|
2018-12-03 19:51:59 +08:00
|
|
|
loading: null,
|
2018-11-29 07:03:50 +08:00
|
|
|
|
|
|
|
actions: {
|
|
|
|
run() {
|
|
|
|
this.set("loading", true);
|
|
|
|
|
|
|
|
ajax("/admin/email/advanced-test", {
|
|
|
|
type: "POST",
|
2019-05-27 16:15:39 +08:00
|
|
|
data: { email: this.email },
|
2018-11-29 07:03:50 +08:00
|
|
|
})
|
|
|
|
.then((data) => {
|
|
|
|
this.setProperties({
|
|
|
|
text: data.text,
|
|
|
|
elided: data.elided,
|
|
|
|
format: data.format,
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError)
|
|
|
|
.finally(() => this.set("loading", false));
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|