330 lines
12 KiB
JavaScript
330 lines
12 KiB
JavaScript
/**
|
||
* @name SendLargeMessages
|
||
* @author DevilBro
|
||
* @authorId 278543574059057154
|
||
* @version 1.6.6
|
||
* @description Allows you to enter larger Messages, which will automatically split into several smaller Messages
|
||
* @invite Jx3TjNS
|
||
* @donate https://www.paypal.me/MircoWittrien
|
||
* @patreon https://www.patreon.com/MircoWittrien
|
||
* @website https://mwittrien.github.io/
|
||
* @source https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/SendLargeMessages/
|
||
* @updateUrl https://mwittrien.github.io/BetterDiscordAddons/Plugins/SendLargeMessages/SendLargeMessages.plugin.js
|
||
*/
|
||
|
||
module.exports = (_ => {
|
||
const config = {
|
||
"info": {
|
||
"name": "SendLargeMessages",
|
||
"author": "DevilBro",
|
||
"version": "1.6.6",
|
||
"description": "Allows you to enter larger Messages, which will automatically split into several smaller Messages"
|
||
},
|
||
"changeLog": {
|
||
"improved": {
|
||
"New Line instead of Spaces": "Added an option to check for newlines instead of spaces to split messages"
|
||
}
|
||
}
|
||
};
|
||
|
||
return !window.BDFDB_Global || (!window.BDFDB_Global.loaded && !window.BDFDB_Global.started) ? class {
|
||
getName () {return config.info.name;}
|
||
getAuthor () {return config.info.author;}
|
||
getVersion () {return config.info.version;}
|
||
getDescription () {return `The Library Plugin needed for ${config.info.name} is missing. Open the Plugin Settings to download it. \n\n${config.info.description}`;}
|
||
|
||
downloadLibrary () {
|
||
require("request").get("https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js", (e, r, b) => {
|
||
if (!e && b && r.statusCode == 200) require("fs").writeFile(require("path").join(BdApi.Plugins.folder, "0BDFDB.plugin.js"), b, _ => BdApi.showToast("Finished downloading BDFDB Library", {type: "success"}));
|
||
else BdApi.alert("Error", "Could not download BDFDB Library Plugin. Try again later or download it manually from GitHub: https://mwittrien.github.io/downloader/?library");
|
||
});
|
||
}
|
||
|
||
load () {
|
||
if (!window.BDFDB_Global || !Array.isArray(window.BDFDB_Global.pluginQueue)) window.BDFDB_Global = Object.assign({}, window.BDFDB_Global, {pluginQueue: []});
|
||
if (!window.BDFDB_Global.downloadModal) {
|
||
window.BDFDB_Global.downloadModal = true;
|
||
BdApi.showConfirmationModal("Library Missing", `The Library Plugin needed for ${config.info.name} is missing. Please click "Download Now" to install it.`, {
|
||
confirmText: "Download Now",
|
||
cancelText: "Cancel",
|
||
onCancel: _ => {delete window.BDFDB_Global.downloadModal;},
|
||
onConfirm: _ => {
|
||
delete window.BDFDB_Global.downloadModal;
|
||
this.downloadLibrary();
|
||
}
|
||
});
|
||
}
|
||
if (!window.BDFDB_Global.pluginQueue.includes(config.info.name)) window.BDFDB_Global.pluginQueue.push(config.info.name);
|
||
}
|
||
start () {this.load();}
|
||
stop () {}
|
||
getSettingsPanel () {
|
||
let template = document.createElement("template");
|
||
template.innerHTML = `<div style="color: var(--header-primary); font-size: 16px; font-weight: 300; white-space: pre; line-height: 22px;">The Library Plugin needed for ${config.info.name} is missing.\nPlease click <a style="font-weight: 500;">Download Now</a> to install it.</div>`;
|
||
template.content.firstElementChild.querySelector("a").addEventListener("click", this.downloadLibrary);
|
||
return template.content.firstElementChild;
|
||
}
|
||
} : (([Plugin, BDFDB]) => {
|
||
const messageDelay = 1000; //changing at own risk, might result in bans or mutes
|
||
|
||
let settings = {};
|
||
|
||
return class SendLargeMessages extends Plugin {
|
||
onLoad () {
|
||
this.defaults = {
|
||
settings: {
|
||
byNewlines: {value: false, description: "Try to split messages on newlines instead of spaces", note: "This will stop sentences from being cut, but might result in more messages being sent"},
|
||
}
|
||
};
|
||
|
||
this.patchedModules = {
|
||
before: {
|
||
ChannelTextAreaForm: "render",
|
||
ChannelEditorContainer: "render"
|
||
},
|
||
after: {
|
||
ChannelTextAreaContainer: "render",
|
||
}
|
||
};
|
||
}
|
||
|
||
onStart () {
|
||
this.forceUpdateAll();
|
||
}
|
||
|
||
onStop () {
|
||
this.forceUpdateAll();
|
||
}
|
||
|
||
getSettingsPanel (collapseStates = {}) {
|
||
let settingsPanel, settingsItems = [];
|
||
|
||
for (let key in settings) settingsItems.push(BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.SettingsSaveItem, {
|
||
type: "Switch",
|
||
plugin: this,
|
||
keys: ["settings", key],
|
||
label: this.defaults.settings[key].description,
|
||
note: this.defaults.settings[key].note,
|
||
value: settings[key]
|
||
}));
|
||
|
||
return settingsPanel = BDFDB.PluginUtils.createSettingsPanel(this, settingsItems);
|
||
}
|
||
|
||
onSettingsClosed (e) {
|
||
if (this.SettingsUpdated) {
|
||
delete this.SettingsUpdated;
|
||
this.forceUpdateAll();
|
||
}
|
||
}
|
||
|
||
forceUpdateAll () {
|
||
settings = BDFDB.DataUtils.get(this, "settings");
|
||
|
||
BDFDB.PatchUtils.forceAllUpdates(this);
|
||
}
|
||
|
||
processChannelTextAreaForm (e) {
|
||
if (!BDFDB.PatchUtils.isPatched(this, e.instance, "handleSendMessage")) BDFDB.PatchUtils.patch(this, e.instance, "handleSendMessage", {instead: e2 => {
|
||
if (e2.methodArguments[0].length > BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH) {
|
||
e2.stopOriginalMethodCall();
|
||
let messages = this.formatText(e2.methodArguments[0]);
|
||
messages.filter(n => n).forEach((message, i) => {
|
||
BDFDB.TimeUtils.timeout(_ => {
|
||
e2.originalMethod(message);
|
||
if (i >= messages.length-1) BDFDB.NotificationUtils.toast(this.labels.toast_allsent, {type: "success"});
|
||
}, messageDelay * i);
|
||
});
|
||
return Promise.resolve({
|
||
shouldClear: true,
|
||
shouldRefocus: true
|
||
});
|
||
}
|
||
else return e2.callOriginalMethodAfterwards();
|
||
}}, {force: true, noCache: true});
|
||
}
|
||
|
||
processChannelTextAreaContainer (e) {
|
||
if (e.instance.props.type == BDFDB.DiscordConstants.TextareaTypes.NORMAL) {
|
||
let [children, index] = BDFDB.ReactUtils.findParent(e.returnvalue, {name: "SlateCharacterCount"});
|
||
if (index > -1) {
|
||
let text = BDFDB.LibraryModules.SlateSelectionUtils.serialize(children[index].props.document, "raw");
|
||
if (text.length > BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH) children[index] = BDFDB.ReactUtils.createElement("div", {
|
||
className: BDFDB.disCNS.textareacharcounter + BDFDB.disCN.textareacharcountererror,
|
||
children: BDFDB.ReactUtils.createElement(BDFDB.LibraryComponents.TooltipContainer, {
|
||
text: Math.ceil(text.length / BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH * (39/40)) + " " + BDFDB.LanguageUtils.LanguageStrings.MESSAGES,
|
||
children: BDFDB.ReactUtils.createElement("span", {
|
||
children: BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH - text.length
|
||
})
|
||
})
|
||
});
|
||
}
|
||
}
|
||
}
|
||
|
||
processChannelEditorContainer (e) {
|
||
if (e.instance.props.type && e.instance.props.type == BDFDB.DiscordConstants.TextareaTypes.NORMAL) e.instance.props.shouldUploadLongMessages = false;
|
||
}
|
||
|
||
formatText (text) {
|
||
const separator = settings.byNewlines ? "\n" : " ";
|
||
|
||
text = text.replace(/\t/g, " ");
|
||
let longWords = text.match(new RegExp(`[^${separator.replace("\n", "\\n")}]{${BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH * (19/20)},}`, "gm"));
|
||
if (longWords) for (let longWord of longWords) {
|
||
let count1 = 0;
|
||
let shortWords = [];
|
||
longWord.split("").forEach(c => {
|
||
if (shortWords[count1] && (shortWords[count1].length >= BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH * (19/20) || (c == "\n" && shortWords[count1].length >= BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH * (19/20) - 100))) count1++;
|
||
shortWords[count1] = shortWords[count1] ? shortWords[count1] + c : c;
|
||
});
|
||
text = text.replace(longWord, shortWords.join(separator));
|
||
}
|
||
let messages = [];
|
||
let count2 = 0;
|
||
text.split(separator).forEach((word) => {
|
||
if (messages[count2] && (messages[count2] + "" + word).length > BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH * (39/40)) count2++;
|
||
messages[count2] = messages[count2] ? messages[count2] + separator + word : word;
|
||
});
|
||
|
||
let insertCodeBlock = null, insertCodeLine = null;
|
||
for (let j = 0; j < messages.length; j++) {
|
||
if (insertCodeBlock) {
|
||
messages[j] = insertCodeBlock + messages[j];
|
||
insertCodeBlock = null;
|
||
}
|
||
else if (insertCodeLine) {
|
||
messages[j] = insertCodeLine + messages[j];
|
||
insertCodeLine = null;
|
||
}
|
||
|
||
let codeBlocks = messages[j].match(/`{3,}[\S]*\n|`{3,}/gm);
|
||
let codeLines = messages[j].match(/[^`]{0,1}`{1,2}[^`]|[^`]`{1,2}[^`]{0,1}/gm);
|
||
|
||
if (codeBlocks && codeBlocks.length % 2 == 1) {
|
||
messages[j] = messages[j] + "```";
|
||
insertCodeBlock = codeBlocks[codeBlocks.length-1] + "\n";
|
||
}
|
||
else if (codeLines && codeLines.length % 2 == 1) {
|
||
insertCodeLine = codeLines[codeLines.length-1].replace(/[^`]/g, "");
|
||
messages[j] = messages[j] + insertCodeLine;
|
||
}
|
||
}
|
||
return messages;
|
||
}
|
||
|
||
setLabelsByLanguage () {
|
||
switch (BDFDB.LanguageUtils.getLanguage().id) {
|
||
case "bg": // Bulgarian
|
||
return {
|
||
toast_allsent: "Всички изпратени съобщения"
|
||
};
|
||
case "da": // Danish
|
||
return {
|
||
toast_allsent: "Alle beskeder sendt"
|
||
};
|
||
case "de": // German
|
||
return {
|
||
toast_allsent: "Alle Nachrichten gesendet"
|
||
};
|
||
case "el": // Greek
|
||
return {
|
||
toast_allsent: "Όλα τα μηνύματα εστάλησαν"
|
||
};
|
||
case "es": // Spanish
|
||
return {
|
||
toast_allsent: "Todos los mensajes enviados"
|
||
};
|
||
case "fi": // Finnish
|
||
return {
|
||
toast_allsent: "Kaikki viestit lähetetty"
|
||
};
|
||
case "fr": // French
|
||
return {
|
||
toast_allsent: "Tous les messages envoyés"
|
||
};
|
||
case "hr": // Croatian
|
||
return {
|
||
toast_allsent: "Sve poruke poslane"
|
||
};
|
||
case "hu": // Hungarian
|
||
return {
|
||
toast_allsent: "Minden üzenet elküldve"
|
||
};
|
||
case "it": // Italian
|
||
return {
|
||
toast_allsent: "Tutti i messaggi inviati"
|
||
};
|
||
case "ja": // Japanese
|
||
return {
|
||
toast_allsent: "送信されたすべてのメッセージ"
|
||
};
|
||
case "ko": // Korean
|
||
return {
|
||
toast_allsent: "보낸 모든 메시지"
|
||
};
|
||
case "lt": // Lithuanian
|
||
return {
|
||
toast_allsent: "Visi pranešimai išsiųsti"
|
||
};
|
||
case "nl": // Dutch
|
||
return {
|
||
toast_allsent: "Alle berichten zijn verzonden"
|
||
};
|
||
case "no": // Norwegian
|
||
return {
|
||
toast_allsent: "Alle meldinger sendt"
|
||
};
|
||
case "pl": // Polish
|
||
return {
|
||
toast_allsent: "Wszystkie wiadomości wysłane"
|
||
};
|
||
case "pt-BR": // Portuguese (Brazil)
|
||
return {
|
||
toast_allsent: "Todas as mensagens enviadas"
|
||
};
|
||
case "ro": // Romanian
|
||
return {
|
||
toast_allsent: "Toate mesajele trimise"
|
||
};
|
||
case "ru": // Russian
|
||
return {
|
||
toast_allsent: "Все сообщения отправлены"
|
||
};
|
||
case "sv": // Swedish
|
||
return {
|
||
toast_allsent: "Alla meddelanden skickade"
|
||
};
|
||
case "th": // Thai
|
||
return {
|
||
toast_allsent: "ส่งข้อความทั้งหมดแล้ว"
|
||
};
|
||
case "tr": // Turkish
|
||
return {
|
||
toast_allsent: "Tüm mesajlar gönderildi"
|
||
};
|
||
case "uk": // Ukrainian
|
||
return {
|
||
toast_allsent: "Усі повідомлення надіслано"
|
||
};
|
||
case "vi": // Vietnamese
|
||
return {
|
||
toast_allsent: "Tất cả tin nhắn đã gửi"
|
||
};
|
||
case "zh-CN": // Chinese (China)
|
||
return {
|
||
toast_allsent: "已发送所有消息"
|
||
};
|
||
case "zh-TW": // Chinese (Taiwan)
|
||
return {
|
||
toast_allsent: "已發送所有消息"
|
||
};
|
||
default: // English
|
||
return {
|
||
toast_allsent: "All messages sent"
|
||
};
|
||
}
|
||
}
|
||
};
|
||
})(window.BDFDB_Global.PluginUtils.buildPlugin(config));
|
||
})(); |