2020-02-27 08:44:03 +01:00
//META{"name":"ThemeRepo","authorId":"278543574059057154","invite":"Jx3TjNS","donate":"https://www.paypal.me/MircoWittrien","patreon":"https://www.patreon.com/MircoWittrien","website":"https://github.com/mwittrien/BetterDiscordAddons/tree/master/Plugins/ThemeRepo","source":"https://raw.githubusercontent.com/mwittrien/BetterDiscordAddons/master/Plugins/ThemeRepo/ThemeRepo.plugin.js"}*//
2018-10-11 10:21:26 +02:00
2020-02-10 21:31:44 +01:00
var ThemeRepo = ( _ => {
2020-04-15 09:14:05 +02:00
var _this ;
2020-02-10 21:31:44 +01:00
var loading , cachedThemes , grabbedThemes , foundThemes , loadedThemes , generatorThemes , updateInterval ;
const themeStates = {
UPDATED : 0 ,
OUTDATED : 1 ,
DOWNLOADABLE : 2
} ;
const buttonData = {
UPDATED : {
colorClass : "GREEN" ,
backgroundColor : "STATUS_GREEN" ,
text : "Updated"
} ,
OUTDATED : {
colorClass : "RED" ,
backgroundColor : "STATUS_RED" ,
text : "Outdated"
} ,
DOWNLOADABLE : {
colorClass : "BRAND" ,
backgroundColor : "BRAND" ,
text : "Download"
2019-04-16 09:52:09 +02:00
}
2020-02-10 21:31:44 +01:00
} ;
const favStates = {
FAVORIZED : 0 ,
NOT _FAVORIZED : 1
} ;
const newStates = {
NEW : 0 ,
NOT _NEW : 1
} ;
const sortKeys = {
NAME : "Name" ,
AUTHOR : "Author" ,
VERSION : "Version" ,
DESCRIPTION : "Description" ,
STATE : "Update State" ,
FAV : "Favorites" ,
NEW : "New Themes"
} ;
const orderKeys = {
ASC : "Ascending" ,
DESC : "Descending"
} ;
const themeRepoIcon = ` <svg width="36" height="31" viewBox="20 0 400 332"><path d="M0.000 39.479 L 0.000 78.957 43.575 78.957 L 87.151 78.957 87.151 204.097 L 87.151 329.236 129.609 329.236 L 172.067 329.236 172.067 204.097 L 172.067 78.957 215.642 78.957 L 259.218 78.957 259.218 39.479 L 259.218 0.000 129.609 0.000 L 0.000 0.000 0.000 39.479" stroke="none" fill="#7289da" fill-rule="evenodd"></path><path d="M274.115 38.624 L 274.115 77.248 280.261 77.734 C 309.962 80.083,325.986 106.575,313.378 132.486 C 305.279 149.131,295.114 152.700,255.800 152.700 L 230.168 152.700 230.168 123.277 L 230.168 93.855 208.566 93.855 L 186.965 93.855 186.965 211.546 L 186.965 329.236 208.566 329.236 L 230.168 329.236 230.168 277.068 L 230.168 224.899 237.268 225.113 L 244.368 225.326 282.215 277.095 L 320.062 328.864 360.031 329.057 L 400.000 329.249 400.000 313.283 L 400.000 297.317 367.924 256.908 L 335.848 216.499 340.182 214.869 C 376.035 201.391,395.726 170.616,399.382 122.342 C 405.008 48.071,360.214 0.000,285.379 0.000 L 274.115 0.000 274.115 38.624" stroke="none" fill="#7f8186" fill-rule="evenodd"></path></svg> ` ;
const repoListComponent = class ThemeList extends BdApi . React . Component {
render ( ) {
2020-04-15 09:14:05 +02:00
let list = BDFDB . ReactUtils . createElement ( "div" , {
2020-02-10 21:31:44 +01:00
className : BDFDB . disCN . _repolist ,
style : {
display : "flex" ,
flexDirection : "column" ,
margin : "unset" ,
width : "unset"
} ,
children : [ ] . concat ( this . props . entries ) . filter ( n => n ) . map ( entry => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . AddonCard , entry ) )
} ) ;
BDFDB . ReactUtils . forceStyle ( list , [ "display" , "flex-direction" , "margin" , "width" ] ) ;
return list ;
2018-10-11 10:21:26 +02:00
}
2020-02-10 21:31:44 +01:00
} ;
let forceRerenderGenerator ;
const generatorComponent = class ThemeGenerator extends BdApi . React . Component {
render ( ) {
if ( forceRerenderGenerator ) {
BDFDB . TimeUtils . timeout ( _ => {
forceRerenderGenerator = false ;
BDFDB . ReactUtils . forceUpdate ( this ) ;
} , 500 ) ;
}
let theme = this . props . options && loadedThemes [ this . props . options . currentGenerator ] ;
2020-04-11 21:27:26 +02:00
return ! this . props . options || ! this . props . options . preview ? null : [
2020-02-10 21:31:44 +01:00
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
className : BDFDB . disCN . marginbottom20 ,
type : "Select" ,
label : "Choose a Generator Theme" ,
basis : "70%" ,
value : this . props . options . currentGenerator || "-----" ,
options : [ "-----" ] . concat ( generatorThemes ) . map ( url => { return { value : url , label : ( loadedThemes [ url ] || { } ) . name || "-----" } } ) ,
searchable : true ,
onChange : ( value , instance ) => {
if ( loadedThemes [ value . value ] ) {
if ( this . props . options . currentGenerator ) forceRerenderGenerator = true ;
this . props . options . currentGenerator = value . value ;
this . props . options . generatorValues = { } ;
}
else {
delete this . props . options . currentGenerator ;
delete this . props . options . generatorValues ;
}
delete this . props . options . currentTheme ;
2020-04-15 09:14:05 +02:00
_this . updateList ( instance , this . props . options ) ;
2020-04-11 21:27:26 +02:00
this . props . options . preview . executeJavaScriptSafe ( ` window.onmessage({
2020-02-10 21:31:44 +01:00
origin : "ThemeRepo" ,
reason : "NewTheme" ,
checked : true ,
2020-04-11 21:13:01 +02:00
css : $ { JSON . stringify ( ( loadedThemes [ value . value ] || { } ) . fullcss || "" ) }
} ) ` );
2020-02-10 21:31:44 +01:00
}
} ) ,
theme && BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
className : BDFDB . disCN . marginbottom20 ,
type : "Button" ,
label : "Download generated Theme" ,
children : "Download" ,
onClick : _ => {
2020-04-15 09:14:05 +02:00
_this . createThemeFile ( theme . name + ".theme.css" , _this . generateTheme ( theme , this . props . options ) ) ;
2020-02-10 21:31:44 +01:00
}
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormDivider , {
className : BDFDB . disCN . marginbottom20
} ) ,
2020-04-15 09:14:05 +02:00
theme && ! forceRerenderGenerator && _this . createGeneratorInputs ( theme , this . props . options )
2020-02-10 21:31:44 +01:00
] . flat ( 10 ) . filter ( n => n )
}
} ;
return class ThemeRepo {
getName ( ) { return "ThemeRepo" ; }
2018-10-11 10:21:26 +02:00
2020-05-19 19:33:39 +02:00
getVersion ( ) { return "1.9.8" ; }
2018-10-11 10:21:26 +02:00
2020-02-10 21:31:44 +01:00
getAuthor ( ) { return "DevilBro" ; }
2019-04-16 10:21:45 +02:00
2020-02-10 21:31:44 +01:00
getDescription ( ) { return "Allows you to preview all themes from the theme repo and download them on the fly. Repo button is in the theme settings." ; }
2018-10-11 10:21:26 +02:00
2020-04-11 21:13:01 +02:00
constructor ( ) {
this . changelog = {
2020-05-19 19:33:39 +02:00
"fixed" : [ [ "Context Menu Update" , "Fixes for the context menu update, yaaaaaay" ] ]
2020-04-11 21:13:01 +02:00
} ;
2020-02-10 21:31:44 +01:00
this . patchedModules = {
after : {
V2C _ContentColumn : "render"
}
} ;
2019-05-26 13:55:26 +02:00
}
2018-10-11 10:21:26 +02:00
2020-02-10 21:31:44 +01:00
initConstructor ( ) {
2020-04-15 09:14:05 +02:00
_this = this ;
2020-02-10 21:31:44 +01:00
loading = { is : false , timeout : null , amount : 0 } ;
cachedThemes = [ ] ;
grabbedThemes = [ ] ;
foundThemes = [ ] ;
loadedThemes = { } ;
generatorThemes = [ ] ;
this . defaults = {
settings : {
useChromium : { value : false , description : "Use an inbuilt browser window instead of opening your default browser" } ,
2020-04-11 21:13:01 +02:00
keepOnTop : { value : false , description : "Keep the preview window always on top" } ,
2020-02-10 21:31:44 +01:00
notifyOutdated : { value : true , description : "Notifies you when one of your Themes is outdated" } ,
notifyNewentries : { value : true , description : "Notifies you when there are new entries in the Repo" }
} ,
modalSettings : {
updated : { value : true , modify : true , description : "Show updated Themes" , } ,
outdated : { value : true , modify : true , description : "Show outdated Themes" } ,
downloadable : { value : true , modify : true , description : "Show downloadable Themes" } ,
rnmStart : { value : true , modify : false , description : "Apply Theme after Download" }
}
} ;
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
this . css = `
. $ { this . name } - modal . repo - modal {
max - width : 800 px ;
min - height : 90 vh ;
max - height : 90 vh ;
}
` ;
2018-10-11 10:21:26 +02:00
}
2019-10-22 11:37:23 +02:00
2020-02-10 21:31:44 +01:00
getSettingsPanel ( collapseStates = { } ) {
if ( ! window . BDFDB || typeof BDFDB != "object" || ! BDFDB . loaded || ! this . started ) return ;
let settings = BDFDB . DataUtils . get ( this , "settings" ) ;
let customList = this . getCustomList ( ) , customUrl = "" ;
2020-03-28 07:55:39 +01:00
let settingsPanel , settingsItems = [ ] ;
2020-02-10 21:31:44 +01:00
2020-03-28 07:55:39 +01:00
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
2020-02-10 21:31:44 +01:00
title : "Settings" ,
collapseStates : collapseStates ,
children : Object . keys ( settings ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
className : BDFDB . disCN . marginbottom8 ,
type : "Switch" ,
plugin : this ,
keys : [ "settings" , key ] ,
label : this . defaults . settings [ key ] . description ,
value : settings [ key ]
} ) )
} ) ) ;
2020-03-28 07:55:39 +01:00
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
2020-02-10 21:31:44 +01:00
title : "Custom Themes" ,
collapseStates : collapseStates ,
dividertop : true ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FormComponents . FormItem , {
title : "Add Theme:" ,
tag : BDFDB . LibraryComponents . FormComponents . FormTitleTags . H3 ,
className : BDFDB . disCNS . margintop4 + BDFDB . disCN . marginbottom8 ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
align : BDFDB . LibraryComponents . Flex . Align . CENTER ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TextInput , {
placeholder : "Insert Raw Github Link of Theme (https://raw.githubusercontent.com/...)" ,
onChange : value => { customUrl = value . trim ( ) ; }
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Button , {
onClick : _ => {
if ( customUrl ) {
customList . push ( customUrl ) ;
BDFDB . DataUtils . save ( BDFDB . ArrayUtils . removeCopies ( customList ) , this , "custom" ) ;
2020-03-28 07:55:39 +01:00
BDFDB . PluginUtils . refreshSettingsPanel ( this , settingsPanel , collapseStates ) ;
2020-02-10 21:31:44 +01:00
}
} ,
children : BDFDB . LanguageUtils . LanguageStrings . ADD
} )
]
} )
} ) ,
customList . length ? BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsPanelInner , {
title : "Custom Theme List:" ,
className : BDFDB . disCNS . margintop8 + BDFDB . disCN . marginbottom20 ,
first : true ,
last : true ,
children : customList . map ( url => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Card , {
children : url ,
onRemove : _ => {
BDFDB . ArrayUtils . remove ( customList , url , true ) ;
BDFDB . DataUtils . save ( customList , this , "custom" ) ;
2020-03-28 07:55:39 +01:00
BDFDB . PluginUtils . refreshSettingsPanel ( this , settingsPanel , collapseStates ) ;
2020-02-10 21:31:44 +01:00
}
} ) )
} ) : null ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
type : "Button" ,
color : BDFDB . LibraryComponents . Button . Colors . RED ,
label : "Remove all custom added Themes" ,
onClick : _ => {
BDFDB . ModalUtils . confirm ( this , "Are you sure you want to remove all added Themes from your own list" , _ => {
BDFDB . DataUtils . save ( [ ] , this , "custom" ) ;
2020-03-28 07:55:39 +01:00
BDFDB . PluginUtils . refreshSettingsPanel ( this , settingsPanel , collapseStates ) ;
2020-02-10 21:31:44 +01:00
} ) ;
} ,
children : BDFDB . LanguageUtils . LanguageStrings . REMOVE
} )
] . flat ( 10 ) . filter ( n => n )
} ) ) ;
2020-03-28 07:55:39 +01:00
settingsItems . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . CollapseContainer , {
2020-02-10 21:31:44 +01:00
title : "Refetch All" ,
collapseStates : collapseStates ,
dividertop : true ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
type : "Button" ,
label : "Force all Themes to be fetched again" ,
onClick : _ => {
loading = { is : false , timeout : null , amount : 0 } ;
this . loadThemes ( ) ;
} ,
children : BDFDB . LanguageUtils . LanguageStrings . ERRORS _RELOAD
} )
} ) ) ;
2020-03-28 07:55:39 +01:00
return settingsPanel = BDFDB . PluginUtils . createSettingsPanel ( this , settingsItems ) ;
2020-02-10 21:31:44 +01:00
}
2019-01-26 22:45:19 +01:00
2020-04-11 19:32:58 +02:00
// Legacy
2020-02-10 21:31:44 +01:00
load ( ) { }
start ( ) {
if ( ! window . BDFDB ) window . BDFDB = { myPlugins : { } } ;
if ( window . BDFDB && window . BDFDB . myPlugins && typeof window . BDFDB . myPlugins == "object" ) window . BDFDB . myPlugins [ this . getName ( ) ] = this ;
let libraryScript = document . querySelector ( "head script#BDFDBLibraryScript" ) ;
if ( ! libraryScript || ( performance . now ( ) - libraryScript . getAttribute ( "date" ) ) > 600000 ) {
if ( libraryScript ) libraryScript . remove ( ) ;
libraryScript = document . createElement ( "script" ) ;
libraryScript . setAttribute ( "id" , "BDFDBLibraryScript" ) ;
libraryScript . setAttribute ( "type" , "text/javascript" ) ;
libraryScript . setAttribute ( "src" , "https://mwittrien.github.io/BetterDiscordAddons/Plugins/BDFDB.min.js" ) ;
libraryScript . setAttribute ( "date" , performance . now ( ) ) ;
libraryScript . addEventListener ( "load" , _ => { this . initialize ( ) ; } ) ;
document . head . appendChild ( libraryScript ) ;
}
else if ( window . BDFDB && typeof BDFDB === "object" && BDFDB . loaded ) this . initialize ( ) ;
this . startTimeout = setTimeout ( _ => {
try { return this . initialize ( ) ; }
catch ( err ) { console . error ( ` %c[ ${ this . getName ( ) } ]%c ` , "color: #3a71c1; font-weight: 700;" , "" , "Fatal Error: Could not initiate plugin! " + err ) ; }
} , 30000 ) ;
2018-10-11 10:21:26 +02:00
}
2020-02-10 21:31:44 +01:00
initialize ( ) {
if ( window . BDFDB && typeof BDFDB === "object" && BDFDB . loaded ) {
if ( this . started ) return ;
BDFDB . PluginUtils . init ( this ) ;
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
this . loadThemes ( ) ;
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
updateInterval = BDFDB . TimeUtils . interval ( _ => { this . checkForNewThemes ( ) ; } , 1000 * 60 * 30 ) ;
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
BDFDB . ModuleUtils . forceAllUpdates ( this ) ;
2018-10-11 10:21:26 +02:00
}
2020-02-10 21:31:44 +01:00
else console . error ( ` %c[ ${ this . getName ( ) } ]%c ` , "color: #3a71c1; font-weight: 700;" , "" , "Fatal Error: Could not load BD functions!" ) ;
2018-10-11 10:21:26 +02:00
}
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
stop ( ) {
if ( window . BDFDB && typeof BDFDB === "object" && BDFDB . loaded ) {
this . stopping = true ;
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
BDFDB . TimeUtils . clear ( updateInterval ) ;
BDFDB . TimeUtils . clear ( loading . timeout ) ;
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
BDFDB . ModuleUtils . forceAllUpdates ( this ) ;
2019-01-26 22:45:19 +01:00
2020-04-11 21:25:27 +02:00
BDFDB . DOMUtils . remove ( ".bd-themerepobutton" , ".themerepo-notice" , ".themerepo-loadingicon" ) ;
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
BDFDB . PluginUtils . clear ( this ) ;
2019-06-14 11:13:15 +02:00
}
2020-02-10 21:31:44 +01:00
}
2019-01-26 22:45:19 +01:00
2019-09-25 17:35:00 +02:00
2020-04-11 19:32:58 +02:00
// Begin of own functions
2020-02-10 21:31:44 +01:00
onUserSettingsCogContextMenu ( e ) {
BDFDB . TimeUtils . timeout ( _ => {
let [ children , index ] = BDFDB . ReactUtils . findChildren ( e . returnvalue , { props : [ [ "label" , "BandagedBD" ] ] } ) ;
2020-05-20 11:55:46 +02:00
if ( index > - 1 && BDFDB . ArrayUtils . is ( children [ index ] . props . children ) ) children [ index ] . props . children . push ( BDFDB . ContextMenuUtils . createItem ( BDFDB . LibraryComponents . MenuItems . MenuItem , {
2020-02-10 21:31:44 +01:00
label : "Theme Repo" ,
2020-05-19 19:33:39 +02:00
id : BDFDB . ContextMenuUtils . createItemId ( this . name , "repo" ) ,
2020-02-10 21:31:44 +01:00
action : _ => {
if ( ! loading . is ) BDFDB . ContextMenuUtils . close ( e . instance ) ;
this . openThemeRepoModal ( ) ;
}
} ) ) ;
2019-09-25 17:35:00 +02:00
} ) ;
2020-02-10 21:31:44 +01:00
}
processV2CContentColumn ( e ) {
2020-03-26 20:20:37 +01:00
if ( typeof e . instance . props . title == "string" && e . instance . props . title . toUpperCase ( ) . indexOf ( "THEMES" ) == 0 ) {
2020-02-10 21:31:44 +01:00
let [ children , index ] = BDFDB . ReactUtils . findChildren ( e . returnvalue , { key : "folder-button" } ) ;
if ( index > - 1 ) children . splice ( index + 1 , 0 , BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TooltipContainer , {
text : "Open Theme Repo" ,
children : BDFDB . ReactUtils . createElement ( "button" , {
2020-03-26 20:20:37 +01:00
className : ` ${ BDFDB . disCNS . _repobutton + BDFDB . disCN . _repofolderbutton } bd-themerepobutton ` ,
2020-02-10 21:31:44 +01:00
onClick : _ => { this . openThemeRepoModal ( ) ; } ,
children : "ThemeRepo"
} )
} ) ) ;
2019-09-25 17:35:00 +02:00
}
2019-04-16 09:52:09 +02:00
}
2020-02-10 21:31:44 +01:00
getCustomList ( ) {
2020-04-11 21:13:01 +02:00
let customList = BDFDB . DataUtils . load ( this , "custom" ) ;
return BDFDB . ArrayUtils . is ( customList ) ? customList : [ ] ;
2019-04-16 09:52:09 +02:00
}
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
openThemeRepoModal ( options = { } ) {
if ( loading . is ) BDFDB . NotificationUtils . toast ( ` Themes are still being fetched. Try again in some seconds. ` , { type : "danger" } ) ;
2020-04-11 21:13:01 +02:00
else {
2020-02-10 21:31:44 +01:00
let modalSettings = BDFDB . DataUtils . get ( this , "modalSettings" ) ;
let searchTimeout , automaticLoading = BDFDB . BDUtils . isAutoLoadEnabled ( ) ;
options = Object . assign ( options , modalSettings ) ;
options . updated = options . updated && ! options . showOnlyOutdated ;
options . outdated = options . updated || options . showOnlyOutdated ;
options . downloadable = options . downloadable && ! options . showOnlyOutdated ;
options . searchString = "" ;
options . sortKey = options . forcedSort || Object . keys ( sortKeys ) [ 0 ] ;
options . orderKey = options . forcedOrder || Object . keys ( orderKeys ) [ 0 ] ;
2020-04-11 21:27:26 +02:00
options . preview = BDFDB . WindowUtils . open ( this , "https://mwittrien.github.io/BetterDiscordAddons/Plugins/ThemeRepo/res/DiscordPreview.html" , {
2020-04-11 21:13:01 +02:00
alwaysOnTop : BDFDB . DataUtils . get ( this , "settings" , "keepOnTop" ) ,
showOnReady : true ,
frame : false ,
onLoad : _ => {
let nativeCSS = document . querySelector ( "head link[rel='stylesheet'][integrity]" ) ;
let titleBar = document . querySelector ( BDFDB . dotCN . titlebar ) ;
2020-04-11 21:27:26 +02:00
options . preview . executeJavaScriptSafe ( ` window.onmessage({
2020-04-11 21:13:01 +02:00
origin : "ThemeRepo" ,
reason : "OnLoad" ,
username : $ { JSON . stringify ( BDFDB . UserUtils . me . username || "" ) } ,
id : $ { JSON . stringify ( BDFDB . UserUtils . me . id || "" ) } ,
discriminator : $ { JSON . stringify ( BDFDB . UserUtils . me . discriminator || "" ) } ,
avatar : $ { JSON . stringify ( BDFDB . UserUtils . getAvatar ( ) || "" ) } ,
classes : $ { JSON . stringify ( JSON . stringify ( BDFDB . DiscordClasses ) ) } ,
classModules : $ { JSON . stringify ( JSON . stringify ( BDFDB . DiscordClassModules ) ) } ,
nativeCSS : $ { JSON . stringify ( nativeCSS && nativeCSS . href || "" ) } ,
htmlClassName : $ { JSON . stringify ( document . documentElement . className || "" ) } ,
titleBar : $ { JSON . stringify ( titleBar && titleBar . outerHTML || "" ) }
} ) ` );
2020-04-11 21:27:26 +02:00
options . preview . executeJavaScriptSafe ( ` window.onmessage({
2020-04-11 21:13:01 +02:00
origin : "ThemeRepo" ,
reason : "DarkLight" ,
checked : $ { BDFDB . DiscordUtils . getTheme ( ) == BDFDB . disCN . themelight }
} ) ` );
}
} ) ;
2020-02-10 21:31:44 +01:00
let entries = this . createEntries ( options ) ;
BDFDB . ModalUtils . open ( this , {
className : "repo-modal" ,
size : "LARGE" ,
header : "Theme Repository" ,
subheader : BDFDB . ReactUtils . createElement ( class RepoAmount extends BDFDB . ReactUtils . Component {
render ( ) { return ` ${ this . props . entries . length } / ${ Object . keys ( loadedThemes ) . length } Themes ` }
} , { entries } ) ,
tabBarChildren : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SearchBar , {
autoFocus : true ,
query : options . searchString ,
onChange : ( value , instance ) => {
BDFDB . TimeUtils . clear ( searchTimeout ) ;
searchTimeout = BDFDB . TimeUtils . timeout ( _ => {
options . searchString = value . replace ( /[<|>]/g , "" ) . toUpperCase ( ) ;
this . updateList ( instance , options ) ;
} , 1000 ) ;
} ,
onClear : instance => {
options . searchString = "" ;
this . updateList ( instance , options ) ;
}
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . QuickSelect , {
label : "Sort by:" ,
value : {
label : sortKeys [ options . sortKey ] ,
value : options . sortKey
} ,
2020-03-15 11:08:37 +01:00
options : Object . keys ( sortKeys ) . filter ( n => n != "NEW" || Object . keys ( loadedThemes ) . some ( t => ! cachedThemes . includes ( t ) ) ) . map ( key => ( {
2020-02-10 21:31:44 +01:00
label : sortKeys [ key ] ,
value : key
2020-03-15 11:06:38 +01:00
} ) ) ,
2020-02-10 21:31:44 +01:00
onChange : ( key , instance ) => {
options . sortKey = key ;
this . updateList ( instance , options ) ;
}
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex . Child , {
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . QuickSelect , {
label : "Order:" ,
value : {
label : orderKeys [ options . orderKey ] ,
value : options . orderKey
} ,
2020-03-15 11:06:38 +01:00
options : Object . keys ( orderKeys ) . map ( key => ( {
2020-02-10 21:31:44 +01:00
label : orderKeys [ key ] ,
value : key
2020-03-15 11:06:38 +01:00
} ) ) ,
2020-02-10 21:31:44 +01:00
onChange : ( key , instance ) => {
options . orderKey = key ;
this . updateList ( instance , options ) ;
}
} )
} )
] ,
children : [
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . ModalComponents . ModalTabContent , {
tab : "Themes" ,
children : BDFDB . ReactUtils . createElement ( repoListComponent , {
entries : entries
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . ModalComponents . ModalTabContent , {
tab : "Generator" ,
children : BDFDB . ReactUtils . createElement ( generatorComponent , {
options : options
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . ModalComponents . ModalTabContent , {
tab : BDFDB . LanguageUtils . LanguageStrings . SETTINGS ,
children : [
! automaticLoading && BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
className : BDFDB . disCN . marginbottom8 ,
children : BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCNS . titledefault + BDFDB . disCN . cursordefault ,
style : { maxWidth : 760 } ,
children : "To experience ThemeRepo in the best way. I would recommend you to enable BD intern reload function, that way all downloaded files are loaded into Discord without the need to reload."
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Flex , {
className : BDFDB . disCN . marginbottom20 ,
children : BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCNS . titledefault + BDFDB . disCN . cursordefault ,
style : { maxWidth : 760 } ,
children : "You can toggle this menu with the 'Ctrl' key to take a better look at the preview."
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
className : BDFDB . disCN . marginbottom20 ,
type : "Switch" ,
label : "Preview in light mode" ,
value : BDFDB . DiscordUtils . getTheme ( ) == BDFDB . disCN . themelight ,
onChange : ( value , instance ) => {
2020-04-11 21:27:26 +02:00
options . preview . executeJavaScriptSafe ( ` window.onmessage({
2020-02-10 21:31:44 +01:00
origin : "ThemeRepo" ,
reason : "DarkLight" ,
2020-04-11 21:13:01 +02:00
checked : $ { value }
} ) ` );
2020-02-10 21:31:44 +01:00
}
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
className : BDFDB . disCN . marginbottom20 ,
type : "Switch" ,
label : "Preview with normalized classes" ,
value : BDFDB . BDUtils . getSettings ( "fork-ps-4" ) ,
onChange : ( value , instance ) => {
2020-04-11 21:27:26 +02:00
options . preview . executeJavaScriptSafe ( ` window.onmessage({
2020-02-10 21:31:44 +01:00
origin : "ThemeRepo" ,
reason : "Normalize" ,
2020-04-11 21:13:01 +02:00
checked : $ { value }
} ) ` );
2020-02-10 21:31:44 +01:00
}
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
className : BDFDB . disCN . marginbottom20 ,
type : "Switch" ,
label : "Include Custom CSS in Preview" ,
value : false ,
onChange : ( value , instance ) => {
let customCSS = document . querySelector ( "style#customcss" ) ;
2020-04-11 21:27:26 +02:00
if ( customCSS && customCSS . innerText . length > 0 ) options . preview . executeJavaScriptSafe ( ` window.onmessage({
2020-02-10 21:31:44 +01:00
origin : "ThemeRepo" ,
reason : "CustomCSS" ,
2020-04-11 21:13:01 +02:00
checked : $ { value } ,
css : $ { JSON . stringify ( customCSS . innerText || "" ) }
} ) ` );
2020-02-10 21:31:44 +01:00
}
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
className : BDFDB . disCN . marginbottom20 ,
type : "Switch" ,
label : "Include ThemeFixer CSS in Preview" ,
value : false ,
onChange : ( value , instance ) => {
BDFDB . LibraryRequires . request ( "https://mwittrien.github.io/BetterDiscordAddons/Plugins/ThemeRepo/res/ThemeFixer.css" , ( error , response , body ) => {
2020-04-11 21:27:26 +02:00
options . preview . executeJavaScriptSafe ( ` window.onmessage({
2020-02-10 21:31:44 +01:00
origin : "ThemeRepo" ,
reason : "ThemeFixer" ,
2020-04-11 21:13:01 +02:00
checked : $ { value } ,
css : $ { JSON . stringify ( this . createFixerCSS ( body ) || "" ) }
} ) ` );
2020-02-10 21:31:44 +01:00
} ) ;
}
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
className : BDFDB . disCN . marginbottom20 ,
type : "Button" ,
label : "Download ThemeFixer" ,
children : "Download" ,
onClick : _ => {
BDFDB . LibraryRequires . request ( "https://mwittrien.github.io/BetterDiscordAddons/Plugins/ThemeRepo/res/ThemeFixer.css" , ( error , response , body ) => {
2020-02-27 08:51:11 +01:00
this . createThemeFile ( "ThemeFixer.theme.css" , ` //META{"name":"ThemeFixer","description":"ThemeFixerCSS for transparent themes","author":"DevilBro","version":"1.0.3","authorId":"278543574059057154","invite":"Jx3TjNS","donate":"https://www.paypal.me/MircoWittrien","patreon":"https://www.patreon.com/MircoWittrien"}*// \n \n ` + this . createFixerCSS ( body ) ) ;
2020-02-10 21:31:44 +01:00
} ) ;
}
} ) ,
Object . keys ( modalSettings ) . map ( key => BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsSaveItem , {
className : BDFDB . disCN . marginbottom20 ,
type : "Switch" ,
plugin : this ,
keys : [ "modalSettings" , key ] ,
label : this . defaults . modalSettings [ key ] . description ,
note : key == "rnmStart" && ! automaticLoading && "Automatic Loading has to be enabled" ,
disabled : key == "rnmStart" && ! automaticLoading ,
value : options [ key ] ,
onChange : ( value , instance ) => {
options [ key ] = value ;
this . updateList ( instance , options ) ;
}
} ) )
] . flat ( 10 ) . filter ( n => n )
} )
] ,
onClose : ( modal , instance ) => {
2020-04-11 21:27:26 +02:00
BDFDB . WindowUtils . close ( options . preview ) ;
2019-09-25 17:35:00 +02:00
}
2020-02-10 21:31:44 +01:00
} ) ;
2019-09-25 17:35:00 +02:00
}
2020-02-10 21:31:44 +01:00
}
updateList ( instance , options = { } ) {
let modalIns = BDFDB . ReactUtils . findOwner ( instance , { name : "BDFDB_Modal" , up : true } ) ;
if ( modalIns ) {
let amountIns = BDFDB . ReactUtils . findOwner ( modalIns , { name : "RepoAmount" } ) ;
let listIns = BDFDB . ReactUtils . findOwner ( modalIns , { name : "ThemeList" } ) ;
let genIns = BDFDB . ReactUtils . findOwner ( modalIns , { name : "ThemeGenerator" } ) ;
if ( amountIns && listIns && genIns ) {
let entries = this . createEntries ( options ) ;
amountIns . props . entries = entries ;
listIns . props . entries = entries ;
BDFDB . ReactUtils . forceUpdate ( amountIns , listIns , genIns ) ;
2018-12-23 15:35:53 +01:00
}
2019-01-14 18:55:51 +01:00
}
2019-01-07 20:25:35 +01:00
}
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
createEntries ( options = { } ) {
let favorites = BDFDB . DataUtils . load ( this , "favorites" ) ;
let themes = Object . keys ( loadedThemes ) . map ( url => {
let theme = loadedThemes [ url ] ;
let instTheme = BDFDB . BDUtils . getTheme ( theme . name ) ;
if ( instTheme && instTheme . author . toUpperCase ( ) == theme . author . toUpperCase ( ) ) theme . state = instTheme . version != theme . version ? themeStates . OUTDATED : themeStates . UPDATED ;
else theme . state = themeStates . DOWNLOADABLE ;
return {
url : theme . url ,
requesturl : theme . requesturl ,
search : ( theme . name + " " + theme . version + " " + theme . author + " " + theme . description ) . toUpperCase ( ) ,
name : theme . name ,
version : theme . version ,
author : theme . author ,
description : theme . description || "No Description found." ,
fav : favorites [ url ] ? favStates . FAVORIZED : favStates . NOT _FAVORIZED ,
new : ! cachedThemes . includes ( url ) ? newStates . NEW : newStates . NOT _NEW ,
state : theme . state ,
css : theme . css ,
fullcss : theme . fullcss
} ;
} ) ;
2020-03-15 15:46:55 +01:00
if ( ! options . updated ) themes = themes . filter ( theme => theme . state != themeStates . UPDATED ) ;
if ( ! options . outdated ) themes = themes . filter ( theme => theme . state != themeStates . OUTDATED ) ;
if ( ! options . downloadable ) themes = themes . filter ( theme => theme . state != themeStates . DOWNLOADABLE ) ;
2020-02-10 21:31:44 +01:00
if ( options . searchString ) themes = themes . filter ( theme => theme . search . indexOf ( options . searchString ) > - 1 ) . map ( theme => Object . assign ( { } , theme , {
name : BDFDB . ReactUtils . elementToReact ( BDFDB . DOMUtils . create ( BDFDB . StringUtils . highlight ( theme . name , options . searchString ) ) ) || theme . name ,
version : BDFDB . ReactUtils . elementToReact ( BDFDB . DOMUtils . create ( BDFDB . StringUtils . highlight ( theme . version , options . searchString ) ) ) || theme . version ,
author : BDFDB . ReactUtils . elementToReact ( BDFDB . DOMUtils . create ( BDFDB . StringUtils . highlight ( theme . author , options . searchString ) ) ) || theme . author ,
description : BDFDB . ReactUtils . elementToReact ( BDFDB . DOMUtils . create ( BDFDB . StringUtils . highlight ( theme . description , options . searchString ) ) ) || theme . description
} ) ) ;
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
BDFDB . ArrayUtils . keySort ( themes , ( options . sortKey == "NEW" && ! themes . some ( theme => theme . new == newStates . NEW ) ? Object . keys ( sortKeys ) [ 0 ] : options . sortKey ) . toLowerCase ( ) ) ;
if ( options . orderKey == "DESC" ) themes . reverse ( ) ;
return themes . map ( theme => {
let buttonConfig = buttonData [ ( Object . entries ( themeStates ) . find ( n => n [ 1 ] == theme . state ) || [ ] ) [ 0 ] ]
return buttonConfig && {
data : theme ,
controls : [
2020-02-11 17:11:59 +01:00
theme . new == newStates . NEW && BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Badges . TextBadge , {
2020-02-10 21:31:44 +01:00
style : {
borderRadius : 3 ,
textTransform : "uppercase" ,
background : BDFDB . DiscordConstants . Colors . STATUS _YELLOW
} ,
text : BDFDB . LanguageUtils . LanguageStrings . NEW
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . FavButton , {
2020-04-06 13:35:20 +02:00
className : BDFDB . disCN . _repocontrolsbutton ,
2020-02-10 21:31:44 +01:00
isFavorite : theme . fav == favStates . FAVORIZED ,
onClick : value => {
theme . fav = value ? favStates . FAVORIZED : favStates . NOT _FAVORIZED ;
if ( value ) BDFDB . DataUtils . save ( true , this , "favorites" , theme . url ) ;
else BDFDB . DataUtils . remove ( this , "favorites" , theme . url ) ;
}
} ) ,
2020-03-29 22:40:13 +02:00
BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCN . _repocontrolsbutton ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TooltipContainer , {
text : "Go to Source" ,
2020-02-10 21:31:44 +01:00
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SvgIcon , {
2020-03-29 22:40:13 +02:00
name : BDFDB . LibraryComponents . SvgIcon . Names . GITHUB ,
className : BDFDB . disCN . _repoicon ,
onClick : _ => {
2020-04-11 21:13:01 +02:00
let gitUrl = null ;
2020-03-29 22:40:13 +02:00
if ( theme . requesturl . indexOf ( "https://raw.githubusercontent.com" ) == 0 ) {
let temp = theme . requesturl . replace ( "//raw.githubusercontent" , "//github" ) . split ( "/" ) ;
temp . splice ( 5 , 0 , "blob" ) ;
2020-04-11 21:13:01 +02:00
gitUrl = temp . join ( "/" ) ;
2020-03-29 22:40:13 +02:00
}
else if ( theme . requesturl . indexOf ( "https://gist.githubusercontent.com/" ) == 0 ) {
2020-04-11 21:13:01 +02:00
gitUrl = theme . requesturl . replace ( "//gist.githubusercontent" , "//gist.github" ) . split ( "/raw/" ) [ 0 ] ;
2020-03-29 22:40:13 +02:00
}
2020-04-11 21:13:01 +02:00
if ( gitUrl ) BDFDB . DiscordUtils . openLink ( gitUrl , BDFDB . DataUtils . get ( this , "settings" , "useChromium" ) ) ;
2020-03-29 22:40:13 +02:00
}
2020-02-10 21:31:44 +01:00
} )
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Switch , {
value : options . currentTheme == theme . url ,
onChange : ( value , instance ) => {
if ( value ) options . currentTheme = theme . url ;
else delete options . currentTheme ;
delete options . currentGenerator ;
delete options . generatorValues ;
this . updateList ( instance , options ) ;
2020-04-11 21:27:26 +02:00
options . preview . executeJavaScriptSafe ( ` window.onmessage({
2020-02-10 21:31:44 +01:00
origin : "ThemeRepo" ,
reason : "NewTheme" ,
2020-04-11 21:13:01 +02:00
checked : $ { value } ,
css : $ { JSON . stringify ( theme . css || "" ) }
} ) ` );
2020-02-10 21:31:44 +01:00
}
} )
] ,
buttons : [
2020-03-29 22:40:13 +02:00
theme . state != themeStates . DOWNLOADABLE && BDFDB . ReactUtils . createElement ( "div" , {
className : BDFDB . disCN . _repocontrolsbutton ,
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . TooltipContainer , {
text : "Delete Themefile" ,
2020-02-10 21:31:44 +01:00
children : BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SvgIcon , {
2020-03-29 22:40:13 +02:00
name : BDFDB . LibraryComponents . SvgIcon . Names . NOVA _TRASH ,
className : BDFDB . disCN . _repoicon ,
onClick : ( e , instance ) => {
this . deleteThemeFile ( theme ) ;
BDFDB . TimeUtils . timeout ( _ => {
this . updateList ( instance , options ) ;
2020-06-04 19:48:11 +02:00
this . removeTheme ( theme ) ;
2020-03-29 22:40:13 +02:00
} , 3000 ) ;
}
} )
2020-02-10 21:31:44 +01:00
} )
} ) ,
BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . Button , {
size : BDFDB . LibraryComponents . Button . Sizes . MIN ,
color : BDFDB . LibraryComponents . Button . Colors [ buttonConfig . colorClass ] ,
style : { backgroundColor : BDFDB . DiscordConstants . Colors [ buttonConfig . backgroundColor ] } ,
children : buttonConfig . text ,
onClick : ( e , instance ) => {
this . downloadTheme ( theme ) ;
BDFDB . TimeUtils . timeout ( _ => {
this . updateList ( instance , options ) ;
if ( options . rnmStart ) this . applyTheme ( theme ) ;
} , 3000 ) ;
}
} )
]
} ;
} ) . filter ( n => n ) ;
2019-10-11 23:21:52 +02:00
}
2019-09-25 17:35:00 +02:00
2020-02-10 21:31:44 +01:00
createFixerCSS ( body ) {
let oldcss = body . replace ( /\n/g , "\\n" ) . replace ( /\t/g , "\\t" ) . replace ( /\r/g , "\\r" ) . split ( "REPLACE_CLASS_" ) ;
let newcss = oldcss . shift ( ) ;
for ( let str of oldcss ) {
let reg = /([A-z0-9_]+)(.*)/ . exec ( str ) ;
newcss += BDFDB . dotCN [ reg [ 1 ] ] + reg [ 2 ] ;
2019-09-25 17:35:00 +02:00
}
2020-02-10 21:31:44 +01:00
return newcss . replace ( /\\n/g , "\n" ) . replace ( /\\t/g , "\t" ) . replace ( /\\r/g , "\r" ) ;
2019-09-25 17:35:00 +02:00
}
2020-02-10 21:31:44 +01:00
createGeneratorInputs ( theme , options = { } ) {
2020-04-11 21:27:26 +02:00
if ( ! options . preview || ! BDFDB . ObjectUtils . is ( options . generatorValues ) || ! BDFDB . ObjectUtils . is ( theme ) || ! theme . fullcss ) return null ;
2020-02-10 21:31:44 +01:00
let vars = theme . fullcss . split ( ":root" ) ;
if ( vars . length < 2 ) return null ;
vars = vars [ 1 ] . replace ( /\t\(/g , " (" ) . replace ( /\r|\t| {2,}/g , "" ) . replace ( /\/\*\n*((?!\/\*|\*\/).|\n)*\n+((?!\/\*|\*\/).|\n)*\n*\*\//g , "" ) . replace ( /\n\/\*.*?\*\//g , "" ) . replace ( /\n/g , "" ) ;
vars = vars . split ( "{" ) ;
vars . shift ( ) ;
vars = vars . join ( "{" ) . replace ( /\s*(:|;|--|\*)\s*/g , "$1" ) ;
vars = vars . split ( "}" ) [ 0 ] ;
vars = vars . slice ( 2 ) . split ( /;--|\*\/--/ ) ;
let inputRefs = [ ] , updateTimeout ;
2020-03-29 22:13:28 +02:00
for ( let varStr of vars ) {
varStr = varStr . split ( ":" ) ;
let varName = varStr . shift ( ) . trim ( ) ;
varStr = varStr . join ( ":" ) . split ( /;[^A-z0-9]|\/\*/ ) ;
let oldValue = varStr . shift ( ) . trim ( ) ;
if ( oldValue ) {
2020-02-10 21:31:44 +01:00
let childType = "text" , childMode = "" ;
2020-03-29 22:13:28 +02:00
let isColor = BDFDB . ColorUtils . getType ( oldValue ) ;
let isComp = ! isColor && /[0-9 ]+,[0-9 ]+,[0-9 ]+/g . test ( oldValue ) ;
if ( isColor || isComp ) {
2020-02-10 21:31:44 +01:00
childType = "color" ;
2020-03-29 22:13:28 +02:00
childMode = isComp && "comp" ;
2020-02-10 21:31:44 +01:00
}
else {
2020-03-29 22:13:28 +02:00
let isUrlFile = /url\(.+\)/gi . test ( oldValue ) ;
let isFile = ! isUrlFile && /(http(s)?):\/\/[(www\.)?a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/ . test ( oldValue ) ;
if ( isFile || isUrlFile ) {
2020-02-10 21:31:44 +01:00
childType = "file" ;
2020-03-29 22:13:28 +02:00
childMode = isUrlFile && "url" ;
2020-02-10 21:31:44 +01:00
}
2019-09-25 17:35:00 +02:00
}
2020-03-29 22:13:28 +02:00
let varDescription = varStr . join ( "" ) . replace ( /\*\/|\/\*/g , "" ) . replace ( /:/g , ": " ) . replace ( /: \//g , ":/" ) . replace ( /--/g , " --" ) . replace ( /\( --/g , "(--" ) . trim ( ) ;
options . generatorValues [ varName ] = { value : oldValue , oldValue } ;
2020-02-10 21:31:44 +01:00
inputRefs . push ( BDFDB . ReactUtils . createElement ( BDFDB . LibraryComponents . SettingsItem , {
className : BDFDB . disCN . marginbottom20 ,
2020-03-29 22:13:28 +02:00
dividerbottom : vars [ vars . length - 1 ] != varStr ,
2020-02-10 21:31:44 +01:00
type : "TextInput" ,
childProps : {
type : childType ,
mode : childMode ,
filter : childType == "file" && "image"
} ,
2020-03-29 22:13:28 +02:00
label : varName [ 0 ] . toUpperCase ( ) + varName . slice ( 1 ) ,
note : varDescription && varDescription . indexOf ( "*" ) == 0 ? varDescription . slice ( 1 ) : varDescription ,
2020-02-10 21:31:44 +01:00
basis : "70%" ,
2020-03-29 22:13:28 +02:00
value : oldValue ,
placeholder : oldValue ,
2020-02-10 21:31:44 +01:00
onChange : value => {
BDFDB . TimeUtils . clear ( updateTimeout ) ;
updateTimeout = BDFDB . TimeUtils . timeout ( _ => {
2020-03-29 22:13:28 +02:00
options . generatorValues [ varName ] = { value , oldValue } ;
2020-04-11 21:27:26 +02:00
options . preview . executeJavaScriptSafe ( ` window.onmessage({
2020-02-10 21:31:44 +01:00
origin : "ThemeRepo" ,
reason : "NewTheme" ,
checked : true ,
2020-04-11 21:13:01 +02:00
css : $ { JSON . stringify ( this . generateTheme ( theme , options ) || "" ) }
} ) ` );
2020-02-10 21:31:44 +01:00
} , 1000 ) ;
}
} ) ) ;
2019-09-25 17:35:00 +02:00
}
2019-01-14 18:55:51 +01:00
}
2020-02-10 21:31:44 +01:00
return inputRefs ;
}
generateTheme ( theme , options = { } ) {
if ( ! BDFDB . ObjectUtils . is ( theme ) || ! BDFDB . ObjectUtils . is ( options ) || ! BDFDB . ObjectUtils . is ( options . generatorValues ) ) return "" ;
let css = theme . fullcss ;
2020-03-29 22:13:28 +02:00
for ( let inputId in options . generatorValues ) if ( options . generatorValues [ inputId ] . value && options . generatorValues [ inputId ] . value . trim ( ) && options . generatorValues [ inputId ] . value != options . generatorValues [ inputId ] . oldValue ) css = css . replace ( new RegExp ( ` -- ${ BDFDB . StringUtils . regEscape ( inputId ) } ( \\ s*):( \\ s*) ${ BDFDB . StringUtils . regEscape ( options . generatorValues [ inputId ] . oldValue ) } ` , "g" ) , ` -- ${ inputId } $ 1: $ 2 ${ options . generatorValues [ inputId ] . value } ` ) ;
2020-02-10 21:31:44 +01:00
return css ;
2019-01-07 20:25:35 +01:00
}
2019-09-04 12:34:02 +02:00
2020-02-10 21:31:44 +01:00
loadThemes ( ) {
BDFDB . DOMUtils . remove ( ".themerepo-loadingicon" ) ;
let settings = BDFDB . DataUtils . load ( this , "settings" ) ;
let getThemeInfo , outdated = 0 , newentries = 0 , i = 0 , NFLDreplace = null ;
let tags = [ "name" , "description" , "author" , "version" ] ;
let newentriesdata = BDFDB . DataUtils . load ( this , "newentriesdata" ) , customList = this . getCustomList ( ) ;
cachedThemes = ( newentriesdata . urlbase64 ? atob ( newentriesdata . urlbase64 ) . split ( "\n" ) : [ ] ) . concat ( customList ) ;
BDFDB . LibraryRequires . request ( "https://mwittrien.github.io/BetterDiscordAddons/Plugins/ThemeRepo/res/ThemeList.txt" , ( error , response , body ) => {
if ( ! error && body ) {
body = body . replace ( /[\r\t]/g , "" ) ;
BDFDB . DataUtils . save ( btoa ( body ) , this , "newentriesdata" , "urlbase64" ) ;
loadedThemes = { } ;
grabbedThemes = body . split ( "\n" ) . filter ( n => n ) ;
BDFDB . LibraryRequires . request ( "https://github.com/NFLD99/Better-Discord" , ( error2 , response2 , body2 ) => {
if ( ! error2 && body2 ) {
NFLDreplace = /\/NFLD99\/Better-Discord\/tree\/master\/Themes_[^"]+">([^<]+)/i . exec ( body2 ) ;
NFLDreplace = NFLDreplace && NFLDreplace . length > 1 ? NFLDreplace [ 1 ] : null ;
2019-05-21 23:29:25 +02:00
}
2020-02-10 21:31:44 +01:00
foundThemes = grabbedThemes . concat ( customList ) ;
2019-05-21 23:29:25 +02:00
2020-02-10 21:31:44 +01:00
loading = { is : true , timeout : BDFDB . TimeUtils . timeout ( _ => {
BDFDB . TimeUtils . clear ( loading . timeout ) ;
if ( this . started ) {
if ( loading . is && loading . amount < 4 ) BDFDB . TimeUtils . timeout ( _ => { this . loadThemes ( ) ; } , 10000 ) ;
loading = { is : false , timeout : null , amount : loading . amount } ;
}
} , 1200000 ) , amount : loading . amount + 1 } ;
let loadingicon = BDFDB . DOMUtils . create ( themeRepoIcon ) ;
BDFDB . DOMUtils . addClass ( loadingicon , "themerepo-loadingicon" ) ;
loadingicon . addEventListener ( "mouseenter" , _ => {
BDFDB . TooltipUtils . create ( loadingicon , this . getLoadingTooltipText ( ) , {
type : "left" ,
delay : 500 ,
style : "max-width: unset;" ,
selector : "themerepo-loading-tooltip"
2019-05-21 23:29:25 +02:00
} ) ;
2020-02-10 21:31:44 +01:00
} ) ;
BDFDB . PluginUtils . addLoadingIcon ( loadingicon ) ;
getThemeInfo ( _ => {
if ( ! this . started ) {
BDFDB . TimeUtils . clear ( loading . timeout ) ;
return ;
}
BDFDB . TimeUtils . clear ( loading . timeout ) ;
BDFDB . DOMUtils . remove ( loadingicon , ".themerepo-loadingicon" ) ;
loading = { is : false , timeout : null , amount : loading . amount } ;
BDFDB . LogUtils . log ( "Finished fetching Themes." , this . name ) ;
if ( document . querySelector ( ".bd-themerepobutton" ) ) BDFDB . NotificationUtils . toast ( ` Finished fetching Themes. ` , { type : "success" } ) ;
if ( ( settings . notifyOutdated || settings . notifyOutdated == undefined ) && outdated > 0 ) {
let oldbarbutton = document . querySelector ( ".themerepo-outdate-notice " + BDFDB . dotCN . noticedismiss ) ;
if ( oldbarbutton ) oldbarbutton . click ( ) ;
let bar = BDFDB . NotificationUtils . notice ( ` ${ outdated } of your Themes ${ outdated == 1 ? "is" : "are" } outdated. Check: ` , {
type : "danger" ,
btn : "ThemeRepo" ,
selector : "themerepo-notice themerepo-outdate-notice" ,
customicon : themeRepoIcon . replace ( /#7289da/gi , "#FFF" ) . replace ( /#7f8186/gi , "#B9BBBE" )
} ) ;
bar . querySelector ( BDFDB . dotCN . noticebutton ) . addEventListener ( "click" , _ => {
this . openThemeRepoModal ( { showOnlyOutdated : true } ) ;
bar . querySelector ( BDFDB . dotCN . noticedismiss ) . click ( ) ;
2019-05-21 23:29:25 +02:00
} ) ;
}
2020-02-10 21:31:44 +01:00
if ( ( settings . notifyNewentries || settings . notifyNewentries == undefined ) && newentries > 0 ) {
let oldbarbutton = document . querySelector ( ".themerepo-newentries-notice " + BDFDB . dotCN . noticedismiss ) ;
if ( oldbarbutton ) oldbarbutton . click ( ) ;
let single = newentries == 1 ;
let bar = BDFDB . NotificationUtils . notice ( ` There ${ single ? "is" : "are" } ${ newentries } new Theme ${ single ? "" : "s" } in the Repo. Check: ` , {
type : "success" ,
btn : "ThemeRepo" ,
selector : "themerepo-notice themerepo-newentries-notice" ,
customicon : themeRepoIcon . replace ( /#7289da/gi , "#FFF" ) . replace ( /#7f8186/gi , "#B9BBBE" )
} ) ;
bar . querySelector ( BDFDB . dotCN . noticebutton ) . addEventListener ( "click" , _ => {
this . openThemeRepoModal ( { forcedSort : "new" , forcedOrder : "asc" } ) ;
bar . querySelector ( BDFDB . dotCN . noticedismiss ) . click ( ) ;
} ) ;
}
if ( BDFDB . UserUtils . me . id == "278543574059057154" ) {
let wrongUrls = [ ] ;
for ( let url of foundThemes ) if ( url && ! loadedThemes [ url ] && ! wrongUrls . includes ( url ) ) wrongUrls . push ( url ) ;
if ( wrongUrls . length ) {
let bar = BDFDB . NotificationUtils . notice ( ` ThemeRepo: ${ wrongUrls . length } Theme ${ wrongUrls . length > 1 ? "s" : "" } could not be loaded. ` , {
type : "danger" ,
btn : "List" ,
selector : "themerepo-notice themerepo-fail-notice" ,
customicon : themeRepoIcon . replace ( /#7289da/gi , "#FFF" ) . replace ( /#7f8186/gi , "#B9BBBE" )
} ) ;
bar . querySelector ( BDFDB . dotCN . noticebutton ) . addEventListener ( "click" , e => {
let toast = BDFDB . NotificationUtils . toast ( wrongUrls . join ( "\n" ) , { type : "error" } ) ;
toast . style . setProperty ( "overflow" , "hidden" ) ;
for ( let url of wrongUrls ) console . log ( url ) ;
} ) ;
}
}
BDFDB . LibraryRequires . request ( "https://mwittrien.github.io/BetterDiscordAddons/Plugins/ThemeRepo/res/GeneratorList.txt" , ( error3 , response3 , body3 ) => {
if ( ! error3 && body3 ) for ( let url of body3 . replace ( /[\r\t]/g , "" ) . split ( "\n" ) . filter ( n => n ) ) if ( loadedThemes [ url ] ) generatorThemes . push ( url ) ;
} ) ;
2019-09-25 17:35:00 +02:00
} ) ;
2019-05-21 23:29:25 +02:00
} ) ;
2018-10-18 12:10:34 +02:00
}
2020-02-10 21:31:44 +01:00
} ) ;
getThemeInfo = ( callback ) => {
if ( i >= foundThemes . length || ! this . started || ! loading . is ) {
callback ( ) ;
return ;
}
let url = foundThemes [ i ] ;
let requesturl = NFLDreplace && url . includes ( "NFLD99/Better-Discord/master/Themes" ) ? url . replace ( "master/Themes" , "master/" + NFLDreplace ) : url ;
BDFDB . LibraryRequires . request ( requesturl , ( error , response , body ) => {
if ( ! response ) {
if ( url && BDFDB . ArrayUtils . getAllIndexes ( foundThemes , url ) . length < 2 ) foundThemes . push ( url ) ;
}
else if ( body && body . indexOf ( "404: Not Found" ) != 0 && response . statusCode == 200 ) {
let theme = { } , text = body ;
if ( ( text . split ( "*//" ) . length > 1 || text . indexOf ( "/**" ) == 0 ) && text . split ( "\n" ) . length > 1 ) {
let hasMETAline = text . replace ( /\s/g , "" ) . indexOf ( "//META{" ) ;
if ( hasMETAline < 20 && hasMETAline > - 1 ) {
let searchtext = text . replace ( /\s*:\s*/g , ":" ) . replace ( /\s*}\s*/g , "}" ) ;
for ( let tag of tags ) {
let result = searchtext . split ( '"' + tag + '":"' ) ;
result = result . length > 1 ? result [ 1 ] . split ( '",' ) [ 0 ] . split ( '"}' ) [ 0 ] : null ;
result = result && tag != "version" ? result . charAt ( 0 ) . toUpperCase ( ) + result . slice ( 1 ) : result ;
theme [ tag ] = result ? result . trim ( ) : result ;
}
2019-06-20 10:07:17 +02:00
}
2020-02-10 21:31:44 +01:00
else {
let searchtext = text . replace ( /[\r\t| ]*\*\s*/g , "*" ) ;
for ( let tag of tags ) {
let result = searchtext . split ( '@' + tag + ' ' ) ;
result = result . length > 1 ? result [ 1 ] . split ( '\n' ) [ 0 ] : null ;
result = result && tag != "version" ? result . charAt ( 0 ) . toUpperCase ( ) + result . slice ( 1 ) : result ;
theme [ tag ] = result ? result . trim ( ) : result ;
}
}
let valid = true ;
for ( let tag of tags ) if ( theme [ tag ] === null ) valid = false ;
if ( valid ) {
theme . fullcss = text ;
theme . css = hasMETAline < 20 && hasMETAline > - 1 ? text . split ( "\n" ) . slice ( 1 ) . join ( "\n" ) . replace ( /[\r|\n|\t]/g , "" ) : text . replace ( /[\r|\n|\t]/g , "" ) ;
theme . url = url ;
theme . requesturl = requesturl ;
loadedThemes [ url ] = theme ;
let instTheme = BDFDB . BDUtils . getTheme ( theme . name ) ;
if ( instTheme && instTheme . author . toUpperCase ( ) == theme . author . toUpperCase ( ) && instTheme . version != theme . version ) outdated ++ ;
if ( ! cachedThemes . includes ( url ) ) newentries ++ ;
2019-06-20 10:07:17 +02:00
}
2018-10-11 10:21:26 +02:00
}
}
2020-02-10 21:31:44 +01:00
i ++ ;
2020-03-30 19:39:32 +02:00
let loadingTooltip = document . querySelector ( ".themerepo-loading-tooltip" ) ;
if ( loadingTooltip ) {
2020-05-25 17:07:57 +02:00
BDFDB . DOMUtils . setText ( loadingTooltip . querySelector ( BDFDB . dotCN . tooltipcontent ) , this . getLoadingTooltipText ( ) ) ;
2020-03-30 19:39:32 +02:00
loadingTooltip . update ( ) ;
2020-02-10 21:31:44 +01:00
}
getThemeInfo ( callback ) ;
} ) ;
}
2018-10-11 10:21:26 +02:00
}
2019-09-04 12:34:02 +02:00
2020-02-10 21:31:44 +01:00
getLoadingTooltipText ( ) {
return ` Loading ThemeRepo - [ ${ Object . keys ( loadedThemes ) . length } / ${ Object . keys ( grabbedThemes ) . length } ] ` ;
}
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
checkForNewThemes ( ) {
BDFDB . LibraryRequires . request ( "https://mwittrien.github.io/BetterDiscordAddons/Plugins/ThemeRepo/res/ThemeList.txt" , ( error , response , result ) => {
if ( response && ! BDFDB . equals ( result . replace ( /\t|\r/g , "" ) . split ( "\n" ) . filter ( n => n ) , grabbedThemes ) ) {
loading = { is : false , timeout : null , amount : 0 } ;
this . loadThemes ( ) ;
}
} ) ;
}
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
downloadTheme ( data ) {
BDFDB . LibraryRequires . request ( data . requesturl , ( error , response , body ) => {
if ( error ) BDFDB . NotificationUtils . toast ( ` Unable to download Theme " ${ data . name } ". ` , { type : "danger" } ) ;
else this . createThemeFile ( data . requesturl . split ( "/" ) . pop ( ) , body ) ;
} ) ;
}
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
createThemeFile ( filename , content ) {
BDFDB . LibraryRequires . fs . writeFile ( BDFDB . LibraryRequires . path . join ( BDFDB . BDUtils . getThemesFolder ( ) , filename ) , content , ( error ) => {
if ( error ) BDFDB . NotificationUtils . toast ( ` Unable to save Theme " ${ filename } ". ` , { type : "danger" } ) ;
else BDFDB . NotificationUtils . toast ( ` Successfully saved Theme " ${ filename } ". ` , { type : "success" } ) ;
} ) ;
}
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
applyTheme ( data ) {
if ( BDFDB . BDUtils . isThemeEnabled ( data . name ) == false ) {
2020-03-29 22:13:28 +02:00
let id = data . name . replace ( /^[^a-z]+|[^\w-]+/gi , "-" ) ;
BDFDB . DOMUtils . remove ( ` style# ${ id } ` ) ;
document . head . appendChild ( BDFDB . DOMUtils . create ( ` <style id= ${ id } > ${ data . css } </style> ` ) ) ;
2020-03-15 10:21:23 +01:00
BDFDB . BDUtils . enableTheme ( data . name , false ) ;
2020-02-10 21:31:44 +01:00
BDFDB . LogUtils . log ( ` Applied Theme ${ data . name } . ` , this . name ) ;
}
2018-10-11 10:21:26 +02:00
}
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
deleteThemeFile ( data ) {
let filename = data . requesturl . split ( "/" ) . pop ( ) ;
BDFDB . LibraryRequires . fs . unlink ( BDFDB . LibraryRequires . path . join ( BDFDB . BDUtils . getThemesFolder ( ) , filename ) , ( error ) => {
if ( error ) BDFDB . NotificationUtils . toast ( ` Unable to delete Theme " ${ filename } ". ` , { type : "danger" } ) ;
else BDFDB . NotificationUtils . toast ( ` Successfully deleted Theme " ${ filename } ". ` ) ;
} ) ;
}
2019-01-26 22:45:19 +01:00
2020-02-10 21:31:44 +01:00
removeTheme ( data ) {
if ( BDFDB . BDUtils . isThemeEnabled ( data . name ) == true ) {
2020-03-29 22:13:28 +02:00
let id = data . name . replace ( /^[^a-z]+|[^\w-]+/gi , "-" ) ;
BDFDB . DOMUtils . remove ( ` style# ${ id } ` ) ;
2020-03-15 10:21:23 +01:00
BDFDB . BDUtils . disableTheme ( data . name , false ) ;
2020-02-10 21:31:44 +01:00
BDFDB . LogUtils . log ( ` Removed Theme ${ data . name } . ` , this . name ) ;
}
2018-10-11 10:21:26 +02:00
}
}
2020-02-10 21:31:44 +01:00
} ) ( ) ;