mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:24:03 +08:00
be354e7950
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
87 lines
2.0 KiB
JavaScript
87 lines
2.0 KiB
JavaScript
import { inject as service } from "@ember/service";
|
|
import { sort } from "@ember/object/computed";
|
|
import EmberObject, { action, computed } from "@ember/object";
|
|
import Controller from "@ember/controller";
|
|
import I18n from "I18n";
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
const ALL_FILTER = "all";
|
|
|
|
export default class AdminEmojisController extends Controller {
|
|
@service dialog;
|
|
|
|
filter = null;
|
|
sorting = null;
|
|
|
|
@sort("filteredEmojis.[]", "sorting") sortedEmojis;
|
|
init() {
|
|
super.init(...arguments);
|
|
|
|
this.setProperties({
|
|
filter: ALL_FILTER,
|
|
sorting: ["group", "name"],
|
|
});
|
|
}
|
|
|
|
@computed("model")
|
|
get emojiGroups() {
|
|
return this.model.mapBy("group").uniq();
|
|
}
|
|
|
|
@computed("emojiGroups.[]")
|
|
get sortingGroups() {
|
|
return [ALL_FILTER].concat(this.emojiGroups);
|
|
}
|
|
|
|
@computed("model.[]", "filter")
|
|
get filteredEmojis() {
|
|
if (!this.filter || this.filter === ALL_FILTER) {
|
|
return this.model;
|
|
} else {
|
|
return this.model.filterBy("group", this.filter);
|
|
}
|
|
}
|
|
|
|
_highlightEmojiList() {
|
|
const customEmojiListEl = document.querySelector("#custom_emoji");
|
|
if (
|
|
customEmojiListEl &&
|
|
!customEmojiListEl.classList.contains("highlighted")
|
|
) {
|
|
customEmojiListEl.classList.add("highlighted");
|
|
customEmojiListEl.addEventListener("animationend", () => {
|
|
customEmojiListEl.classList.remove("highlighted");
|
|
});
|
|
}
|
|
}
|
|
|
|
@action
|
|
filterGroups(value) {
|
|
this.set("filter", value);
|
|
}
|
|
|
|
@action
|
|
emojiUploaded(emoji, group) {
|
|
emoji.url += "?t=" + new Date().getTime();
|
|
emoji.group = group;
|
|
this.model.pushObject(EmberObject.create(emoji));
|
|
this._highlightEmojiList();
|
|
}
|
|
|
|
@action
|
|
destroyEmoji(emoji) {
|
|
this.dialog.yesNoConfirm({
|
|
message: I18n.t("admin.emoji.delete_confirm", {
|
|
name: emoji.get("name"),
|
|
}),
|
|
didConfirm: () => {
|
|
return ajax("/admin/customize/emojis/" + emoji.get("name"), {
|
|
type: "DELETE",
|
|
}).then(() => {
|
|
this.model.removeObject(emoji);
|
|
});
|
|
},
|
|
});
|
|
}
|
|
}
|