mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
a433b30650
This conversion was achieved using the ember-native-class-codemod, plus a handful of manual fixes/tweaks
34 lines
833 B
JavaScript
34 lines
833 B
JavaScript
import { classNames } from "@ember-decorators/component";
|
|
import { alias } from "@ember/object/computed";
|
|
import Component from "@ember/component";
|
|
import I18n from "I18n";
|
|
import UppyUploadMixin from "discourse/mixins/uppy-upload";
|
|
import { dialog } from "discourse/lib/uploads";
|
|
|
|
@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();
|
|
}
|
|
}
|
|
}
|