//META{"name":"BadgesEverywhere","website":"https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/BadgesEverywhere","source":"https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/BadgesEverywhere/BadgesEverywhere.plugin.js"}*// class BadgesEverywhere { getName () {return "BadgesEverywhere";} getVersion () {return "1.2.6";} getAuthor () {return "DevilBro";} getDescription () {return "Displays Badges (Nitro, HypeSquad, etc...) in the chat/memberlist/userpopout. Thanks for Zerebos' help.";} initConstructor () { this.changelog = { "improved":[["Nitro","Nitro badge now shows the subscription date instead of the name (can be turned off)"]] }; this.patchModules = { "NameTag":"componentDidMount", "MessageUsername":"componentDidMount", "StandardSidebarView":"componentWillUnmount" }; this.css = ` .BE-badge { background-size: contain; background-position: center; background-repeat: no-repeat; display: inline-block; height: 17px !important; margin: 0 2px !important; } .BE-badge.BE-badge-chat { margin-bottom: -3px !important; } .BE-badge.BE-badge-popout { margin-bottom: -2px !important; } .BE-badge.BE-badge:first-of-type { margin-left: 5px !important; } .BE-badge.BE-badge:last-of-type { margin-right: 5px !important; } .BE-badge.BE-badge-Staff {width:17px !important; min-width:17px !important;} .BE-badge.BE-badge-Partner {width:22px !important; min-width:22px !important;} .BE-badge.BE-badge-HypeSquad {width:17px !important; min-width:17px !important;} .BE-badge.BE-badge-BugHunter {width:17px !important; min-width:17px !important;} .BE-badge.BE-badge-HypeSquadBravery {width:17px !important; min-width:17px !important;} .BE-badge.BE-badge-HypeSquadBrilliance {width:17px !important; min-width:17px !important;} .BE-badge.BE-badge-HypeSquadBalance {width:17px !important; min-width:17px !important;} .BE-badge.BE-badge-EarlySupporter {width:24px !important; min-width:24px !important;} .BE-badge.BE-badge-Nitro {width:21px !important; min-width:21px !important;} .BE-badge.BE-badge-settings {width:30px !important; min-width:30px !important;}`; this.requestedusers = {}; this.loadedusers = {}; this.defaults = { settings: { showInPopout: {value:true, description:"Show Badge in User Popout."}, showInChat: {value:true, description:"Show Badge in Chat Window."}, showInMemberList: {value:true, description:"Show Badge in Member List."}, useColoredVersion: {value:true, description:"Use colored version of the Badges for Chat and Members."}, showNitroDate: {value:true, description:"Show the subscription date for Nitro Badges"} }, badges: { 1: {value:true, name:"Staff", selector:"profileBadgeStaff"}, 2: {value:true, name:"Partner", selector:"profileBadgePartner"}, 4: {value:true, name:"HypeSquad", selector:"profileBadgeHypesquad"}, 8: {value:true, name:"BugHunter", selector:"profileBadgeBugHunter"}, 16: {value:false, name:"MFASMS", selector:false}, 32: {value:false, name:"PROMODISMISSED", selector:false}, 64: {value:true, name:"HypeSquad Bravery", selector:"profileBadgeHypeSquadOnlineHouse1"}, 128: {value:true, name:"HypeSquad Brilliance", selector:"profileBadgeHypeSquadOnlineHouse2"}, 256: {value:true, name:"HypeSquad Balance", selector:"profileBadgeHypeSquadOnlineHouse3"}, 512: {value:true, name:"Early Supporter", selector:"profileBadgeEarlySupporter"}, 2048: {value:true, name:"Nitro", selector:"profileBadgePremium"} } }; } getSettingsPanel () { if (!global.BDFDB || typeof BDFDB != "object" || !BDFDB.loaded || !this.started) return; var settings = BDFDB.getAllData(this, "settings"); var badges = BDFDB.getAllData(this, "badges"); var settingshtml = `
${this.name}
`; for (let key in settings) { settingshtml += `

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

`; } settingshtml += `

