discourse/app/assets/javascripts/admin/components/resumable-upload.js

Failed to ignore revisions in .git-blame-ignore-revs.

139 lines
3.2 KiB
JavaScript
Raw Normal View History

import { later, schedule } from "@ember/runloop";
import Component from "@ember/component";
2018-06-15 11:03:24 -04:00
import { iconHTML } from "discourse-common/lib/icon-library";
import discourseComputed, { on } from "discourse-common/utils/decorators";
2014-02-21 19:41:01 -05:00
/*global Resumable:true */
/**
Example usage:
{{resumable-upload
target="/admin/backups/upload"
success=(action "successAction")
error=(action "errorAction")
2014-02-21 19:41:01 -05:00
uploadText="UPLOAD"
}}
**/
export default Component.extend({
tagName: "button",
classNames: ["btn", "ru"],
classNameBindings: ["isUploading"],
attributeBindings: ["translatedTitle:title"],
resumable: null,
isUploading: false,
progress: 0,
rerenderTriggers: ["isUploading", "progress"],
uploadingIcon: null,
progressBar: null,
@on("init")
_initialize() {
this.resumable = new Resumable({
target: Discourse.getURL(this.target),
maxFiles: 1, // only 1 file at a time
headers: {
"X-CSRF-Token": document.querySelector("meta[name='csrf-token']")
.content
}
});
2019-05-07 04:51:11 -04:00
this.resumable.on("fileAdded", () => {
// automatically upload the selected file
this.resumable.upload();
2019-05-07 04:51:11 -04:00
// mark as uploading
later(() => {
this.set("isUploading", true);
this._updateIcon();
2019-05-07 04:51:11 -04:00
});
});
2019-05-07 04:51:11 -04:00
this.resumable.on("fileProgress", file => {
// update progress
later(() => {
this.set("progress", parseInt(file.progress() * 100, 10));
this._updateProgressBar();
2019-05-07 04:51:11 -04:00
});
});
2019-05-07 04:51:11 -04:00
this.resumable.on("fileSuccess", file => {
later(() => {
// mark as not uploading anymore
this._reset();
2019-05-07 04:51:11 -04:00
// fire an event to allow the parent route to reload its model
this.success(file.fileName);
2019-05-07 04:51:11 -04:00
});
});
2019-05-07 04:51:11 -04:00
this.resumable.on("fileError", (file, message) => {
later(() => {
// mark as not uploading anymore
this._reset();
2019-05-07 04:51:11 -04:00
// fire an event to allow the parent route to display the error message
this.error(file.fileName, message);
2019-05-07 04:51:11 -04:00
});
});
},
@on("didInsertElement")
_assignBrowse() {
schedule("afterRender", () => this.resumable.assignBrowse($(this.element)));
},
@on("willDestroyElement")
_teardown() {
if (this.resumable) {
this.resumable.cancel();
this.resumable = null;
}
},
@discourseComputed("title", "text")
translatedTitle(title, text) {
return title ? I18n.t(title) : text;
},
@discourseComputed("isUploading", "progress")
text(isUploading, progress) {
if (isUploading) {
return progress + " %";
} else {
return this.uploadText;
}
},
didReceiveAttrs() {
this._super(...arguments);
this._updateIcon();
},
click() {
if (this.isUploading) {
this.resumable.cancel();
later(() => this._reset());
return false;
} else {
return true;
2019-05-07 04:51:11 -04:00
}
},
_updateIcon() {
const icon = this.isUploading ? "times" : "upload";
this.set("uploadingIcon", `${iconHTML(icon)}`.htmlSafe());
},
_updateProgressBar() {
const pb = `${"width:" + this.progress + "%"}`.htmlSafe();
this.set("progressBar", pb);
},
_reset() {
this.setProperties({ isUploading: false, progress: 0 });
this._updateIcon();
this._updateProgressBar();
}
});