2020-10-20 23:25:34 +02:00
/ * *
* @ name LastMessageDate
2021-03-05 13:26:41 +01:00
* @ author DevilBro
2020-10-20 23:25:34 +02:00
* @ authorId 278543574059057154
2021-06-25 10:14:18 +02:00
* @ version 1.2 . 7
2021-03-05 13:26:41 +01:00
* @ description Displays the Last Message Date of a Member for the current Server / DM in the UserPopout and UserModal
2020-10-20 23:25:34 +02:00
* @ invite Jx3TjNS
* @ donate https : //www.paypal.me/MircoWittrien
* @ patreon https : //www.patreon.com/MircoWittrien
2021-03-09 15:10:55 +01:00
* @ website https : //mwittrien.github.io/
* @ source https : //github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/LastMessageDate/
2021-03-10 09:17:37 +01:00
* @ updateUrl https : //mwittrien.github.io/BetterDiscordAddons/Plugins/LastMessageDate/LastMessageDate.plugin.js
2020-10-20 23:25:34 +02:00
* /
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
module . exports = ( _ => {
2020-10-09 21:09:35 +02:00
const config = {
2020-09-19 20:49:33 +02:00
"info" : {
"name" : "LastMessageDate" ,
"author" : "DevilBro" ,
2021-06-25 10:14:18 +02:00
"version" : "1.2.7" ,
2021-03-04 12:15:46 +01:00
"description" : "Displays the Last Message Date of a Member for the current Server/DM in the UserPopout and UserModal"
2020-10-14 21:21:08 +02:00
} ,
"changeLog" : {
2021-06-08 23:14:34 +02:00
"fixed" : {
2021-06-25 10:14:18 +02:00
"User Popout" : "Fixing Stuff for the User Popout Update, thanks Discord"
2020-10-14 21:21:08 +02:00
}
2020-04-14 18:27:51 +02:00
}
2020-09-19 20:49:33 +02:00
} ;
2020-11-13 19:47:44 +01: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-01-06 12:38:36 +01:00
getName ( ) { return config . info . name ; }
getAuthor ( ) { return config . info . author ; }
getVersion ( ) { return config . info . version ; }
2021-02-01 17:13:13 +01:00
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 ) => {
2021-03-05 13:14:18 +01:00
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" } ) ) ;
2021-03-06 14:59:48 +01:00
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" ) ;
2021-02-01 17:13:13 +01:00
} ) ;
}
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
load ( ) {
2020-11-19 16:51:14 +01:00
if ( ! window . BDFDB _Global || ! Array . isArray ( window . BDFDB _Global . pluginQueue ) ) window . BDFDB _Global = Object . assign ( { } , window . BDFDB _Global , { pluginQueue : [ ] } ) ;
2020-09-19 20:49:33 +02:00
if ( ! window . BDFDB _Global . downloadModal ) {
window . BDFDB _Global . downloadModal = true ;
2021-01-14 16:14:44 +01:00
BdApi . showConfirmationModal ( "Library Missing" , ` The Library Plugin needed for ${ config . info . name } is missing. Please click "Download Now" to install it. ` , {
2020-09-19 20:49:33 +02:00
confirmText : "Download Now" ,
cancelText : "Cancel" ,
onCancel : _ => { delete window . BDFDB _Global . downloadModal ; } ,
2020-09-20 08:15:13 +02:00
onConfirm : _ => {
delete window . BDFDB _Global . downloadModal ;
2021-02-01 17:13:13 +01:00
this . downloadLibrary ( ) ;
2020-09-20 08:15:13 +02:00
}
2020-09-19 20:49:33 +02:00
} ) ;
}
if ( ! window . BDFDB _Global . pluginQueue . includes ( config . info . name ) ) window . BDFDB _Global . pluginQueue . push ( config . info . name ) ;
2020-10-09 21:09:35 +02:00
}
2021-01-06 12:38:36 +01:00
start ( ) { this . load ( ) ; }
stop ( ) { }
getSettingsPanel ( ) {
2020-11-28 23:12:09 +01:00
let template = document . createElement ( "template" ) ;
2021-01-14 16:14:44 +01:00
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> ` ;
2021-02-01 17:13:13 +01:00
template . content . firstElementChild . querySelector ( "a" ) . addEventListener ( "click" , this . downloadLibrary ) ;
2020-11-28 23:12:09 +01:00
return template . content . firstElementChild ;
}
2020-10-09 21:09:35 +02:00
} : ( ( [ Plugin , BDFDB ] ) => {
2020-09-19 20:49:33 +02:00
var loadedUsers , requestedUsers , languages ;
2021-06-08 23:14:34 +02:00
var currentPopout , currentProfile ;
2020-09-19 20:49:33 +02:00
2020-10-09 21:09:35 +02:00
return class LastMessageDate extends Plugin {
2021-01-06 12:38:36 +01:00
onLoad ( ) {
2020-09-19 20:49:33 +02:00
loadedUsers = { } ;
requestedUsers = { } ;
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
this . defaults = {
2021-03-15 13:28:17 +01:00
general : {
displayText : { value : true , description : "Display '{{presuffix}}' in the Date" }
2020-09-19 20:49:33 +02:00
} ,
2021-03-15 13:28:17 +01:00
places : {
userPopout : { value : true , description : "User Popouts" } ,
userProfile : { value : true , description : "User Profile Modal" }
2020-09-19 20:49:33 +02:00
} ,
2021-03-15 13:28:17 +01:00
dates : {
lastMessageDate : { value : { } , description : "Last Message Date" } ,
2020-09-19 20:49:33 +02:00
}
} ;
2020-04-14 18:27:51 +02:00
2020-09-19 20:49:33 +02:00
this . patchedModules = {
after : {
2021-06-25 10:14:18 +02:00
AnalyticsContext : "render" ,
UserPopoutInfo : "UserPopoutInfo" ,
2021-06-08 23:14:34 +02:00
UserProfileModalHeader : "default"
2020-09-19 20:49:33 +02:00
}
} ;
2020-04-14 18:27:51 +02:00
}
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
onStart ( ) {
2020-09-11 19:31:36 +02:00
BDFDB . PatchUtils . patch ( this , BDFDB . LibraryModules . DispatchApiUtils , "dirtyDispatch" , { after : e => {
2020-04-14 18:27:51 +02:00
if ( BDFDB . ObjectUtils . is ( e . methodArguments [ 0 ] ) && e . methodArguments [ 0 ] . type == BDFDB . DiscordConstants . ActionTypes . MESSAGE _CREATE && e . methodArguments [ 0 ] . message ) {
let message = e . methodArguments [ 0 ] . message ;
let guildId = message . guild _id || message . channel _id ;
if ( guildId && loadedUsers [ guildId ] && loadedUsers [ guildId ] [ message . author . id ] ) {
loadedUsers [ guildId ] [ message . author . id ] = new Date ( message . timestamp ) ;
}
}
} } ) ;
2019-02-20 10:19:22 +01:00
2021-03-15 13:28:17 +01:00
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
2020-04-14 18:27:51 +02:00
}
2020-09-19 20:49:33 +02:00
2021-01-06 12:38:36 +01:00
onStop ( ) {
2021-03-15 13:28:17 +01:00
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
2020-04-14 18:27:51 +02:00
}
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
getSettingsPanel ( collapseStates = { } ) {
2021-03-15 13:28:17 +01:00
let settingsPanel ;
return settingsPanel = BDFDB . PluginUtils . createSettingsPanel ( this , {
2020-09-19 20:49:33 +02:00
collapseStates : collapseStates ,
2021-03-15 13:28:17 +01:00
children : _ => {
let settingsItems = [ ] ;
settingsItems . push ( Object . keys ( this . defaults . general ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "Switch" ,
plugin : this ,
keys : [ "general" , key ] ,
label : key == "displayText" ? this . defaults . general [ key ] . description . replace ( "{{presuffix}}" , this . labels . last _message . replace ( "{{time}}" , "" ) . trim ( ) ) : this . defaults . general [ key ] . description ,
value : this . settings . general [ key ]
} ) ) ) ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormDivider , {
className : BDFDB . disCN . marginbottom8
} ) ) ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsPanelList , {
title : "Add Date in:" ,
children : Object . keys ( this . defaults . places ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
type : "Switch" ,
plugin : this ,
keys : [ "places" , key ] ,
label : this . defaults . places [ key ] . description ,
value : this . settings . places [ key ]
} ) )
} ) ) ;
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormDivider , {
className : BDFDB . disCN . marginbottom8
} ) ) ;
settingsItems . push ( Object . keys ( this . defaults . dates ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . DateInput , Object . assign ( { } , this . settings . dates [ key ] , {
label : this . defaults . dates [ key ] . description ,
prefix : _ => ( this . settings . general . displayText && this . labels . last _message . split ( "{{time}}" ) [ 0 ] || "" ) . trim ( ) ,
suffix : _ => ( this . settings . general . displayText && this . labels . last _message . split ( "{{time}}" ) [ 1 ] || "" ) . trim ( ) ,
onChange : valueObj => {
this . SettingsUpdated = true ;
this . settings . dates [ key ] = valueObj ;
BDFDB . DataUtils . save ( this . settings . dates , this , "dates" ) ;
}
} ) ) ) ) ;
return settingsItems . flat ( 10 ) ;
}
} ) ;
2020-09-19 20:49:33 +02:00
}
2019-02-20 10:19:22 +01:00
2021-01-06 12:38:36 +01:00
onSettingsClosed ( ) {
2020-09-19 20:49:33 +02:00
if ( this . SettingsUpdated ) {
delete this . SettingsUpdated ;
2021-03-15 13:28:17 +01:00
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
2020-09-19 20:49:33 +02:00
}
}
2020-07-11 23:28:30 +02:00
2021-06-25 10:14:18 +02:00
processAnalyticsContext ( e ) {
if ( e . instance . props . section == BDFDB . DiscordConstants . AnalyticsSections . PROFILE _MODAL ) currentProfile = e . instance ;
if ( e . instance . props . section == BDFDB . DiscordConstants . AnalyticsSections . PROFILE _POPOUT ) currentPopout = e . instance ;
2021-05-21 16:12:36 +02:00
}
2021-06-03 16:27:44 +02:00
processUserPopoutInfo ( e ) {
2021-06-08 23:14:34 +02:00
if ( currentPopout && e . instance . props . user && this . settings . places . userPopout ) {
2021-06-25 10:14:18 +02:00
let [ children , index ] = BDFDB . ReactUtils . findParent ( e . returnvalue , { name : [ "DiscordTag" , "ColoredFluxTag" ] } ) ;
if ( index > - 1 ) this . injectDate ( currentPopout , children , index + 1 , e . instance . props . user , e . instance . props . guildId ) ;
2020-09-19 20:49:33 +02:00
}
2020-04-14 18:27:51 +02:00
}
2019-02-22 21:39:10 +01:00
2021-06-08 23:14:34 +02:00
processUserProfileModalHeader ( e ) {
if ( currentProfile && e . instance . props . user && this . settings . places . userProfile ) {
let [ children , index ] = BDFDB . ReactUtils . findParent ( e . returnvalue , { name : [ "DiscordTag" , "ColoredFluxTag" ] } ) ;
2021-06-10 21:05:11 +02:00
if ( index > - 1 ) this . injectDate ( currentProfile , children , index + 1 , e . instance . props . user , currentProfile . props . guildId ) ;
2020-09-19 20:49:33 +02:00
}
2020-04-14 18:27:51 +02:00
}
2019-02-20 10:19:22 +01:00
2020-09-19 20:49:33 +02:00
injectDate ( instance , children , index , user , guildId ) {
if ( ! guildId ) guildId = BDFDB . LibraryModules . LastGuildStore . getGuildId ( ) ;
if ( ! BDFDB . ArrayUtils . is ( children ) || ! user || user . discriminator == "0000" ) return ;
let isGuild = guildId && guildId != BDFDB . DiscordConstants . ME ;
guildId = isGuild ? guildId : BDFDB . LibraryModules . LastChannelStore . getChannelId ( ) ;
if ( ! guildId ) return ;
if ( ! loadedUsers [ guildId ] ) loadedUsers [ guildId ] = { } ;
if ( ! requestedUsers [ guildId ] ) requestedUsers [ guildId ] = { } ;
if ( ! BDFDB . ArrayUtils . is ( requestedUsers [ guildId ] [ user . id ] ) ) {
requestedUsers [ guildId ] [ user . id ] = [ instance ] ;
2021-01-10 15:47:51 +01:00
BDFDB . LibraryModules . APIUtils . get ( {
url : isGuild ? BDFDB . DiscordConstants . Endpoints . SEARCH _GUILD ( guildId ) : BDFDB . DiscordConstants . Endpoints . SEARCH _CHANNEL ( guildId ) ,
query : BDFDB . LibraryModules . APIEncodeUtils . stringify ( { author _id : user . id } )
} ) . then ( result => {
2020-09-19 20:49:33 +02:00
if ( typeof result . body . retry _after != "number" ) {
if ( result . body . messages && Array . isArray ( result . body . messages [ 0 ] ) ) {
for ( let message of result . body . messages [ 0 ] ) if ( message . hit && message . author . id == user . id ) {
loadedUsers [ guildId ] [ user . id ] = new Date ( message . timestamp ) ;
}
2020-04-14 18:27:51 +02:00
}
2020-09-19 20:49:33 +02:00
else loadedUsers [ guildId ] [ user . id ] = null ;
2021-03-15 13:28:17 +01:00
for ( let queuedInstance of requestedUsers [ guildId ] [ user . id ] ) BDFDB . ReactUtils . forceUpdate ( queuedInstance ) ;
2019-12-11 11:35:46 +01:00
}
2020-09-19 20:49:33 +02:00
else {
delete requestedUsers [ guildId ] [ user . id ] ;
2021-03-15 13:28:17 +01:00
BDFDB . TimeUtils . timeout ( _ => this . injectDate ( instance , children , index , user ) , result . body . retry _after + 500 ) ;
2020-09-19 20:49:33 +02:00
}
} ) ;
}
else if ( loadedUsers [ guildId ] [ user . id ] === undefined ) requestedUsers [ guildId ] [ user . id ] . push ( instance ) ;
else {
2021-03-15 13:28:17 +01:00
let timestamp = loadedUsers [ guildId ] [ user . id ] ? BDFDB . LibraryComponents . DateInput . format ( this . settings . dates . lastMessageDate , loadedUsers [ guildId ] [ user . id ] ) : "---" ;
2020-09-19 20:49:33 +02:00
children . splice ( index , 0 , BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TextScroller , {
className : BDFDB . disCNS . _lastmessagedatedate + BDFDB . disCNS . userinfodate + BDFDB . disCN . textrow ,
2021-03-15 13:28:17 +01:00
children : this . settings . general . displayText ? this . labels . last _message . replace ( "{{time}}" , timestamp ) : timestamp
2020-09-19 20:49:33 +02:00
} ) ) ;
}
2019-02-22 21:39:10 +01:00
}
2021-03-10 11:38:19 +01:00
2021-01-06 12:38:36 +01:00
setLabelsByLanguage ( ) {
2020-09-19 20:49:33 +02:00
switch ( BDFDB . LanguageUtils . getLanguage ( ) . id ) {
2020-12-21 19:56:36 +01:00
case "bg" : // Bulgarian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Последно съобщение на {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "da" : // Danish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Sidste besked den {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "de" : // German
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Letzte Nachricht am {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "el" : // Greek
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Τελευταίο μήνυμα στις {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "es" : // Spanish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Último mensaje el {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "fi" : // Finnish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Viimeinen viesti {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "fr" : // French
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Dernier message le {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "hr" : // Croatian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Posljednja poruka {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "hu" : // Hungarian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Utolsó üzenet: {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "it" : // Italian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Ultimo messaggio il {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "ja" : // Japanese
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "{{time}}の最後のメッセージ"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "ko" : // Korean
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "{{time}}의 마지막 메시지"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "lt" : // Lithuanian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Paskutinis pranešimas {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "nl" : // Dutch
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Laatste bericht op {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "no" : // Norwegian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Siste melding {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "pl" : // Polish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Ostatnia wiadomość {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "pt-BR" : // Portuguese (Brazil)
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Última mensagem em {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "ro" : // Romanian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Ultimul mesaj pe {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "ru" : // Russian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Последнее сообщение в {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "sv" : // Swedish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "Senaste meddelandet {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "th" : // Thai
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
last _message : "ข้อความล่าสุดเมื่อ {{time}}"
} ;
case "tr" : // Turkish
return {
last _message : "{{time}} tarihindeki son mesaj"
} ;
case "uk" : // Ukrainian
return {
last _message : "Останнє повідомлення {{time}}"
} ;
case "vi" : // Vietnamese
return {
last _message : "Tin nhắn cuối cùng vào {{time}}"
} ;
2021-01-15 17:54:22 +01:00
case "zh-CN" : // Chinese (China)
2020-12-21 19:56:36 +01:00
return {
last _message : "{{time}}上的最后一条消息"
} ;
2021-01-15 17:54:22 +01:00
case "zh-TW" : // Chinese (Taiwan)
2020-12-21 19:56:36 +01:00
return {
last _message : "{{time}}上的最後一條消息"
} ;
default : // English
return {
2021-05-29 10:56:59 +02:00
last _message : "Last Message on {{time}}"
2020-09-19 20:49:33 +02:00
} ;
}
}
} ;
2020-10-09 21:09:35 +02:00
} ) ( window . BDFDB _Global . PluginUtils . buildPlugin ( config ) ) ;
2020-09-19 20:49:33 +02:00
} ) ( ) ;