0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/controllers/admin-wizards-submissions-show.js.es6

64 Zeilen
1,8 KiB
Text

2020-04-12 01:27:16 +02:00
import Controller from "@ember/controller";
import { fmt } from "discourse/lib/computed";
2021-07-14 08:05:13 +02:00
import { empty } from "@ember/object/computed";
2021-07-14 08:04:19 +02:00
import CustomWizard from "../models/custom-wizard";
import showModal from "discourse/lib/show-modal";
import discourseComputed from "discourse-common/utils/decorators";
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
},
@discourseComputed('submissions', 'fields.@each.enabled')
displaySubmissions(submissions, fields) {
return submissions.map(submission => {
let field = fields.find(f => Object.keys(submission).includes(f.id));
if (!field.enabled) {
// insert field / submission deletion code here:
console.log(field, "is not enabled for ", submission);
} else if (field.enabled) {
console.log(field, "is enabled for ", submission);
}
return submission;
});
},
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() {
const controller = showModal("admin-wizards-submissions-columns", {
model: {
fields: this.get('fields'),
submissions: this.get('submissions')
}
});
},
2021-07-14 08:05:13 +02:00
},
});