//META{"name":"ReadAllNotificationsButton","website":"https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/ReadAllNotificationsButton","source":"https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/ReadAllNotificationsButton/ReadAllNotificationsButton.plugin.js"}*// class ReadAllNotificationsButton { getName () {return "ReadAllNotificationsButton";} getVersion () {return "1.4.9";} getAuthor () {return "DevilBro";} getDescription () {return "Adds a button to clear all notifications.";} initConstructor () { this.changelog = { "added":[["Muted Servers","Added an extra contextmenu option to only read muted servers and also relabeled the other options"]] }; this.patchModules = { "Guilds":["componentDidMount","componentDidUpdate"], "RecentMentions":"componentDidMount", "DirectMessage":"componentDidMount" }; this.RANcontextMenuMarkup = `
REPLACE_context_unreadguilds_text
REPLACE_context_mutedguilds_text
REPLACE_context_guilds_text
REPLACE_context_dms_text
`; this.RANbuttonMarkup = `
read all
`; this.RAMbuttonMarkup = ``; this.css = ` .RANbutton-frame { margin-bottom: 10px; } .RANbutton { cursor: pointer; border-radius: 4px; font-size: 12px; font-weight: 500; line-height: 1.3; } `; this.defaults = { settings: { addClearButton: {value:true, inner:false, description:"Adds a 'Clear Mentions' button to the recent mentions popout"}, includeGuilds: {value:true, inner:true, description:"unread Servers"}, includeMuted: {value:false, inner:true, description:"muted unread Servers"}, includeDMs: {value:false, inner:true, description:"unread DMs"} } }; } getSettingsPanel () { if (!global.BDFDB || typeof BDFDB != "object" || !BDFDB.loaded || !this.started) return; var settings = BDFDB.getAllData(this, "settings"); var settingshtml = `
${this.name}
`; for (let key in settings) { if (!this.defaults.settings[key].inner) settingshtml += `

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

`; } settingshtml += `

When left clicking the button mark following elements as unread:

`; for (let key in settings) { if (this.defaults.settings[key].inner) settingshtml += `

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

