mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
31 lines
680 B
JavaScript
31 lines
680 B
JavaScript
import I18n from "I18n";
|
|
import Component from "@ember/component";
|
|
import { iconHTML } from "discourse-common/lib/icon-library";
|
|
import bootbox from "bootbox";
|
|
|
|
export default Component.extend({
|
|
classNames: ["watched-word"],
|
|
watchedWord: null,
|
|
xIcon: iconHTML("times").htmlSafe(),
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this.set("watchedWord", this.get("word.word"));
|
|
},
|
|
|
|
click() {
|
|
this.word
|
|
.destroy()
|
|
.then(() => {
|
|
this.action(this.word);
|
|
})
|
|
.catch((e) => {
|
|
bootbox.alert(
|
|
I18n.t("generic_error_with_reason", {
|
|
error: `http: ${e.status} - ${e.body}`,
|
|
})
|
|
);
|
|
});
|
|
},
|
|
});
|