mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-20 11:57:02 -04:00
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
/*
|
|
* Vencord, a Discord client mod
|
|
* Copyright (c) 2024 Vendicated and contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { addPreSendListener, removePreSendListener } from "@api/MessageEvents";
|
|
import { definePluginSettings } from "@api/Settings";
|
|
import { Devs } from "@utils/constants";
|
|
import definePlugin, { OptionType } from "@utils/types";
|
|
|
|
const settings = definePluginSettings({
|
|
replace: {
|
|
type: OptionType.STRING,
|
|
description: "Replace with",
|
|
default: ":face_with_monocle:"
|
|
},
|
|
});
|
|
|
|
|
|
function replaceQuestionMarks(content: string): string {
|
|
const allQuestionMarks = content.split("").every(char => char === "?");
|
|
|
|
if (allQuestionMarks) {
|
|
return content.replace(/\?/g, settings.store.replace);
|
|
} else {
|
|
return content;
|
|
}
|
|
}
|
|
|
|
export default definePlugin({
|
|
name: "QuestionMarkReplacement",
|
|
description: "Replace all question marks with chosen string, if message only contains question marks.",
|
|
authors: [Devs.nyx],
|
|
|
|
settings,
|
|
|
|
start() {
|
|
this.preSend = addPreSendListener((_, msg) => {
|
|
msg.content = replaceQuestionMarks(msg.content);
|
|
});
|
|
},
|
|
|
|
stop() {
|
|
removePreSendListener(this.preSend);
|
|
}
|
|
});
|