discourse/app/assets/javascripts/admin/addon/components/watched-word-uploader.js
David Taylor 48193767bf DEV: Sort imports
Automatically generated by `eslint --fix` to satisfy the updated configuration
2023-10-10 21:46:54 +01:00

34 lines
833 B
JavaScript

import Component from "@ember/component";
import { alias } from "@ember/object/computed";
import { classNames } from "@ember-decorators/component";
import { dialog } from "discourse/lib/uploads";
import UppyUploadMixin from "discourse/mixins/uppy-upload";
import I18n from "I18n";
@classNames("watched-words-uploader")
export default class WatchedWordUploader extends Component.extend(
UppyUploadMixin
) {
type = "txt";
uploadUrl = "/admin/customize/watched_words/upload";
@alias("uploading") addDisabled;
preventDirectS3Uploads = true;
validateUploadedFilesOptions() {
return { skipValidation: true };
}
_perFileData() {
return { action_key: this.actionKey };
}
uploadDone() {
if (this) {
dialog.alert(I18n.t("admin.watched_words.form.upload_successful"));
this.done();
}
}
}