2019-10-24 00:30:52 +08:00
|
|
|
import Component from "@ember/component";
|
2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2021-11-05 07:23:28 +08:00
|
|
|
import UppyUploadMixin from "discourse/mixins/uppy-upload";
|
2019-10-31 04:28:29 +08:00
|
|
|
import { alias } from "@ember/object/computed";
|
2020-08-27 00:57:13 +08:00
|
|
|
import bootbox from "bootbox";
|
2017-06-29 04:56:44 +08:00
|
|
|
|
2021-11-05 07:23:28 +08:00
|
|
|
export default Component.extend(UppyUploadMixin, {
|
2019-07-22 19:59:56 +08:00
|
|
|
type: "txt",
|
2017-06-29 04:56:44 +08:00
|
|
|
classNames: "watched-words-uploader",
|
2021-04-01 14:14:17 +08:00
|
|
|
uploadUrl: "/admin/customize/watched_words/upload",
|
2019-10-31 04:28:29 +08:00
|
|
|
addDisabled: alias("uploading"),
|
2021-11-05 07:23:28 +08:00
|
|
|
preventDirectS3Uploads: true,
|
2017-06-29 04:56:44 +08:00
|
|
|
|
|
|
|
validateUploadedFilesOptions() {
|
2019-07-22 19:59:56 +08:00
|
|
|
return { skipValidation: true };
|
2017-06-29 04:56:44 +08:00
|
|
|
},
|
|
|
|
|
2022-06-17 17:07:58 +08:00
|
|
|
_perFileData() {
|
|
|
|
return { action_key: this.actionKey };
|
2017-06-29 04:56:44 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
uploadDone() {
|
|
|
|
if (this) {
|
|
|
|
bootbox.alert(I18n.t("admin.watched_words.form.upload_successful"));
|
2019-01-10 18:06:01 +08:00
|
|
|
this.done();
|
2017-06-29 04:56:44 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|