Update ReadAllNotificationsButton.plugin.js

This commit is contained in:
Mirco Wittrien 2019-02-04 11:17:39 +01:00
parent 44f83211b7
commit 156c3bddb6
1 changed files with 190 additions and 4 deletions

View File

@ -3,18 +3,41 @@
class ReadAllNotificationsButton {
getName () {return "ReadAllNotificationsButton";}
getVersion () {return "1.3.9";}
getVersion () {return "1.4.0";}
getAuthor () {return "DevilBro";}
getDescription () {return "Adds a button to clear all notifications.";}
initConstructor () {
this.changelog = {
"added":[["Mark DMs as read","You can now also mark DMs as read"],["ContextMenu","Right clicking the 'read all' button now opens a context menu that lets you more freely choose what should be marked as read"]],
"improved":[["Settings","You can now more freely change the left click behaviour of the 'read all' button"]],
};
this.patchModules = {
"Guilds":"componentDidMount",
"RecentMentions":"componentDidMount"
};
this.RANcontextMenuMarkup =
`<div class="${BDFDB.disCN.contextmenu} RANbutton-contextmenu">
<div class="${BDFDB.disCN.contextmenuitemgroup}">
<div class="${BDFDB.disCN.contextmenuitem} readguilds-item">
<span class="DevilBro-textscrollwrapper" speed=3><div class="DevilBro-textscroll">REPLACE_context_guilds_text</div></span>
<div class="${BDFDB.disCN.contextmenuhint}"></div>
</div>
<div class="${BDFDB.disCN.contextmenuitem} readmutedguilds-item">
<span class="DevilBro-textscrollwrapper" speed=3><div class="DevilBro-textscroll">REPLACE_context_mutedguilds_text</div></span>
<div class="${BDFDB.disCN.contextmenuhint}"></div>
</div>
<div class="${BDFDB.disCN.contextmenuitem} readdms-item">
<span class="DevilBro-textscrollwrapper" speed=3><div class="DevilBro-textscroll">REPLACE_context_dms_text</div></span>
<div class="${BDFDB.disCN.contextmenuhint}"></div>
</div>
</div>
</div>`;
this.RANbuttonMarkup =
`<div class="${BDFDB.disCN.guild} RANbutton-frame" id="bd-pub-li" style="height: 20px; margin-bottom: 10px;">
<div class="${BDFDB.disCN.guildinner}" style="height: 20px; border-radius: 4px;">
@ -31,7 +54,9 @@ class ReadAllNotificationsButton {
this.defaults = {
settings: {
includeMuted: {value:false, description:"Include muted Servers (means more API-Requests):"}
includeGuilds: {value:true, description:"unread Servers"},
includeMuted: {value:false, description:"muted unread Servers"},
includeDMs: {value:false, description:"unread DMs"}
}
};
}
@ -40,14 +65,22 @@ class ReadAllNotificationsButton {
if (!global.BDFDB || typeof BDFDB != "object" || !BDFDB.loaded || !this.started) return;
var settings = BDFDB.getAllData(this, "settings");
var settingshtml = `<div class="${this.name}-settings DevilBro-settings"><div class="${BDFDB.disCNS.titledefault + BDFDB.disCNS.title + BDFDB.disCNS.size18 + BDFDB.disCNS.height24 + BDFDB.disCNS.weightnormal + BDFDB.disCN.marginbottom8}">${this.name}</div><div class="DevilBro-settings-inner">`;
settingshtml += `<div class="${BDFDB.disCNS.flex + BDFDB.disCNS.flex2 + BDFDB.disCNS.horizontal + BDFDB.disCNS.horizontal2 + BDFDB.disCNS.directionrow + BDFDB.disCNS.justifystart + BDFDB.disCNS.aligncenter + BDFDB.disCNS.nowrap + BDFDB.disCN.marginbottom8}" style="flex: 1 1 auto;"><h3 class="${BDFDB.disCNS.titledefault + BDFDB.disCNS.title + BDFDB.disCNS.marginreset + BDFDB.disCNS.weightmedium + BDFDB.disCNS.size16 + BDFDB.disCNS.height24 + BDFDB.disCN.flexchild}" style="flex: 0 0 auto;">When left clicking the button mark following elements as unread:</h3></div><div class="DevilBro-settings-inner-list">`;
for (let key in settings) {
settingshtml += `<div class="${BDFDB.disCNS.flex + BDFDB.disCNS.flex2 + BDFDB.disCNS.horizontal + BDFDB.disCNS.horizontal2 + BDFDB.disCNS.directionrow + BDFDB.disCNS.justifystart + BDFDB.disCNS.aligncenter + BDFDB.disCNS.nowrap + BDFDB.disCN.marginbottom8}" style="flex: 1 1 auto;"><h3 class="${BDFDB.disCNS.titledefault + BDFDB.disCNS.title + BDFDB.disCNS.marginreset + BDFDB.disCNS.weightmedium + BDFDB.disCNS.size16 + BDFDB.disCNS.height24 + BDFDB.disCN.flexchild}" style="flex: 1 1 auto;">${this.defaults.settings[key].description}</h3><div class="${BDFDB.disCNS.flexchild + BDFDB.disCNS.switchenabled + BDFDB.disCNS.switch + BDFDB.disCNS.switchvalue + BDFDB.disCNS.switchsizedefault + BDFDB.disCNS.switchsize + BDFDB.disCN.switchthemedefault}" style="flex: 0 0 auto;"><input type="checkbox" value="settings ${key}" class="${BDFDB.disCNS.switchinnerenabled + BDFDB.disCN.switchinner} settings-switch"${settings[key] ? " checked" : ""}></div></div>`;
settingshtml += `<div class="${BDFDB.disCNS.flex + BDFDB.disCNS.flex2 + BDFDB.disCNS.horizontal + BDFDB.disCNS.horizontal2 + BDFDB.disCNS.directionrow + BDFDB.disCNS.justifystart + BDFDB.disCNS.aligncenter + BDFDB.disCNS.nowrap + BDFDB.disCN.marginbottom8}" style="flex: 1 1 auto;"><h3 class="${BDFDB.disCNS.titledefault + BDFDB.disCNS.title + BDFDB.disCNS.marginreset + BDFDB.disCNS.weightmedium + BDFDB.disCNS.size16 + BDFDB.disCNS.height24 + BDFDB.disCN.flexchild}" style="flex: 1 1 auto;">${this.defaults.settings[key].description}</h3><div class="${BDFDB.disCNS.flexchild + BDFDB.disCNS.switchenabled + BDFDB.disCNS.switch + BDFDB.disCNS.switchvalue + BDFDB.disCNS.switchsizedefault + BDFDB.disCNS.switchsize + BDFDB.disCN.switchthemedefault}" style="flex: 0 0 auto;"><input type="checkbox" value="settings ${key}" class="${BDFDB.disCNS.switchinnerenabled + BDFDB.disCN.switchinner} settings-switch"${settings[key] ? " checked" : ""}></div></div>`;
}
settingshtml += `</div>`;
settingshtml += `</div></div>`;
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;
}
@ -95,6 +128,12 @@ class ReadAllNotificationsButton {
// begin of own functions
changeLanguageStrings () {
this.RANcontextMenuMarkup = this.RANcontextMenuMarkup.replace("REPLACE_context_guilds_text", this.labels.context_guilds_text);
this.RANcontextMenuMarkup = this.RANcontextMenuMarkup.replace("REPLACE_context_mutedguilds_text", this.labels.context_mutedguilds_text);
this.RANcontextMenuMarkup = this.RANcontextMenuMarkup.replace("REPLACE_context_dms_text", this.labels.context_dms_text);
}
processGuilds (instance, wrapper) {
BDFDB.removeEles(".RANbutton-frame");
let guildseparator = wrapper.querySelector(BDFDB.dotCN.guildseparator);
@ -102,7 +141,25 @@ class ReadAllNotificationsButton {
let ranbutton = BDFDB.htmlToElement(this.RANbuttonMarkup);
guildseparator.parentElement.insertBefore(ranbutton, guildseparator);
ranbutton.addEventListener("click", () => {
BDFDB.clearReadNotifications(BDFDB.getData("includeMuted", this, "settings") ? BDFDB.readServerList() : BDFDB.readUnreadServerList());
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(".readguilds-item").addEventListener("click", () => {
BDFDB.removeEles(RANcontextMenu);
BDFDB.markGuildAsRead(BDFDB.readUnreadServerList());
});
RANcontextMenu.querySelector(".readmutedguilds-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");
}
@ -128,5 +185,134 @@ class ReadAllNotificationsButton {
instance.loadMore();
setTimeout(() => {this.clearMentions(instance, wrapper);},3000);
}
}setLabelsByLanguage () {
switch (BDFDB.getDiscordLanguage().id) {
case "hr": //croatian
return {
context_guilds_text: "Poslužitelji",
context_mutedguilds_text: "Prigušeni Poslužitelji",
context_dms_text: "Prikvacene Izravne"
};
case "da": //danish
return {
context_guilds_text: "Servere",
context_mutedguilds_text: "Dæmpede Servere",
context_dms_text: "Privat Beskeder"
};
case "de": //german
return {
context_guilds_text: "Server",
context_mutedguilds_text: "Stummgeschaltete Server",
context_dms_text: "Direktnachrichten"
};
case "es": //spanish
return {
context_guilds_text: "Servidores",
context_mutedguilds_text: "Servidores silenciados",
context_dms_text: "Mensajes directos"
};
case "fr": //french
return {
context_guilds_text: "Serveurs",
context_mutedguilds_text: "Serveurs en sourdine",
context_dms_text: "Messages prives"
};
case "it": //italian
return {
context_guilds_text: "Server",
context_mutedguilds_text: "Server disattivati",
context_dms_text: "Messaggi diretti"
};
case "nl": //dutch
return {
context_guilds_text: "Servers",
context_mutedguilds_text: "Gedempte Servers",
context_dms_text: "Persoonluke Berichten"
};
case "no": //norwegian
return {
context_guilds_text: "Servere",
context_mutedguilds_text: "Dempet Servere",
context_dms_text: "Direktemeldinger"
};
case "pl": //polish
return {
context_guilds_text: "Serwery",
context_mutedguilds_text: "Wyciszone Serwery",
context_dms_text: "Prywatne Wiadomosci"
};
case "pt-BR": //portuguese (brazil)
return {
context_guilds_text: "Servidores",
context_mutedguilds_text: "Servidores Silenciosos",
context_dms_text: "Mensagens Diretas"
};
case "fi": //finnish
return {
context_guilds_text: "Palvelimet",
context_mutedguilds_text: "Mykistetyt Palvelimet",
context_dms_text: "Yksityisviestit"
};
case "sv": //swedish
return {
context_guilds_text: "Servrar",
context_mutedguilds_text: "Dämpade Servrar",
context_dms_text: "Direktmeddelanden"
};
case "tr": //turkish
return {
context_guilds_text: "Sunucular",
context_mutedguilds_text: "Sessiz Sunucular",
context_dms_text: "Direkt Mesajlar"
};
case "cs": //czech
return {
context_guilds_text: "Servery",
context_mutedguilds_text: "Tlumené Servery",
context_dms_text: "Prímá Zpráva"
};
case "bg": //bulgarian
return {
context_guilds_text: "C??????",
context_mutedguilds_text: "?????????? C??????",
context_dms_text: "???????? C????????"
};
case "ru": //russian
return {
context_guilds_text: "C??????",
context_mutedguilds_text: "O?????????? C??????",
context_dms_text: "?????? ?????????"
};
case "uk": //ukrainian
return {
context_guilds_text: "C??????",
context_mutedguilds_text: "?????????? C??????",
context_dms_text: "???????? ????????????"
};
case "ja": //japanese
return {
context_guilds_text: "????",
context_mutedguilds_text: "????????",
context_dms_text: "??????????"
};
case "zh-TW": //chinese (traditional)
return {
context_guilds_text: "???",
context_mutedguilds_text: "?????",
context_dms_text: "????"
};
case "ko": //korean
return {
context_guilds_text: "??",
context_mutedguilds_text: "??? ? ??",
context_dms_text: "?? ???"
};
default: //default: english
return {
context_guilds_text: "Servers",
context_mutedguilds_text: "Muted Servers",
context_dms_text: "Direct Messages"
};
}
}
}