discourse/app/assets/javascripts/admin/addon/models/watched-word.js
Régis Hanol 1eec8c3fa6 FEATURE: add HTML replacements
This adds support for Watched Words to allow replacement with HTML content rather than always replacing with text.

Can be useful when automatically replacing with the '<abbr>' tag for example.

Discussion - https://meta.discourse.org/t/replace-text-with-more-than-just-links/305672
2024-05-14 10:41:27 +02:00

54 lines
1.4 KiB
JavaScript

import EmberObject from "@ember/object";
import { ajax } from "discourse/lib/ajax";
import I18n from "discourse-i18n";
export default class WatchedWord extends EmberObject {
static findAll() {
return ajax("/admin/customize/watched_words.json").then((list) => {
const actions = {};
list.actions.forEach((action) => {
actions[action] = [];
});
list.words.forEach((watchedWord) => {
actions[watchedWord.action].pushObject(WatchedWord.create(watchedWord));
});
return Object.keys(actions).map((nameKey) => {
return EmberObject.create({
nameKey,
name: I18n.t("admin.watched_words.actions." + nameKey),
words: actions[nameKey],
compiledRegularExpression: list.compiled_regular_expressions[nameKey],
});
});
});
}
save() {
return ajax(
"/admin/customize/watched_words" +
(this.id ? "/" + this.id : "") +
".json",
{
type: this.id ? "PUT" : "POST",
data: {
words: this.words,
replacement: this.replacement,
action_key: this.action,
case_sensitive: this.isCaseSensitive,
html: this.isHtml,
},
dataType: "json",
}
);
}
destroy() {
return ajax("/admin/customize/watched_words/" + this.id + ".json", {
type: "DELETE",
});
}
}