//META{"name":"ChatAliases"}*// class ChatAliases { getName () {return "ChatAliases";} getVersion () {return "1.9.5";} getAuthor () {return "DevilBro";} getDescription () {return "Allows the user to configure their own chat-aliases which will automatically be replaced before the message is being sent.";} initConstructor () { this.patchModules = { "ChannelTextArea":"componentDidMount", "StandardSidebarView":"componentWillUnmount" }; this.configs = ["case","exact","autoc","regex","file"]; this.defaults = { settings: { addAutoComplete: {value:true, description:"Add an Autocomplete-Menu for Non-Regex Aliases:"} } }; } getSettingsPanel () { if (!global.BDFDB || typeof BDFDB != "object" || !BDFDB.loaded || !this.started) return; var settings = BDFDB.getAllData(this, "settings"); var settingshtml = `
${this.getName()}
`; for (let key in settings) { settingshtml += `

${this.defaults.settings[key].description}

`; } settingshtml += `

Replace:

With:

`; settingshtml += `

List of Chataliases:

`; for (let config of this.configs) { settingshtml += `
${config.toUpperCase()}
`; } settingshtml += `
`; for (let word in this.aliases) { settingshtml += `
`; for (let config of this.configs) { settingshtml += `
`; } settingshtml += `
`; } settingshtml += `
`; settingshtml += `

Remove all added words.

