2019-10-24 00:55:11 +08:00
|
|
|
import EmberObject from "@ember/object";
|
2020-05-14 04:23:41 +08:00
|
|
|
import I18n from "I18n";
|
2017-06-29 04:56:44 +08:00
|
|
|
import { ajax } from "discourse/lib/ajax";
|
|
|
|
|
2019-11-09 03:13:35 +08:00
|
|
|
const WatchedWord = EmberObject.extend({
|
2017-06-29 04:56:44 +08:00
|
|
|
save() {
|
2017-08-01 05:06:26 +08:00
|
|
|
return ajax(
|
2021-04-01 14:14:17 +08:00
|
|
|
"/admin/customize/watched_words" +
|
|
|
|
(this.id ? "/" + this.id : "") +
|
|
|
|
".json",
|
2017-08-01 05:06:26 +08:00
|
|
|
{
|
2017-06-29 04:56:44 +08:00
|
|
|
type: this.id ? "PUT" : "POST",
|
2021-02-25 20:00:58 +08:00
|
|
|
data: {
|
|
|
|
word: this.word,
|
|
|
|
replacement: this.replacement,
|
|
|
|
action_key: this.action,
|
|
|
|
},
|
2017-06-29 04:56:44 +08:00
|
|
|
dataType: "json",
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy() {
|
2021-04-01 14:14:17 +08:00
|
|
|
return ajax("/admin/customize/watched_words/" + this.id + ".json", {
|
2017-08-01 05:06:26 +08:00
|
|
|
type: "DELETE",
|
|
|
|
});
|
2017-06-29 04:56:44 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
WatchedWord.reopenClass({
|
|
|
|
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
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
export default WatchedWord;
|