Display Badges:

`; for (let flag in badges) { settingshtml += `

${this.defaults.badges[flag].name}

`; } settingshtml += `
`; let settingspanel = BDFDB.htmlToElement(settingshtml); BDFDB.initElements(settingspanel, this); 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); this.APIModule = BDFDB.WebModules.findByProperties("getAPIBaseURL"); this.DiscordConstants = BDFDB.WebModules.findByProperties("Permissions", "ActivityTypes", "StatusTypes"); this.BadgeClasses = BDFDB.WebModules.findByProperties("profileBadgeStaff","profileBadgePremium"); for (let flag in this.defaults.badges) if (!this.defaults.badges[flag].selector) delete this.defaults.badges[flag]; 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(".BE-badges"); BDFDB.unloadMessage(this); } } // begin of own functions processNameTag (instance, wrapper) { if (!wrapper.classList || !instance || !instance.props) return; else if (BDFDB.containsClass(wrapper, BDFDB.disCN.membernametag) && BDFDB.getData("showInMemberList", this, "settings")) { this.addBadges(instance.props.user, wrapper, "list"); } else if (BDFDB.containsClass(wrapper, BDFDB.disCN.userpopoutheadertag) && BDFDB.getData("showInPopout", this, "settings")) { wrapper = BDFDB.containsClass(wrapper, BDFDB.disCN.userpopoutheadertagwithnickname) && wrapper.previousSibling ? wrapper.previousSibling : wrapper; this.addBadges(instance.props.user, wrapper, "popout"); } } processMessageUsername (instance, wrapper) { let message = BDFDB.getReactValue(instance, "props.message"); if (message) { let username = wrapper.querySelector(BDFDB.dotCN.messageusername); if (username && BDFDB.getData("showInChat", this, "settings")) this.addBadges(message.author, wrapper, "chat"); } } processStandardSidebarView (instance, wrapper) { if (this.SettingsUpdated) { delete this.SettingsUpdated; BDFDB.WebModules.forceAllUpdates(this); } } addBadges (info, wrapper, type) { if (!info || info.bot || !wrapper) return; if (!this.requestedusers[info.id]) { this.requestedusers[info.id] = [[wrapper,type]]; this.APIModule.get(this.DiscordConstants.Endpoints.USER_PROFILE(info.id)).then(result => { let usercopy = Object.assign({},result.body.user); if (result.body.premium_since) usercopy.flags += 2048; usercopy.premium_since = result.body.premium_since; this.loadedusers[info.id] = usercopy; for (let queredobj of this.requestedusers[info.id]) this.addToWrapper(info, queredobj[0], queredobj[1]); }); } else if (!this.loadedusers[info.id]) { this.requestedusers[info.id].push([wrapper,type]); } else { this.addToWrapper(info, wrapper, type); } } addToWrapper (info, wrapper, type) { BDFDB.removeEles(wrapper.querySelectorAll(".BE-badges")); let badges = BDFDB.getAllData(this, "badges"); let settings = BDFDB.getAllData(this, "settings"); let header = BDFDB.getParentEle(BDFDB.dotCN.userpopoutheader, wrapper); let badgewrapper = BDFDB.htmlToElement(``); for (let flag in this.defaults.badges) { if ((this.loadedusers[info.id].flags | flag) == this.loadedusers[info.id].flags && badges[flag]) { let badge = BDFDB.htmlToElement(`
`); badgewrapper.appendChild(badge); badge.addEventListener("mouseenter", () => {BDFDB.createTooltip(flag == 2048 && settings.showNitroDate ? BDFDB.LanguageStringsFormat("PREMIUM_BADGE_TOOLTIP", new Date(this.loadedusers[info.id].premium_since)) : this.defaults.badges[flag].name, badge, {type:"top", style:"white-space: nowrap; max-width: unset"});}); } } if (badgewrapper.firstChild) wrapper.insertBefore(badgewrapper, wrapper.querySelector(".owner-tag,.TRE-tag,svg[name=MobileDevice]")); } }