`; } settingshtml += `
`; settingshtml += `
`; let settingspanel = BDFDB.htmlToElement(settingshtml); BDFDB.initElements(settingspanel, this); let mutedinput = settingspanel.querySelector(".settings-switch[value='settings includeMuted']").parentElement.parentElement; BDFDB.toggleEles(mutedinput, settings.includeGuilds); BDFDB.addEventListener(this, settingspanel, "click", ".settings-switch[value='settings includeGuilds']", e => { BDFDB.toggleEles(mutedinput, e.currentTarget.checked); }); return settingspanel; } //legacy load () {} start () { if (!global.BDFDB) global.BDFDB = {myPlugins:{}}; if (global.BDFDB && global.BDFDB.myPlugins && typeof global.BDFDB.myPlugins == "object") global.BDFDB.myPlugins[this.getName()] = this; 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", () => {if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) 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); BDFDB.WebModules.forceAllUpdates(this); } else { console.error(`%c[${this.getName()}]%c`, 'color: #3a71c1; font-weight: 700;', '', 'Fatal Error: Could not load BD functions!'); } } stop () { if (global.BDFDB && typeof BDFDB === "object" && BDFDB.loaded) { BDFDB.removeEles(".RANbutton-frame", ".RAMbutton"); BDFDB.removeClasses("RAN-added", "RAM-added"); BDFDB.unloadMessage(this); } } // begin of own functions changeLanguageStrings () { this.RANcontextMenuMarkup = this.RANcontextMenuMarkup.replace("REPLACE_context_unreadguilds_text", this.labels.context_unreadguilds_text); this.RANcontextMenuMarkup = this.RANcontextMenuMarkup.replace("REPLACE_context_mutedguilds_text", this.labels.context_mutedguilds_text); this.RANcontextMenuMarkup = this.RANcontextMenuMarkup.replace("REPLACE_context_guilds_text", this.labels.context_guilds_text); this.RANcontextMenuMarkup = this.RANcontextMenuMarkup.replace("REPLACE_context_dms_text", this.labels.context_dms_text); } processGuilds (instance, wrapper) { BDFDB.removeEles(".RANbutton-frame"); let insertnode = this.getInsertNode(); if (insertnode) { let ranbutton = BDFDB.htmlToElement(this.RANbuttonMarkup); insertnode.parentElement.insertBefore(ranbutton, insertnode); ranbutton.addEventListener("click", () => { let settings = BDFDB.getAllData(this, "settings"); if (settings.includeGuilds) BDFDB.markGuildAsRead(settings.includeMuted ? BDFDB.readServerList() : BDFDB.readUnreadServerList()); if (settings.includeDMs) BDFDB.markChannelAsRead(BDFDB.readDmList()); }); ranbutton.addEventListener("contextmenu", e => { let RANcontextMenu = BDFDB.htmlToElement(this.RANcontextMenuMarkup); RANcontextMenu.querySelector(".readunreadguilds-item").addEventListener("click", () => { BDFDB.removeEles(RANcontextMenu); BDFDB.markGuildAsRead(BDFDB.readUnreadServerList()); }); RANcontextMenu.querySelector(".readmutedguilds-item").addEventListener("click", () => { BDFDB.removeEles(RANcontextMenu); BDFDB.markGuildAsRead(BDFDB.readMutedServerList()); }); RANcontextMenu.querySelector(".readguilds-item").addEventListener("click", () => { BDFDB.removeEles(RANcontextMenu); BDFDB.markGuildAsRead(BDFDB.readServerList()); }); RANcontextMenu.querySelector(".readdms-item").addEventListener("click", () => { BDFDB.removeEles(RANcontextMenu); BDFDB.markChannelAsRead(BDFDB.readDmList()); }); BDFDB.appendContextMenu(RANcontextMenu, e); }); BDFDB.addClass(wrapper, "RAN-added"); } } processDirectMessage (instance, wrapper, methodnames) { let ranbutton = document.querySelector(".RANbutton-frame"); let insertnode = this.getInsertNode(); if (ranbutton && insertnode) insertnode.parentElement.insertBefore(ranbutton, insertnode); } processRecentMentions (instance, wrapper) { BDFDB.removeEles(".RAMbutton"); if (instance.props && instance.props.popoutName == "RECENT_MENTIONS_POPOUT" && BDFDB.getData("addClearButton", this, "settings")) { let recentmentionstitle = wrapper.querySelector(BDFDB.dotCN.messagespopouttitle); if (recentmentionstitle) { let ranbutton = BDFDB.htmlToElement(this.RAMbuttonMarkup); recentmentionstitle.appendChild(ranbutton); ranbutton.addEventListener("click", () => {this.clearMentions(instance, wrapper);}); BDFDB.addClass(wrapper, "RAM-added"); } } } clearMentions (instance, wrapper) { let closebuttons = wrapper.querySelectorAll(BDFDB.dotCN.messagespopoutclosebutton); for (let btn of wrapper.querySelectorAll(BDFDB.dotCN.messagespopoutclosebutton)) btn.click(); if (closebuttons.length) { instance.loadMore(); setTimeout(() => {this.clearMentions(instance, wrapper);},3000); } } getInsertNode () { let homebutton = BDFDB.getParentEle(BDFDB.dotCN.guildouter, document.querySelector(BDFDB.dotCN.homebuttonicon)); if (!homebutton) return null; let nextsibling = homebutton.nextElementSibling, insertnode = null; while (nextsibling && insertnode == null) { if (nextsibling.querySelector(`${BDFDB.dotCN.guildseparator}:not(.folderseparator)`)) insertnode = nextsibling; nextsibling = nextsibling.nextElementSibling } return insertnode; } setLabelsByLanguage () { switch (BDFDB.getDiscordLanguage().id) { case "hr": //croatian return { context_unreadguilds_text: "Nepročitani poslužitelji", context_mutedguilds_text: "Prigušeni poslužitelje", context_guilds_text: "Sve poslužitelje", context_dms_text: "Prikvacene izravne" }; case "da": //danish return { context_unreadguilds_text: "Ulæste servere", context_mutedguilds_text: "Dæmpede servere", context_guilds_text: "Alle servere", context_dms_text: "Private beskeder" }; case "de": //german return { context_unreadguilds_text: "Ungelesene Server", context_mutedguilds_text: "Stummgeschaltene Server", context_guilds_text: "Alle Server", context_dms_text: "Direktnachrichten" }; case "es": //spanish return { context_unreadguilds_text: "Servidores no leídos", context_mutedguilds_text: "Servidores silenciados", context_guilds_text: "Todos los servidores", context_dms_text: "Mensajes directos" }; case "fr": //french return { context_unreadguilds_text: "Serveurs non lus", context_mutedguilds_text: "Serveurs en sourdine", context_guilds_text: "Tous les serveurs", context_dms_text: "Messages privés" }; case "it": //italian return { context_unreadguilds_text: "Server non letti", context_mutedguilds_text: "Server mutate", context_guilds_text: "Tutti i server", context_dms_text: "Messaggi diretti" }; case "nl": //dutch return { context_unreadguilds_text: "Ongelezen servers", context_mutedguilds_text: "Gedempte servers", context_guilds_text: "Alle servers", context_dms_text: "Prive berichten" }; case "no": //norwegian return { context_unreadguilds_text: "Uleste servere", context_mutedguilds_text: "Dempet servere", context_guilds_text: "Alle servere", context_dms_text: "Direktemeldinger" }; case "pl": //polish return { context_unreadguilds_text: "Nieprzeczytane serwery", context_mutedguilds_text: "Wyciszone serwery", context_guilds_text: "Wszystkie serwery", context_dms_text: "Prywatne wiadomości" }; case "pt-BR": //portuguese (brazil) return { context_unreadguilds_text: "Servidores não lidos", context_mutedguilds_text: "Servidores silenciosos", context_guilds_text: "Todos os servidores", context_dms_text: "Mensagens diretas" }; case "fi": //finnish return { context_unreadguilds_text: "Lukemattomia palvelimet", context_mutedguilds_text: "Mykistetyt palvelimet", context_guilds_text: "Kaikki palvelimet", context_dms_text: "Yksityisviestit" }; case "sv": //swedish return { context_unreadguilds_text: "Olästa servrar", context_mutedguilds_text: "Dämpade servrar", context_guilds_text: "Alla servrar", context_dms_text: "Direktmeddelanden" }; case "tr": //turkish return { context_unreadguilds_text: "Okunmamış sunucular", context_mutedguilds_text: "Sessiz sunucular", context_guilds_text: "Tüm sunucular", context_dms_text: "Özel mesajlar" }; case "cs": //czech return { context_unreadguilds_text: "Nepřečtené servery", context_mutedguilds_text: "Tlumené servery", context_guilds_text: "Všechny servery", context_dms_text: "Přímé zpráva" }; case "bg": //bulgarian return { context_unreadguilds_text: "Непрочетени сървъри", context_mutedguilds_text: "Приглушени сървъри", context_guilds_text: "Всички сървъри", context_dms_text: "Директно съобщение" }; case "ru": //russian return { context_unreadguilds_text: "Непрочитанные серверы", context_mutedguilds_text: "Отключенные серверы", context_guilds_text: "Все серверы", context_dms_text: "Прямые сообщения" }; case "uk": //ukrainian return { context_unreadguilds_text: "Непрочитаних серверів", context_mutedguilds_text: "Приглушені сервери", context_guilds_text: "Всі сервери", context_dms_text: "Прямі Повідомлення" }; case "ja": //japanese return { context_unreadguilds_text: "未読サーバー", context_mutedguilds_text: "ミュートサーバー", context_guilds_text: "すべてのサーバー", context_dms_text: "ダイレクトメッセージ" }; case "zh-TW": //chinese (traditional) return { context_unreadguilds_text: "未讀服務器", context_mutedguilds_text: "靜音服務器", context_guilds_text: "所有服務器", context_dms_text: "直接消息", }; case "ko": //korean return { context_unreadguilds_text: "읽지 않은 서버", context_mutedguilds_text: "음소거 된 서버", context_guilds_text: "모든 서버", context_dms_text: "직접 메시지" }; default: //default: english return { context_unreadguilds_text: "Unread Servers", context_mutedguilds_text: "Muted Servers", context_guilds_text: "All Servers", context_dms_text: "Direct Messages" }; } } }