mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:24:03 +08:00
f9648de897
Co-Authored-By: Bianca Nenciu <nbianca@users.noreply.github.com> Co-Authored-By: David Taylor <david@taylorhq.com>
29 lines
681 B
JavaScript
29 lines
681 B
JavaScript
import { iconHTML } from "discourse-common/lib/icon-library";
|
|
import { bufferedRender } from "discourse-common/lib/buffered-render";
|
|
|
|
export default Ember.Component.extend(
|
|
bufferedRender({
|
|
classNames: ["watched-word"],
|
|
|
|
buildBuffer(buffer) {
|
|
buffer.push(iconHTML("times"));
|
|
buffer.push(" " + this.get("word.word"));
|
|
},
|
|
|
|
click() {
|
|
this.get("word")
|
|
.destroy()
|
|
.then(() => {
|
|
this.action(this.get("word"));
|
|
})
|
|
.catch(e => {
|
|
bootbox.alert(
|
|
I18n.t("generic_error_with_reason", {
|
|
error: `http: ${e.status} - ${e.body}`
|
|
})
|
|
);
|
|
});
|
|
}
|
|
})
|
|
);
|