1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/discourse/controllers/admin-wizards-submissions-show.js.es6

70 Zeilen
1,8 KiB
Text

2020-04-12 01:27:16 +02:00
import Controller from "@ember/controller";
2021-07-14 08:05:13 +02:00
import { empty } from "@ember/object/computed";
import discourseComputed from "discourse-common/utils/decorators";
2021-09-03 00:38:30 +02:00
import { fmt } from "discourse/lib/computed";
import showModal from "discourse/lib/show-modal";
import CustomWizard from "../models/custom-wizard";
2020-04-12 01:27:16 +02:00
export default Controller.extend({
downloadUrl: fmt("wizard.id", "/admin/wizards/submissions/%@/download"),
2021-07-14 08:05:13 +02:00
noResults: empty("submissions"),
2021-07-14 08:04:19 +02:00
page: 0,
total: 0,
loadMoreSubmissions() {
2021-07-14 08:05:13 +02:00
const page = this.get("page");
const wizardId = this.get("wizard.id");
2021-07-14 08:04:19 +02:00
2021-07-14 08:05:13 +02:00
this.set("loadingMore", true);
CustomWizard.submissions(wizardId, page)
.then((result) => {
if (result.submissions) {
this.get("submissions").pushObjects(result.submissions);
}
})
.finally(() => {
this.set("loadingMore", false);
});
2021-07-14 08:04:19 +02:00
},
2021-09-01 21:46:39 +02:00
2021-09-03 00:38:30 +02:00
@discourseComputed("submissions", "fields.@each.enabled")
displaySubmissions(submissions, fields) {
let result = [];
2021-09-03 00:38:30 +02:00
submissions.forEach((submission) => {
let sub = {};
2021-09-03 00:38:30 +02:00
Object.keys(submission).forEach((fieldId) => {
if (fields.some((f) => f.id === fieldId && f.enabled)) {
sub[fieldId] = submission[fieldId];
}
});
result.push(sub);
});
return result;
},
2021-07-14 08:04:19 +02:00
actions: {
loadMore() {
2021-07-14 08:05:13 +02:00
if (!this.loadingMore && this.submissions.length < this.total) {
this.set("page", this.get("page") + 1);
2021-07-14 08:04:19 +02:00
this.loadMoreSubmissions();
}
2021-07-14 08:05:13 +02:00
},
showEditColumnsModal() {
return showModal("admin-wizards-columns", {
model: {
columns: this.get("fields"),
reset: () => {
this.get("fields").forEach((field) => {
field.set("enabled", true);
});
},
2021-09-03 00:38:30 +02:00
},
});
},
2021-07-14 08:05:13 +02:00
},
});