2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2020-01-13 22:20:26 +08:00
|
|
|
import Controller from "@ember/controller";
|
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
|
|
|
|
|
|
export default Controller.extend({
|
|
|
|
saving: false,
|
2020-01-24 01:14:58 +08:00
|
|
|
replaceBadgeOwners: false,
|
2020-01-13 22:20:26 +08:00
|
|
|
|
|
|
|
actions: {
|
|
|
|
massAward() {
|
|
|
|
const file = document.querySelector("#massAwardCSVUpload").files[0];
|
|
|
|
|
|
|
|
if (this.model && file) {
|
|
|
|
const options = {
|
|
|
|
type: "POST",
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
|
|
|
data: new FormData()
|
|
|
|
};
|
|
|
|
|
|
|
|
options.data.append("file", file);
|
2020-01-24 01:14:58 +08:00
|
|
|
options.data.append("replace_badge_owners", this.replaceBadgeOwners);
|
2020-01-13 22:20:26 +08:00
|
|
|
|
|
|
|
this.set("saving", true);
|
|
|
|
|
|
|
|
ajax(`/admin/badges/award/${this.model.id}`, options)
|
|
|
|
.then(() => {
|
|
|
|
bootbox.alert(I18n.t("admin.badges.mass_award.success"));
|
|
|
|
})
|
|
|
|
.catch(popupAjaxError)
|
|
|
|
.finally(() => this.set("saving", false));
|
|
|
|
} else {
|
|
|
|
bootbox.alert(I18n.t("admin.badges.mass_award.aborted"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|