2020-10-20 23:25:34 +02:00
/ * *
* @ name CreationDate
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.4 . 6
2021-03-05 13:26:41 +01:00
* @ description Displays the Creation Date of an Account in the UserPopout and UserModal
2020-10-20 23:25:34 +02:00
* @ invite Jx3TjNS
2020-11-19 16:45:36 +01:00
* @ 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/CreationDate/
2021-03-10 09:17:37 +01:00
* @ updateUrl https : //mwittrien.github.io/BetterDiscordAddons/Plugins/CreationDate/CreationDate.plugin.js
2020-10-20 23:25:34 +02:00
* /
2018-10-11 10:21:26 +02: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" : "CreationDate" ,
"author" : "DevilBro" ,
2021-06-25 10:14:18 +02:00
"version" : "1.4.6" ,
2021-03-04 11:48:11 +01:00
"description" : "Displays the Creation Date of an Account 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
}
2018-10-11 10:21:26 +02:00
}
2020-09-19 20:49:33 +02:00
} ;
2020-11-13 19:47:44 +01:00
2022-02-05 21:14:17 +01:00
return ! 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 ;
}
2021-03-15 13:28:17 +01:00
} : ( ( [ Plugin , BDFDB ] ) => {
2020-10-09 21:09:35 +02:00
return class CreationDate extends Plugin {
2021-01-06 12:38:36 +01:00
onLoad ( ) {
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 : {
creationDate : { value : { } , description : "Creation Date" } ,
2020-09-19 20:49:33 +02:00
}
} ;
this . patchedModules = {
after : {
2021-06-25 10:14:18 +02:00
UserPopoutInfo : "UserPopoutInfo" ,
2021-06-08 23:14:34 +02:00
UserProfileModalHeader : "default"
2020-09-19 20:49:33 +02:00
}
} ;
}
2021-01-06 12:38:36 +01:00
onStart ( ) {
2021-03-15 13:28:17 +01:00
BDFDB . PatchUtils . forceAllUpdates ( this ) ;
2020-05-26 10:13:46 +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-07-11 23:28:30 +02: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 . created _at . 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 . created _at . split ( "{{time}}" ) [ 0 ] || "" ) . trim ( ) ,
suffix : _ => ( this . settings . general . displayText && this . labels . created _at . 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-05-26 10:13:46 +02:00
}
2019-02-22 21:39:10 +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-05-26 10:13:46 +02:00
}
2021-05-21 16:12:36 +02:00
2021-06-03 16:27:44 +02:00
processUserPopoutInfo ( e ) {
2021-05-21 16:12:36 +02:00
if ( 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 ( children , index + 1 , e . instance . props . user ) ;
2020-09-19 20:49:33 +02:00
}
2019-02-22 21:39:10 +01:00
}
2020-09-19 20:49:33 +02:00
2021-06-08 23:14:34 +02:00
processUserProfileModalHeader ( e ) {
if ( 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 ( children , index + 1 , e . instance . props . user ) ;
2020-05-26 10:13:46 +02:00
}
}
2020-09-19 20:49:33 +02:00
injectDate ( children , index , user ) {
2021-03-15 13:28:17 +01:00
let timestamp = BDFDB . LibraryComponents . DateInput . format ( this . settings . dates . creationDate , user . createdAt ) ;
2020-09-19 20:49:33 +02:00
children . splice ( index , 0 , BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TextScroller , {
className : BDFDB . disCNS . _creationdatedate + BDFDB . disCNS . userinfodate + BDFDB . disCN . textrow ,
2021-03-15 13:28:17 +01:00
children : this . settings . general . displayText ? this . labels . created _at . replace ( "{{time}}" , timestamp ) : timestamp
2020-09-19 20:49:33 +02:00
} ) ) ;
}
2019-01-26 22:45: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
return {
created _at : "Създадено на {{time}}"
} ;
2021-07-05 18:29:55 +02:00
case "cs" : // Czech
return {
created _at : "Vytvořeno {{time}}"
} ;
2020-12-21 19:56:36 +01:00
case "da" : // Danish
return {
created _at : "Oprettet den {{time}}"
} ;
case "de" : // German
return {
created _at : "Erstellt am {{time}}"
} ;
case "el" : // Greek
return {
created _at : "Δημιουργήθηκε στις {{time}}"
} ;
case "es" : // Spanish
return {
created _at : "Creado el {{time}}"
} ;
case "fi" : // Finnish
return {
created _at : "Luotu {{time}}"
} ;
case "fr" : // French
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
created _at : "Créé le {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2021-07-05 18:29:55 +02:00
case "hi" : // Hindi
return {
created _at : "{{time}} को बनाया गया"
} ;
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
created _at : "Izrađeno {{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
created _at : "Létrehozva: {{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
created _at : "Creato 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
created _at : "{{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
created _at : "{{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
created _at : "Sukurta {{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
created _at : "Gemaakt 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
created _at : "Opprettet {{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
created _at : "Utworzono {{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
created _at : "Criado 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
created _at : "Creat la {{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
created _at : "Создано {{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
created _at : "Skapad {{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
created _at : "สร้างเมื่อ {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "tr" : // Turkish
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
created _at : "{{time}} tarihinde oluşturuldu"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "uk" : // Ukrainian
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
created _at : "Створено {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
case "vi" : // Vietnamese
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
created _at : "Được tạo vào {{time}}"
2020-09-19 20:49:33 +02:00
} ;
2021-01-15 17:54:22 +01:00
case "zh-CN" : // Chinese (China)
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
created _at : "创建于{{time}}"
2020-09-19 20:49:33 +02:00
} ;
2021-01-15 17:54:22 +01:00
case "zh-TW" : // Chinese (Taiwan)
2020-09-19 20:49:33 +02:00
return {
2021-12-15 21:44:54 +01:00
created _at : "建立於{{time}}"
2020-09-19 20:49:33 +02:00
} ;
2020-12-21 19:56:36 +01:00
default : // English
2020-09-19 20:49:33 +02:00
return {
2020-12-21 19:56:36 +01:00
created _at : "Created 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
} ) ( ) ;