`; var infoHidden = BDFDB.loadData("hideInfo", this, "hideInfo"); settingshtml += `
Information
`; settingshtml += `
Case: Will replace words while comparing lowercase/uppercase. apple => apple, not APPLE or AppLe
Not Case: Will replace words while ignoring lowercase/uppercase. apple => apple, APPLE and AppLe
Exact: Will replace words that are exactly the replaceword. apple to pear => applepie stays applepie
Not Exact: Will replace words anywhere they appear. apple to pear => applepieapple to pearpiepear
Autoc: Will appear in the Autocomplete Menu (if enabled).
Regex: Will treat the entered wordvalue as a regular expression. Help
File: If the replacevalue is a filepath it will try to upload the file located at the filepath.
`; settingshtml += `
`; let settingspanel = BDFDB.htmlToElement(settingshtml); BDFDB.initElements(settingspanel, this); BDFDB.addEventListener(this, settingspanel, "keypress", ".wordInputs", e => {if (e.which == 13) this.updateContainer(settingspanel, e.currentTarget);}); BDFDB.addEventListener(this, settingspanel, "keyup", BDFDB.dotCN.gamenameinput, e => {this.updateWord(e.currentTarget);}); BDFDB.addEventListener(this, settingspanel, "click", ".btn-addword, .remove-word, .remove-all", e => {this.updateContainer(settingspanel, e.currentTarget);}); BDFDB.addEventListener(this, settingspanel, "click", BDFDB.dotCN.checkboxinput, e => {this.updateConfig(e.currentTarget);}); BDFDB.addEventListener(this, settingspanel, "click", ".toggle-info", e => {this.toggleInfo(e.currentTarget);}); return settingspanel; } //legacy load () {} start () { var libraryScript = document.querySelector('head script[src="https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.js"]'); if (!libraryScript || performance.now() - libraryScript.getAttribute("date") > 600000) { if (libraryScript) libraryScript.remove(); libraryScript = document.createElement("script"); libraryScript.setAttribute("type", "text/javascript"); libraryScript.setAttribute("src", "https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.js"); libraryScript.setAttribute("date", performance.now()); libraryScript.addEventListener("load", () => { BDFDB.loaded = true; this.initialize(); }); document.head.appendChild(libraryScript); } else if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) this.initialize(); this.startTimeout = setTimeout(() => {this.initialize();}, 30000); } initialize () { if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) { if (this.started) return; BDFDB.loadMessage(this); this.UploadModule = BDFDB.WebModules.findByProperties("instantBatchUpload"); this.CurrentUserPerms = BDFDB.WebModules.findByProperties("getChannelPermissions", "can"); this.Permissions = BDFDB.WebModules.findByProperties("Permissions", "ActivityTypes").Permissions; this.aliases = BDFDB.loadAllData(this, "words"); BDFDB.addEventListener(document, "click", e => { if (!e.target.tagName === "TEXTAREA") BDFDB.removeEles(".autocompleteAliases", ".autocompleteAliasesRow"); }); BDFDB.WebModules.forceAllUpdates(this); } else { console.error(this.getName() + ": Fatal Error: Could not load BD functions!"); } } stop () { if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) { BDFDB.removeEles(".autocompleteAliases", ".autocompleteAliasesRow"); BDFDB.unloadMessage(this); } } // begin of own functions updateContainer (settingspanel, ele) { var update = false, wordvalue = null, replacevalue = null; var action = ele.getAttribute("action"); if (action == "add") { var wordinput = settingspanel.querySelector("#input-wordvalue"); var replaceinput = settingspanel.querySelector("#input-replacevalue"); var fileselection = settingspanel.querySelector("#input-file"); wordvalue = wordinput.value; replacevalue = replaceinput.value; if (wordvalue && wordvalue.trim().length > 0 && replacevalue && replacevalue.trim().length > 0) { wordvalue = wordvalue.trim(); replacevalue = replacevalue.trim(); var filedata = null; var fs = require("fs"); if (fileselection.files && fileselection.files[0] && fs.existsSync(replacevalue)) { filedata = JSON.stringify({ data: fs.readFileSync(replacevalue).toString("base64"), name: fileselection.files[0].name, type: fileselection.files[0].type }); } this.aliases[wordvalue] = { replace: replacevalue, filedata: filedata, case: false, exact: wordvalue.indexOf(" ") == -1, autoc: true, regex: false, file: filedata != null }; wordinput.value = null; replaceinput.value = null; update = true; } } else if (action == "remove") { wordvalue = ele.getAttribute("word"); if (wordvalue) { delete this.aliases[wordvalue]; update = true; } } else if (action == "removeall") { if (confirm("Are you sure you want to remove all added Words from your list?")) { this.aliases = {}; update = true; } } if (update) { BDFDB.saveAllData(this.aliases, this, "words"); var containerhtml = ``; for (let word in this.aliases) { containerhtml += `
`; for (let config of this.configs) { containerhtml += `
`; } containerhtml += `
`; } settingspanel.querySelector(".alias-list").innerHTML = containerhtml; BDFDB.initElements(settingspanel, this); } } updateWord (ele) { clearTimeout(ele.updateTimeout); ele.updateTimeout = setTimeout(() => { var card = ele.parentElement.parentElement; var oldwordvalue = ele.getAttribute("word"); if (oldwordvalue && this.aliases[oldwordvalue]) { var wordinput = card.querySelector(".word-name"); var replaceinput = card.querySelector(".replace-name"); var removebutton = card.querySelector(".remove-word"); var newwordvalue = wordinput.value; var newreplacevalue = replaceinput.value; wordinput.setAttribute("word", newwordvalue); wordinput.setAttribute("value", newwordvalue); replaceinput.setAttribute("word", newwordvalue); replaceinput.setAttribute("value", newreplacevalue); removebutton.setAttribute("word", newwordvalue); this.aliases[newwordvalue] = this.aliases[oldwordvalue]; this.aliases[newwordvalue].replace = newreplacevalue; if (newwordvalue != oldwordvalue) delete this.aliases[oldwordvalue]; BDFDB.saveAllData(this.aliases, this, "words"); } },500); } updateConfig (ele) { var wordvalue = ele.getAttribute("word"); var config = ele.getAttribute("config"); if (wordvalue && this.aliases[wordvalue] && config) { this.aliases[wordvalue][config] = ele.checked; BDFDB.saveAllData(this.aliases, this, "words"); } } toggleInfo (ele) { BDFDB.toggleClass(ele, BDFDB.disCN.categorywrappercollapsed); BDFDB.toggleClass(ele, BDFDB.disCN.categorywrapperdefault); var svg = ele.querySelector(BDFDB.dotCN.categoryicontransition); BDFDB.toggleClass(svg, BDFDB.disCN.directionright); BDFDB.toggleClass(svg, BDFDB.disCN.categoryiconcollapsed); BDFDB.toggleClass(svg, BDFDB.disCN.categoryicondefault); BDFDB.toggleEles(ele.nextElementSibling); BDFDB.saveData("hideInfo", BDFDB.isEleHidden(ele.nextElementSibling), this, "hideInfo"); } processStandardSidebarView (instance, wrapper) { if (this.SettingsUpdated) { BDFDB.WebModules.forceAllUpdates(this); delete this.SettingsUpdated; } } processChannelTextArea (instance, wrapper) { if (instance.props && instance.props.type) { var textarea = wrapper.querySelector("textarea"); if (!textarea) return; var channel = BDFDB.getSelectedChannel(); if (!channel) return; var settings = BDFDB.getAllData(this, "settings"); BDFDB.addEventListener(this, textarea, "input", () => { if (this.format) { this.format = false; textarea.focus(); textarea.selectionStart = 0; textarea.selectionEnd = textarea.value.length; if (document.activeElement == textarea) { var messageInput = this.formatText(textarea.value); if (messageInput && messageInput.text != null) { document.execCommand("insertText", false, messageInput.text ? messageInput.text + " " : ""); } if (messageInput && messageInput.files.length > 0 && (channel.type == 1 || this.CurrentUserPerms.can(this.Permissions.ATTACH_FILES, channel))) { this.UploadModule.instantBatchUpload(channel.id, messageInput.files); } } } }); BDFDB.addEventListener(this, textarea, "keydown", e => { let autocompletemenu = textarea.parentElement.querySelector(BDFDB.dotCN.autocomplete); if (autocompletemenu && (e.which == 9 || e.which == 13)) { if (BDFDB.containsClass(autocompletemenu.querySelector(BDFDB.dotCN.autocompleteselected).parentElement, "autocompleteAliasesRow")) { e.originalEvent.preventDefault(); e.originalEvent.stopPropagation(); this.swapWordWithAlias(textarea); } } else if (autocompletemenu && (e.which == 38 || e.which == 40)) { let autocompleteitems = autocompletemenu.querySelectorAll(BDFDB.dotCN.autocompleteselectable + ":not(.autocompleteAliasesSelector)"); let selected = autocompletemenu.querySelector(BDFDB.dotCN.autocompleteselected); if (BDFDB.containsClass(selected, "autocompleteAliasesSelector") || autocompleteitems[e.which == 38 ? 0 : (autocompleteitems.length-1)] == selected) { e.originalEvent.preventDefault(); e.originalEvent.stopPropagation(); let next = this.getNextSelection(autocompletemenu, null, e.which == 38 ? false : true); BDFDB.removeClass(selected, BDFDB.disCN.autocompleteselected); BDFDB.addClass(next, BDFDB.disCN.autocompleteselected); } } else if (textarea.value && !e.shiftKey && e.which == 13 && !autocompletemenu && textarea.value.indexOf("s/") != 0) { this.format = true; textarea.dispatchEvent(new Event("input")); } else if (!e.ctrlKey && e.which != 16 && settings.addAutoComplete && textarea.selectionStart == textarea.selectionEnd && textarea.selectionEnd == textarea.value.length) { clearTimeout(textarea.chataliastimeout); textarea.chataliastimeout = setTimeout(() => {this.addAutoCompleteMenu(textarea);},100); } if (!e.ctrlKey && e.which != 38 && e.which != 40 && !(e.which == 39 && textarea.selectionStart == textarea.selectionEnd && textarea.selectionEnd == textarea.value.length)) BDFDB.removeEles(".autocompleteAliases", ".autocompleteAliasesRow"); }); BDFDB.addEventListener(this, textarea, "click", e => { if (settings.addAutoComplete && textarea.selectionStart == textarea.selectionEnd && textarea.selectionEnd == textarea.value.length) setImmediate(() => {this.addAutoCompleteMenu(textarea);}); }); } } addAutoCompleteMenu (textarea) { if (textarea.parentElement.querySelector(".autocompleteAliasesRow")) return; let words = textarea.value.split(/\s/); let lastword = words[words.length-1].trim(); if (words.length == 1 && BDFDB.isPluginEnabled("WriteUpperCase")) { let first = lastword.charAt(0); if (first === first.toUpperCase() && lastword.toLowerCase().indexOf("http") == 0) { lastword = lastword.charAt(0).toLowerCase() + lastword.slice(1); } else if (first === first.toLowerCase() && first !== first.toUpperCase() && lastword.toLowerCase().indexOf("http") != 0) { lastword = lastword.charAt(0).toUpperCase() + lastword.slice(1); } } if (lastword) { let matchedaliases = {}; for (let word in this.aliases) { let aliasdata = this.aliases[word]; if (!aliasdata.regex && aliasdata.autoc) { if (aliasdata.exact) { if (aliasdata.case && word.indexOf(lastword) == 0) matchedaliases[word] = aliasdata; else if (!aliasdata.case && word.toLowerCase().indexOf(lastword.toLowerCase()) == 0) matchedaliases[word] = aliasdata; } else { if (aliasdata.case && word.indexOf(lastword) > -1) matchedaliases[word] = aliasdata; else if (!aliasdata.case && word.toLowerCase().indexOf(lastword.toLowerCase()) > -1) matchedaliases[word] = aliasdata; } } } if (!BDFDB.isObjectEmpty(matchedaliases)) { let autocompletemenu = textarea.parentElement.querySelector(BDFDB.dotCNS.autocomplete + BDFDB.dotCN.autocompleteinner), amount = 15; if (!autocompletemenu) { autocompletemenu = BDFDB.htmlToElement(`
`); textarea.parentElement.appendChild(autocompletemenu); autocompletemenu = autocompletemenu.firstElementChild; } else { amount -= autocompletemenu.querySelectorAll(BDFDB.dotCN.autocompleteselectable).length; } let autocompleterowheader = BDFDB.htmlToElement(`
Aliases: ${BDFDB.encodeToHTML(lastword)}
`); autocompletemenu.appendChild(autocompleterowheader); BDFDB.addEventListener(this, autocompletemenu, "mouseenter", BDFDB.dotCN.autocompleteselectable, e => { BDFDB.removeClass(autocompletemenu.querySelectorAll(BDFDB.dotCN.autocompleteselected), BDFDB.disCN.autocompleteselected); BDFDB.addClass(e.currentTarget, BDFDB.disCN.autocompleteselected); }); for (let word in matchedaliases) { if (amount-- < 1) break; let autocompleterow = BDFDB.htmlToElement(`
${BDFDB.encodeToHTML(word)}
${BDFDB.encodeToHTML(matchedaliases[word].replace)}
`); autocompleterow.querySelector(BDFDB.dotCN.autocompleteselectable).addEventListener("click", () => {this.swapWordWithAlias(textarea);}); autocompletemenu.appendChild(autocompleterow); } if (!autocompletemenu.querySelector(BDFDB.dotCN.autocompleteselected)) { BDFDB.addClass(autocompletemenu.querySelector(".autocompleteAliasesRow " + BDFDB.dotCN.autocompleteselectable), BDFDB.disCN.autocompleteselected); } } } } getNextSelection (menu, selected, forward) { selected = selected ? selected : menu.querySelector(BDFDB.dotCN.autocompleteselected).parentElement; let next, sibling = forward ? selected.nextElementSibling : selected.previousElementSibling; if (sibling) { next = sibling.querySelector(BDFDB.dotCN.autocompleteselectable); } else { let items = menu.querySelectorAll(BDFDB.dotCN.autocompleteselectable); next = forward ? items[0] : items[items.length-1]; } return next ? next : this.getNextSelection(menu, sibling, forward); } swapWordWithAlias (textarea) { let aliasword = textarea.parentElement.querySelector(".autocompleteAliasesRow " + BDFDB.dotCN.autocompleteselected + " .aliasword").innerText; let lastword = textarea.parentElement.querySelector(".autocompleteAliasesRow .lastword").innerText; if (aliasword && lastword) { BDFDB.removeEles(".autocompleteAliases", ".autocompleteAliasesRow"); textarea.focus(); textarea.selectionStart = textarea.value.length - lastword.length; textarea.selectionEnd = textarea.value.length; document.execCommand("insertText", false, aliasword); textarea.selectionStart = textarea.value.length; textarea.selectionEnd = textarea.value.length; } } formatText (text) { text = text.replace(/([\n\t\r])/g, " $1 "); var newText = [], files = [], wordAliases = {}, multiAliases = {}; for (let word in this.aliases) { if (!this.aliases[word].regex && word.indexOf(" ") == -1) wordAliases[word] = this.aliases[word]; else multiAliases[word] = this.aliases[word]; } for (let word of text.trim().split(" ")) { newText.push(this.useAliases(word, wordAliases, files, true)); } newText = newText.length == 1 ? newText[0] : newText.join(" "); newText = newText.replace(/ ([\n\t\r]) /g, "$1"); newText = this.useAliases(newText, multiAliases, files, false); return {text:newText, files}; } useAliases (string, aliases, files, singleword) { for (let word in aliases) { let aliasdata = aliases[word]; let escpAlias = aliasdata.regex ? word : BDFDB.regEscape(word); let result = true, replaced = false, tempstring1 = string, tempstring2 = ""; let regstring = aliasdata.exact ? "^" + escpAlias + "$" : escpAlias; while (result != null) { result = new RegExp(regstring, (aliasdata.case ? "" : "i") + (aliasdata.exact ? "" : "g")).exec(tempstring1); if (result) { replaced = true; let replace = aliasdata.file ? "" : BDFDB.insertNRST(aliasdata.replace); if (result.length > 1) for (var i = 1; i < result.length; i++) replace = replace.replace(new RegExp("\\\\" + i + "|\\$" + i, "g"), result[i]); tempstring2 += tempstring1.slice(0, result.index + result[0].length).replace(result[0], replace); tempstring1 = tempstring1.slice(result.index + result[0].length); if (aliasdata.file && typeof aliasdata.filedata == "string") { var filedata = JSON.parse(aliasdata.filedata); files.push(new File([Buffer.from(filedata.data, "base64")], filedata.name, {type:filedata.type})); } if (aliasdata.regex && regstring.indexOf("^") == 0) result = null; } if (!result) tempstring2 += tempstring1; } if (replaced) { string = tempstring2; if (singleword) break; } } return string; } }