2021-05-31 14:52:40 +02:00
/ * *
* @ name ShowConnections
* @ author DevilBro
* @ authorId 278543574059057154
2021-07-05 21:50:35 +02:00
* @ version 1.0 . 6
2021-05-31 14:52:40 +02:00
* @ description Shows the connected Accounts of a User in the UserPopout
* @ 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/ShowConnections/
* @ updateUrl https : //mwittrien.github.io/BetterDiscordAddons/Plugins/ShowConnections/ShowConnections.plugin.js
* /
module . exports = ( _ => {
const config = {
"info" : {
"name" : "ShowConnections" ,
"author" : "DevilBro" ,
2021-07-05 21:50:35 +02:00
"version" : "1.0.6" ,
2021-05-31 14:52:40 +02:00
"description" : "Shows the connected Accounts of a User in the UserPopout"
2021-05-31 22:16:42 +02:00
} ,
"changeLog" : {
2021-07-05 21:50:35 +02:00
"improved" : {
"Performance" : ""
2021-05-31 22:16:42 +02:00
}
2021-05-31 14:52:40 +02:00
}
} ;
2021-06-15 13:42:02 +02:00
return ( window . Lightcord || window . LightCord ) ? class {
getName ( ) { return config . info . name ; }
getAuthor ( ) { return config . info . author ; }
getVersion ( ) { return config . info . version ; }
getDescription ( ) { return "Do not use LightCord!" ; }
load ( ) { BdApi . alert ( "Attention!" , "By using LightCord you are risking your Discord Account, due to using a 3rd Party Client. Switch to an official Discord Client (https://discord.com/) with the proper BD Injection (https://betterdiscord.app/)" ) ; }
start ( ) { }
stop ( ) { }
} : ! window . BDFDB _Global || ( ! window . BDFDB _Global . loaded && ! window . BDFDB _Global . started ) ? class {
2021-05-31 14:52:40 +02:00
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. \n Please 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 ] ) => {
2021-07-05 21:50:35 +02:00
var _this ;
var loadedUsers , requestedUsers , queuedInstances ;
2021-05-31 14:52:40 +02:00
return class ShowConnections extends Plugin {
onLoad ( ) {
2021-07-05 21:50:35 +02:00
_this = this ;
loadedUsers = { } ;
requestedUsers = { } ;
queuedInstances = { } ;
2021-05-31 14:52:40 +02:00
this . patchedModules = {
after : {
2021-06-25 10:56:53 +02:00
UserPopoutBody : "default"
2021-05-31 14:52:40 +02:00
}
} ;
2021-05-31 22:16:42 +02:00
this . defaults = {
general : {
2021-06-01 13:57:31 +02:00
useColoredIcons : { value : true , description : "Uses colored Version of the Icons" } ,
useColoredTooltips : { value : true , description : "Uses colored Version of the Tooltips" } ,
2021-06-01 13:34:03 +02:00
placeAtTop : { value : false , description : "Places the Connections at the Top of the UserPopout Body" } ,
2021-06-01 13:57:31 +02:00
showVerifiedBadge : { value : true , description : "Shows the Badge for verified Connections" } ,
openWebpage : { value : true , description : "Opens the Connection Page when clicking the Icon" }
2021-05-31 22:16:42 +02:00
} ,
connections : { }
} ;
2021-06-01 09:34:05 +02:00
for ( let connection of BDFDB . LibraryModules . ConnectionProviderUtils . filter ( n => n ) ) this . defaults . connections [ connection . type ] = Object . assign ( { } , connection , { value : true } ) ;
2021-05-31 22:16:42 +02:00
2021-05-31 14:52:40 +02:00
this . css = `
$ { BDFDB . dotCN . _showconnectionsconnections } {
display : flex ;
flex - wrap : wrap ;
margin - bottom : 6 px ;
}
$ { BDFDB . dotCN . _showconnectionsconnection } {
position : relative ;
width : 28 px ;
height : 28 px ;
margin : 0 10 px 10 px 0 ;
}
$ { BDFDB . dotCN . _showconnectionsicon } {
margin : - 15 % 0 0 - 15 % ;
width : 130 % ;
height : 130 % ;
}
$ { BDFDB . dotCN . _showconnectionsverifiedbadge } {
position : absolute ;
2021-05-31 22:16:42 +02:00
bottom : - 10 % ;
right : - 10 % ;
2021-05-31 14:52:40 +02:00
}
` ;
}
onStart ( ) {
BDFDB . PatchUtils . patch ( this , BDFDB . LibraryModules . DispatchApiUtils , "dispatch" , { after : e => {
if ( BDFDB . ObjectUtils . is ( e . methodArguments [ 0 ] ) && e . methodArguments [ 0 ] . type == BDFDB . DiscordConstants . ActionTypes . USER _PROFILE _FETCH _SUCCESS && e . methodArguments [ 0 ] . user && e . methodArguments [ 0 ] . connected _accounts ) {
2021-07-05 21:50:35 +02:00
const user = e . methodArguments [ 0 ] . user ;
delete requestedUsers [ user . id ] ;
loadedUsers [ user . id ] = e . methodArguments [ 0 ] . connected _accounts ;
BDFDB . ReactUtils . forceUpdate ( queuedInstances [ user . id ] ) ;
delete queuedInstances [ user . id ] ;
2021-05-31 14:52:40 +02:00
}
} } ) ;
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
}
onStop ( ) {
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
}
2021-05-31 22:16:42 +02:00
getSettingsPanel ( collapseStates = { } ) {
let settingsPanel ;
return settingsPanel = BDFDB . PluginUtils . createSettingsPanel ( this , {
collapseStates : collapseStates ,
children : _ => {
let settingsItems = [ ] ;
for ( let key in this . defaults . general ) settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "Switch" ,
plugin : this ,
keys : [ "general" , key ] ,
label : this . defaults . general [ key ] . description ,
value : this . settings . general [ key ]
} ) ) ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsPanelList , {
title : "Display Connections:" ,
children : Object . keys ( this . defaults . connections ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "Switch" ,
plugin : this ,
keys : [ "connections" , key ] ,
label : this . defaults . connections [ key ] . name ,
value : this . settings . connections [ key ] ,
labelChildren : [
BDFDB . ReactUtils . createElement ( "img" , { style : { width : 28 , height : 28 } , src : this . defaults . connections [ key ] . icon . color } ) ,
BDFDB . ReactUtils . createElement ( "img" , { style : { width : 28 , height : 28 } , src : this . defaults . connections [ key ] . icon . white } )
]
} ) )
} ) ) ;
return settingsItems ;
}
} ) ;
}
2021-06-25 10:56:53 +02:00
processUserPopoutBody ( e ) {
2021-07-05 21:50:35 +02:00
if ( ! e . instance . props . user || e . instance . props . user . isNonUserBot ( ) ) return ;
if ( ! loadedUsers [ e . instance . props . user . id ] && ! requestedUsers [ e . instance . props . user . id ] ) {
requestedUsers [ e . instance . props . user . id ] = true ;
queuedInstances [ e . instance . props . user . id ] = [ ] . concat ( queuedInstances [ e . instance . props . user . id ] ) . filter ( n => n ) ;
BDFDB . LibraryModules . UserProfileUtils . fetchProfile ( e . instance . props . user . id ) ;
}
let bodyInner = BDFDB . ReactUtils . findChild ( e . returnvalue , { props : [ [ "className" , BDFDB . disCN . userpopoutbodyinnerwrapper ] ] } ) ;
if ( bodyInner ) bodyInner . props . children . splice ( this . settings . general . placeAtTop ? 1 : bodyInner . props . children . length - 2 , 0 , BDFDB . ReactUtils . createElement ( class extends BDFDB . ReactUtils . Component {
render ( ) {
if ( ! loadedUsers [ e . instance . props . user . id ] ) {
if ( queuedInstances [ e . instance . props . user . id ] . indexOf ( this ) == - 1 ) queuedInstances [ e . instance . props . user . id ] . push ( this ) ;
return null ;
}
else {
let connections = loadedUsers [ e . instance . props . user . id ] . filter ( c => _this . settings . connections [ c . type ] ) ;
if ( ! connections . length ) return null ;
let isLightTheme = BDFDB . DiscordUtils . getTheme ( ) == BDFDB . disCN . themelight ;
return [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Header , {
className : BDFDB . disCN . userpopoutbodytitle ,
size : BDFDB . LibraryComponents . Header . Sizes . SIZE _12 ,
muted : true ,
uppercase : true ,
children : BDFDB . LanguageUtils . LanguageStrings . CONNECTIONS
} ) ,
BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCN . _showconnectionsconnections ,
children : connections . map ( c => {
let provider = BDFDB . LibraryModules . ConnectionProviderUtils . get ( c . type ) ;
let url = _this . settings . general . openWebpage && provider . getPlatformUserUrl && provider . getPlatformUserUrl ( c ) ;
return BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TooltipContainer , {
text : ` ${ provider . name } : ${ c . name } ` ,
tooltipConfig : { backgroundColor : _this . settings . general . useColoredTooltips && BDFDB . ColorUtils . change ( provider . color , - 0.3 ) , color : ! _this . settings . general . useColoredTooltips || ! provider . color ? "black" : null } ,
children : BDFDB . ReactUtils . createElement ( ! url ? "div" : BDFDB . LibraryComponents . Anchor , Object . assign ( ! url ? { } : {
href : url
} , {
className : BDFDB . DOMUtils . formatClassName ( BDFDB . disCN . _showconnectionsconnection , url && BDFDB . disCN . cursorpointer ) ,
children : [
BDFDB . ReactUtils . createElement ( "img" , {
className : BDFDB . disCN . _showconnectionsicon ,
alt : BDFDB . LanguageUtils . LanguageStringsFormat ( "IMG_ALT_LOGO" , provider . name ) ,
src : provider . icon [ _this . settings . general . useColoredIcons ? "color" : "white" ]
} ) ,
_this . settings . general . showVerifiedBadge && c . verified && BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TooltipContainer , {
text : BDFDB . LanguageUtils . LanguageStrings . CONNECTION _VERIFIED ,
tooltipConfig : { color : "brand" , type : "bottom" } ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FlowerStar , {
className : BDFDB . disCN . _showconnectionsverifiedbadge ,
size : "50%" ,
color : isLightTheme ? BDFDB . DiscordConstants . Colors . STATUS _GREY _200 : BDFDB . DiscordConstants . Colors . PRIMARY _DARK ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SvgIcon , {
name : BDFDB . LibraryComponents . SvgIcon . Names . CHECKMARK ,
width : "70%" ,
height : "70%" ,
color : isLightTheme ? BDFDB . DiscordConstants . Colors . STATUS _GREY _500 : BDFDB . DiscordConstants . Colors . WHITE
} )
2021-05-31 14:52:40 +02:00
} )
2021-06-25 10:56:53 +02:00
} )
2021-07-05 21:50:35 +02:00
]
} ) )
} ) ;
} )
2021-06-25 10:56:53 +02:00
} )
2021-07-05 21:50:35 +02:00
] ;
}
}
} ) ) ;
2021-05-31 14:52:40 +02:00
}
} ;
} ) ( window . BDFDB _Global . PluginUtils . buildPlugin ( config ) ) ;
2021-05-31 23:58:10 +02:00
} ) ( ) ;