mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 22:33:45 +08:00
1eec8c3fa6
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
54 lines
1.4 KiB
JavaScript
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",
|
|
});
|
|
}
|
|
}
|