This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/components/csv-uploader.js
2020-03-12 13:29:55 -04:00

49 lines
1.2 KiB
JavaScript

import discourseComputed from "discourse-common/utils/decorators";
import Component from "@ember/component";
import UploadMixin from "discourse/mixins/upload";
import { on } from "@ember/object/evented";
export default Component.extend(UploadMixin, {
type: "csv",
tagName: "span",
uploadUrl: "/invites/upload_csv",
validateUploadedFilesOptions() {
return { csvOnly: true };
},
@discourseComputed("uploading")
uploadButtonText(uploading) {
return uploading
? I18n.t("uploading")
: I18n.t("user.invited.bulk_invite.text");
},
@discourseComputed("uploading")
uploadButtonDisabled(uploading) {
// https://github.com/emberjs/ember.js/issues/10976#issuecomment-132417731
return uploading ? true : null;
},
uploadDone() {
bootbox.alert(I18n.t("user.invited.bulk_invite.success"));
},
uploadOptions() {
return { autoUpload: false };
},
_init: on("didInsertElement", function() {
const $upload = $(this.element);
$upload.on("fileuploadadd", (e, data) => {
bootbox.confirm(
I18n.t("user.invited.bulk_invite.confirmation_message"),
I18n.t("cancel"),
I18n.t("go_ahead"),
result => (result ? data.submit() : data.abort())
);
});
})
});