mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-10-04 18:43:39 -04:00
55 lines
1.4 KiB
Vue
55 lines
1.4 KiB
Vue
<template>
|
|
<span>
|
|
<span ref="original" v-show="!$isGranted('users') || !hasSus">
|
|
<slot ref="original"></slot>
|
|
</span>
|
|
<span ref="marked" v-show="$isGranted('users') && hasSus"></span>
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
moderation: null,
|
|
hasSus: false,
|
|
}
|
|
},
|
|
async mounted() {
|
|
if (!this.$isGranted('users')) { return; }
|
|
this.moderation = await this.$axios.$get(`/admin/moderation`);
|
|
|
|
this.update();
|
|
|
|
const observer = new MutationObserver(this.update);
|
|
observer.observe(this.$refs.original, {
|
|
childList: true,
|
|
subtree: true
|
|
});
|
|
this.observer = observer;
|
|
},
|
|
beforeUnmount() {
|
|
this.observer.disconnect();
|
|
},
|
|
methods: {
|
|
update() {
|
|
if (!this.moderation) { return; }
|
|
|
|
let html = this.$refs.original.innerHTML;
|
|
for (let sus of this.moderation.susRegexes) {
|
|
html = html.replace(new RegExp(sus, 'gi'), m => {
|
|
if (m === 'map') {
|
|
// most probably an icon, skip
|
|
return m;
|
|
}
|
|
this.hasSus = true;
|
|
this.$emit('hasSus');
|
|
return `<mark>${m}</mark>`;
|
|
});
|
|
}
|
|
this.$refs.marked.innerHTML = html;
|
|
},
|
|
},
|
|
};
|
|
</script>
|