2019-10-24 00:55:11 +08:00
|
|
|
import EmberObject from "@ember/object";
|
2017-06-29 04:56:44 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
2023-10-18 18:07:09 +08:00
|
|
|
import I18n from "discourse-i18n";
|
2017-06-29 04:56:44 +08:00
|
|
|
|
2023-03-17 18:18:42 +08:00
|
|
|
export default class WatchedWord extends EmberObject {
|
|
|
|
static findAll() {
|
2021-04-01 14:14:17 +08:00
|
|
|
return ajax("/admin/customize/watched_words.json").then((list) => {
|
2017-06-29 04:56:44 +08:00
|
|
|
const actions = {};
|
2021-05-28 00:20:26 +08:00
|
|
|
|
|
|
|
list.actions.forEach((action) => {
|
|
|
|
actions[action] = [];
|
2017-06-29 04:56:44 +08:00
|
|
|
});
|
|
|
|
|
2021-05-28 00:20:26 +08:00
|
|
|
list.words.forEach((watchedWord) => {
|
|
|
|
actions[watchedWord.action].pushObject(WatchedWord.create(watchedWord));
|
2017-06-29 04:56:44 +08:00
|
|
|
});
|
|
|
|
|
2021-05-28 00:20:26 +08:00
|
|
|
return Object.keys(actions).map((nameKey) => {
|
2019-10-24 00:55:11 +08:00
|
|
|
return EmberObject.create({
|
2021-05-28 00:20:26 +08:00
|
|
|
nameKey,
|
|
|
|
name: I18n.t("admin.watched_words.actions." + nameKey),
|
|
|
|
words: actions[nameKey],
|
|
|
|
compiledRegularExpression: list.compiled_regular_expressions[nameKey],
|
2017-09-28 03:48:57 +08:00
|
|
|
});
|
2017-06-29 04:56:44 +08:00
|
|
|
});
|
|
|
|
});
|
2023-03-17 18:18:42 +08:00
|
|
|
}
|
2017-06-29 04:56:44 +08:00
|
|
|
|
2023-03-17 18:18:42 +08:00
|
|
|
save() {
|
|
|
|
return ajax(
|
|
|
|
"/admin/customize/watched_words" +
|
|
|
|
(this.id ? "/" + this.id : "") +
|
|
|
|
".json",
|
|
|
|
{
|
|
|
|
type: this.id ? "PUT" : "POST",
|
|
|
|
data: {
|
|
|
|
word: this.word,
|
|
|
|
replacement: this.replacement,
|
|
|
|
action_key: this.action,
|
|
|
|
case_sensitive: this.isCaseSensitive,
|
|
|
|
},
|
|
|
|
dataType: "json",
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
destroy() {
|
|
|
|
return ajax("/admin/customize/watched_words/" + this.id + ".json", {
|
|
|
|
type: "DELETE",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|