2016-05-24 22:33:24 +02:00
2015-08-27 15:46:53 +02:00
/ * B e t t e r D i s c o r d A p p C o r e J a v a S c r i p t
2016-04-02 09:14:20 +02:00
* Version : 1.53
2015-08-27 15:46:53 +02:00
* Author : Jiiks | http : //jiiks.net
* Date : 27 / 08 / 2015 - 16 : 36
2016-04-30 23:25:14 +02:00
* Last Update : 01 / 05 / 2016
2015-08-27 15:46:53 +02:00
* https : //github.com/Jiiks/BetterDiscordApp
* /
2016-05-24 22:33:24 +02:00
var settingsPanel , emoteModule , utils , quickEmoteMenu , opublicServers , voiceMode , pluginModule , themeModule , customCssEditor , dMode ;
var jsVersion = 1.73 ;
2016-01-17 00:05:29 +01:00
var supportedVersion = "0.2.5" ;
2015-08-29 11:36:47 +02:00
var mainObserver ;
2015-08-27 15:46:53 +02:00
var twitchEmoteUrlStart = "https://static-cdn.jtvnw.net/emoticons/v1/" ;
var twitchEmoteUrlEnd = "/1.0" ;
var ffzEmoteUrlStart = "https://cdn.frankerfacez.com/emoticon/" ;
var ffzEmoteUrlEnd = "/1" ;
2015-12-10 04:01:24 +01:00
var bttvEmoteUrlStart = "https://cdn.betterttv.net/emote/" ;
var bttvEmoteUrlEnd = "/1x" ;
2015-08-27 15:46:53 +02:00
2015-10-26 06:27:55 +01:00
var mainCore ;
2015-08-27 15:46:53 +02:00
2015-08-29 11:36:47 +02:00
var settings = {
2016-04-09 21:56:29 +02:00
"Save logs locally" : { "id" : "bda-gs-0" , "info" : "Saves chat logs locally" , "implemented" : false , "hidden" : false , "cat" : "core" } ,
"Public Servers" : { "id" : "bda-gs-1" , "info" : "Display public servers button" , "implemented" : true , "hidden" : false , "cat" : "core" } ,
"Minimal Mode" : { "id" : "bda-gs-2" , "info" : "Hide elements and reduce the size of elements." , "implemented" : true , "hidden" : false , "cat" : "core" } ,
"Voice Mode" : { "id" : "bda-gs-4" , "info" : "Only show voice chat" , "implemented" : true , "hidden" : false , "cat" : "core" } ,
"Hide Channels" : { "id" : "bda-gs-3" , "info" : "Hide channels in minimal mode" , "implemented" : true , "hidden" : false , "cat" : "core" } ,
"Dark Mode" : { "id" : "bda-gs-5" , "info" : "Make certain elements dark by default(wip)" , "implemented" : true , "hidden" : false , "cat" : "core" } ,
"Override Default Emotes" : { "id" : "bda-es-5" , "info" : "Override default emotes" , "implemented" : false , "hidden" : false , "cat" : "core" } ,
"Voice Disconnect" : { "id" : "bda-dc-0" , "info" : "Disconnect from voice server when closing Discord" , "implemented" : true , "hidden" : false , "cat" : "core" } ,
2016-05-06 20:31:20 +02:00
"Custom css live update" : { "id" : "bda-css-0" , "info" : "" , "implemented" : true , "hidden" : true , "cat" : "core" } ,
"Custom css auto udpate" : { "id" : "bda-css-1" , "info" : "" , "implemented" : true , "hidden" : true , "cat" : "core" } ,
"24 Hour Timestamps" : { "id" : "bda-gs-6" , "info" : "Replace 12hr timestamps with proper ones" , "implemented" : true , "hidden" : false , "cat" : "core" } ,
2016-05-20 04:30:54 +02:00
"Coloured Text" : { "id" : "bda-gs-7" , "info" : "Make text colour the same as role colour" , "implemented" : true , "hidden" : false , "cat" : "core" } ,
2016-05-24 22:33:24 +02:00
"Developer Mode" : { "id" : "bda-gs-8" , "info" : "Developer Mode" , "implemented" : true , "hidden" : false , "cat" : "core" } ,
2016-04-09 21:56:29 +02:00
2016-05-20 04:30:54 +02:00
"Twitch Emotes" : { "id" : "bda-es-7" , "info" : "Show Twitch emotes" , "implemented" : true , "hidden" : false , "cat" : "emote" } ,
2016-04-09 21:56:29 +02:00
"FrankerFaceZ Emotes" : { "id" : "bda-es-1" , "info" : "Show FrankerFaceZ Emotes" , "implemented" : true , "hidden" : false , "cat" : "emote" } ,
"BetterTTV Emotes" : { "id" : "bda-es-2" , "info" : "Show BetterTTV Emotes" , "implemented" : true , "hidden" : false , "cat" : "emote" } ,
"Emote Menu" : { "id" : "bda-es-0" , "info" : "Show Twitch/Favourite emotes in emote menu" , "implemented" : true , "hidden" : false , "cat" : "emote" } ,
"Emoji Menu" : { "id" : "bda-es-9" , "info" : "Show Discord emoji menu" , "implemented" : true , "hidden" : false , "cat" : "emote" } ,
"Emote Autocomplete" : { "id" : "bda-es-3" , "info" : "Autocomplete emote commands" , "implemented" : false , "hidden" : false , "cat" : "emote" } ,
"Emote Auto Capitalization" : { "id" : "bda-es-4" , "info" : "Autocapitalize emote commands" , "implemented" : true , "hidden" : false , "cat" : "emote" } ,
2016-05-20 04:30:54 +02:00
"Show Names" : { "id" : "bda-es-6" , "info" : "Show emote names on hover" , "implemented" : true , "hidden" : false , "cat" : "emote" } ,
2016-04-09 21:56:29 +02:00
"Show emote modifiers" : { "id" : "bda-es-8" , "info" : "Enable emote mods" , "implemented" : true , "hidden" : false , "cat" : "emote" } ,
2016-01-08 16:33:43 +01:00
} ;
2015-08-29 11:36:47 +02:00
2015-11-27 01:14:33 +01:00
var links = {
2016-05-21 19:09:22 +02:00
"Jiiks.net" : { "text" : "Jiiks.net" , "href" : "thtp://jiiks.net" , "target" : "_blank" } ,
2015-11-27 01:14:33 +01:00
"twitter" : { "text" : "Twitter" , "href" : "http://twitter.com/jiiksi" , "target" : "_blank" } ,
"github" : { "text" : "Github" , "href" : "http://github.com/jiiks" , "target" : "_blank" }
} ;
2015-08-29 11:36:47 +02:00
var defaultCookie = {
2016-01-08 16:33:43 +01:00
"version" : jsVersion ,
2015-11-29 18:21:58 +01:00
"bda-gs-0" : false ,
"bda-gs-1" : true ,
2015-12-23 22:48:59 +01:00
"bda-gs-2" : false ,
2015-11-29 18:21:58 +01:00
"bda-gs-3" : false ,
"bda-gs-4" : false ,
2016-04-09 14:51:59 +02:00
"bda-gs-5" : true ,
2016-05-06 20:31:20 +02:00
"bda-gs-6" : false ,
"bda-gs-7" : false ,
2016-05-24 22:33:24 +02:00
"bda-gs-8" : false ,
2015-11-29 18:21:58 +01:00
"bda-es-0" : true ,
2015-12-23 09:56:16 +01:00
"bda-es-1" : true ,
2015-12-23 22:48:59 +01:00
"bda-es-2" : true ,
2015-11-29 18:21:58 +01:00
"bda-es-3" : false ,
"bda-es-4" : false ,
"bda-es-5" : true ,
"bda-es-6" : true ,
"bda-es-7" : true ,
2016-04-02 09:56:19 +02:00
"bda-es-8" : true ,
2016-04-08 00:21:30 +02:00
"bda-jd" : true ,
"bda-es-8" : true ,
"bda-dc-0" : false ,
"bda-css-0" : false ,
2016-04-09 08:04:34 +02:00
"bda-css-1" : false ,
"bda-es-9" : true
2015-11-29 18:21:58 +01:00
} ;
var bdchangelog = {
2015-12-11 10:21:16 +01:00
"changes" : {
2016-05-24 22:33:24 +02:00
"0a" : {
"title" : "1.73 : Native sub emotes" ,
"text" : "Native sub emote support disabled for now due to a critical bug" ,
"img" : ""
} ,
"1a" : {
"title" : "1.73 : Initial Developer Mode" ,
"text" : "Enable developer mode from settings!" ,
"img" : ""
} ,
2016-05-21 11:19:29 +02:00
"a" : {
"title" : "v1.72 : Public Servers" ,
"text" : "Public servers now have categories, description, tags, dark mode and more!" ,
"img" : ""
} ,
"b" : {
"title" : "v1.72 : Import/Export" ,
"text" : "Import/Export buttons now disappear in themes/plugins tabs to avoid confusion" ,
"img" : ""
} ,
"c" : {
"title" : "v1.72 : Changelog" ,
"text" : "You can now reopen this changelog from the settings" ,
"img" : ""
} ,
"d" : {
2016-05-20 04:30:54 +02:00
"title" : "v1.71 : Hide Twitch emotes" ,
"text" : "Hide all emotes option now toggles Twitch emotes instead!" ,
"img" : ""
} ,
2016-05-21 11:19:29 +02:00
"e" : {
2016-05-20 04:30:54 +02:00
"title" : "v1.71 : Override FFZ emote" ,
"text" : "Use the <code class=\"inline\">:bttv</code> emote modifier to override a FFZ emote with a BTTV one!" ,
"img" : ""
} ,
2016-05-21 11:19:29 +02:00
"f" : {
2016-05-06 20:31:20 +02:00
"title" : "v1.70 : 0.2.8 Support" ,
"text" : "Added support for Core version 0.2.8." ,
"img" : ""
} ,
2016-05-21 11:19:29 +02:00
"g" : {
2016-05-06 20:31:20 +02:00
"title" : "v1.70 : Setting Import/Export" ,
"text" : "You can now import and export your settings!" ,
2016-04-09 14:51:59 +02:00
"img" : ""
} ,
2016-05-21 11:19:29 +02:00
"h" : {
2016-05-06 20:31:20 +02:00
"title" : "v1.70 : Public Server List Infinite Scroll" ,
2016-05-01 11:56:06 +02:00
"text" : "Public server list now has the ability to load more than 20 servers." ,
2016-04-04 16:22:53 +02:00
"img" : ""
2016-05-06 20:31:20 +02:00
} ,
2016-05-21 11:19:29 +02:00
"i" : {
2016-05-06 20:31:20 +02:00
"title" : "v1.70 : 24 hour timestamps" ,
"text" : "Replace 12 hour timestamp with 24 hour timestamps!" ,
"img" : ""
} ,
2016-05-21 11:19:29 +02:00
"j" : {
2016-05-06 20:31:20 +02:00
"title" : "v1.70 : Coloured text" ,
"text" : "Make text colour the same as role colour!" ,
"img" : ""
2016-04-04 16:22:53 +02:00
}
} ,
"fixes" : {
2016-05-21 11:19:29 +02:00
"a" : {
"title" : "v1.72 : Settings panel" ,
"text" : "Settings panel will now show no matter how you open it!" ,
"img" : ""
} ,
"b" : {
"title" : "v1.72 : Fixed emote edit bug" ,
"text" : "Edits now appear properly even with emotes!" ,
"img" : ""
} ,
"c" : {
"title" : "v1.72 : Public servers" ,
"text" : "Public servers button is visible again!" ,
"img" : ""
} ,
"d" : {
"title" : "v1.72 : Public servers" ,
"text" : "Updated public servers api endpoint url for fetching correct serverlist." ,
"img" : ""
} ,
"e" : {
2016-05-20 04:30:54 +02:00
"title" : "v1.71 : Fixed emotes and edit" ,
"text" : "Emotes work again! So does editing emotes!" ,
"img" : ""
} ,
2016-05-21 11:19:29 +02:00
"f" : {
2016-05-20 04:30:54 +02:00
"title" : "Spoilers are currently broken :(" ,
"text" : "Ps. I know this in the fixes section :o" ,
"img" : ""
2015-11-29 18:21:58 +01:00
}
}
2015-08-29 11:36:47 +02:00
} ;
var settingsCookie = { } ;
2015-08-27 15:46:53 +02:00
2015-10-26 06:27:55 +01:00
function Core ( ) { }
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
Core . prototype . init = function ( ) {
2015-11-27 11:07:59 +01:00
var self = this ;
2016-04-30 23:25:14 +02:00
var lVersion = ( typeof ( version ) === "undefined" ) ? bdVersion : version ;
if ( lVersion < supportedVersion ) {
this . alert ( "Not Supported" , "BetterDiscord v" + lVersion + "(your version)" + " is not supported by the latest js(" + jsVersion + ").<br><br> Please download the latest version from <a href='https://betterdiscord.net' target='_blank'>BetterDiscord.net</a>" ) ;
2015-10-26 06:27:55 +01:00
return ;
}
2015-08-29 11:36:47 +02:00
2015-08-27 15:46:53 +02:00
utils = new Utils ( ) ;
2015-12-31 18:27:43 +01:00
var sock = new BdWSocket ( ) ;
sock . start ( ) ;
2015-11-01 12:37:04 +01:00
utils . getHash ( ) ;
2015-08-27 15:46:53 +02:00
emoteModule = new EmoteModule ( ) ;
quickEmoteMenu = new QuickEmoteMenu ( ) ;
2015-10-26 06:27:55 +01:00
voiceMode = new VoiceMode ( ) ;
2016-05-24 22:33:24 +02:00
dMode = new devMode ( ) ;
2015-08-27 15:46:53 +02:00
emoteModule . init ( ) ;
2015-08-29 11:36:47 +02:00
this . initSettings ( ) ;
this . initObserver ( ) ;
2015-10-26 06:27:55 +01:00
//Incase were too fast
function gwDefer ( ) {
console . log ( new Date ( ) . getTime ( ) + " Defer" ) ;
2016-01-08 16:33:43 +01:00
if ( $ ( ".guilds-wrapper .guilds" ) . children ( ) . length > 0 ) {
2015-10-26 06:27:55 +01:00
console . log ( new Date ( ) . getTime ( ) + " Defer Loaded" ) ;
2016-01-13 23:53:18 +01:00
var guilds = $ ( ".guilds>li:first-child" ) ;
2015-10-26 06:27:55 +01:00
2015-11-27 11:07:59 +01:00
var showChannelsButton = $ ( "<button/>" , {
class : "btn" ,
id : "bd-show-channels" ,
text : "R" ,
css : {
"cursor" : "pointer"
} ,
2016-01-08 16:33:43 +01:00
click : function ( ) {
2015-11-27 11:07:59 +01:00
settingsCookie [ "bda-gs-3" ] = false ;
$ ( "body" ) . removeClass ( "bd-minimal-chan" ) ;
self . saveSettings ( ) ;
}
} ) ;
$ ( ".guilds-wrapper" ) . prepend ( showChannelsButton ) ;
opublicServers = new PublicServers ( ) ;
2016-04-08 00:21:30 +02:00
customCssEditor = new CustomCssEditor ( ) ;
2015-12-12 07:07:56 +01:00
pluginModule = new PluginModule ( ) ;
pluginModule . loadPlugins ( ) ;
2016-01-08 16:33:43 +01:00
if ( typeof ( themesupport2 ) !== "undefined" ) {
2015-12-15 08:37:15 +01:00
themeModule = new ThemeModule ( ) ;
themeModule . loadThemes ( ) ;
}
2015-12-12 07:07:56 +01:00
2015-08-31 15:20:33 +02:00
settingsPanel = new SettingsPanel ( ) ;
settingsPanel . init ( ) ;
2015-10-26 06:27:55 +01:00
2015-08-31 15:20:33 +02:00
quickEmoteMenu . init ( false ) ;
2016-01-08 16:33:43 +01:00
$ ( "#tc-settings-button" ) . on ( "click" , function ( ) {
settingsPanel . show ( ) ;
} ) ;
2016-04-07 14:22:33 +02:00
2016-04-08 00:21:30 +02:00
window . addEventListener ( "beforeunload" , function ( ) {
if ( settingsCookie [ "bda-dc-0" ] ) {
$ ( '.btn.btn-disconnect' ) . click ( ) ;
}
} ) ;
2016-05-06 20:31:20 +02:00
$ ( document ) . on ( "mousedown" , function ( e ) {
//bd modal hiders
} ) ;
2016-04-08 00:21:30 +02:00
2015-12-11 04:24:28 +01:00
opublicServers . init ( ) ;
2015-10-26 06:27:55 +01:00
emoteModule . autoCapitalize ( ) ;
2015-11-29 18:21:58 +01:00
/*Display new features in BetterDiscord*/
2016-01-08 16:33:43 +01:00
if ( settingsCookie [ "version" ] < jsVersion ) {
2015-11-29 18:21:58 +01:00
var cl = self . constructChangelog ( ) ;
$ ( "body" ) . append ( cl ) ;
settingsCookie [ "version" ] = jsVersion ;
self . saveSettings ( ) ;
}
2015-12-27 16:39:10 +01:00
2015-12-12 03:28:42 +01:00
$ ( "head" ) . append ( "<style>.CodeMirror{ min-width:100%; }</style>" ) ;
2016-01-07 09:01:20 +01:00
$ ( "head" ) . append ( '<style id="bdemotemenustyle"></style>' ) ;
2016-01-02 08:06:25 +01:00
2015-08-31 15:20:33 +02:00
} else {
2015-10-26 06:27:55 +01:00
setTimeout ( gwDefer , 100 ) ;
2015-08-31 15:20:33 +02:00
}
2015-10-26 06:27:55 +01:00
}
2015-08-31 15:59:34 +02:00
2016-01-08 16:33:43 +01:00
$ ( document ) . ready ( function ( ) {
2015-10-26 06:27:55 +01:00
setTimeout ( gwDefer , 1000 ) ;
} ) ;
} ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
Core . prototype . initSettings = function ( ) {
if ( $ . cookie ( "better-discord" ) == undefined ) {
2015-08-29 11:36:47 +02:00
settingsCookie = defaultCookie ;
this . saveSettings ( ) ;
} else {
this . loadSettings ( ) ;
2016-01-08 16:33:43 +01:00
for ( var setting in defaultCookie ) {
if ( settingsCookie [ setting ] == undefined ) {
2015-10-26 06:27:55 +01:00
settingsCookie [ setting ] = defaultCookie [ setting ] ;
2015-08-29 11:36:47 +02:00
this . saveSettings ( ) ;
}
2015-08-27 15:46:53 +02:00
}
}
2015-10-26 06:27:55 +01:00
} ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
Core . prototype . saveSettings = function ( ) {
$ . cookie ( "better-discord" , JSON . stringify ( settingsCookie ) , {
expires : 365 ,
path : '/'
} ) ;
2015-10-26 06:27:55 +01:00
} ;
2015-08-29 11:36:47 +02:00
2016-01-08 16:33:43 +01:00
Core . prototype . loadSettings = function ( ) {
2015-08-29 11:36:47 +02:00
settingsCookie = JSON . parse ( $ . cookie ( "better-discord" ) ) ;
2015-10-26 06:27:55 +01:00
} ;
2016-04-09 08:04:34 +02:00
2016-01-07 10:19:46 +01:00
var botlist = [ "119598467310944259" ] ; //Temp
2016-01-08 16:33:43 +01:00
Core . prototype . initObserver = function ( ) {
mainObserver = new MutationObserver ( function ( mutations ) {
2016-05-21 11:19:29 +02:00
2016-01-08 16:33:43 +01:00
mutations . forEach ( function ( mutation ) {
2016-05-21 11:19:29 +02:00
if ( settingsPanel !== undefined )
settingsPanel . inject ( mutation ) ;
2016-04-09 08:04:34 +02:00
if ( $ ( mutation . target ) . find ( ".emoji-picker" ) . length ) {
var fc = mutation . target . firstChild ;
if ( fc . classList . contains ( "popout" ) ) {
quickEmoteMenu . obsCallback ( $ ( fc ) ) ;
}
}
2016-04-04 16:22:53 +02:00
if ( typeof pluginModule !== "undefined" ) pluginModule . rawObserver ( mutation ) ;
2016-01-08 16:33:43 +01:00
if ( mutation . target . getAttribute ( 'class' ) != null ) {
2016-01-24 04:16:40 +01:00
//console.log(mutation.target)
if ( mutation . target . classList . contains ( 'title-wrap' ) || mutation . target . classList . contains ( 'chat' ) ) {
2016-04-09 08:04:34 +02:00
// quickEmoteMenu.obsCallback();
2015-11-19 00:35:39 +01:00
voiceMode . obsCallback ( ) ;
2016-01-08 16:33:43 +01:00
if ( typeof pluginModule !== "undefined" ) pluginModule . channelSwitch ( ) ;
2015-12-27 16:39:10 +01:00
}
2016-01-08 16:33:43 +01:00
if ( mutation . target . getAttribute ( 'class' ) . indexOf ( 'scroller messages' ) != - 1 ) {
if ( typeof pluginModule !== "undefined" ) pluginModule . newMessage ( ) ;
2015-08-29 21:02:20 +02:00
}
2016-05-06 20:31:20 +02:00
if ( settingsCookie [ "bda-gs-6" ] ) {
$ ( ".timestamp" ) . not ( "[data-24]" ) . each ( function ( ) {
var t = $ ( this ) ;
t . attr ( "data-24" , true ) ;
var text = t . text ( ) ;
var matches = /(.*)?at\s+(\d{1,2}):(\d{1,2})\s+(.*)/ . exec ( text ) ;
if ( matches == null ) return true ;
if ( matches . length < 5 ) return true ;
var h = parseInt ( matches [ 2 ] ) ;
if ( matches [ 4 ] == "AM" ) {
if ( h == 12 ) h -= 12 ;
} else if ( matches [ 4 ] == "PM" ) {
if ( h < 12 ) h += 12 ;
}
matches [ 2 ] = ( '0' + h ) . slice ( - 2 ) ;
2016-05-21 11:19:29 +02:00
t . text ( matches [ 1 ] + " at " + matches [ 2 ] + ":" + matches [ 3 ] ) ;
2016-05-06 20:31:20 +02:00
} ) ;
}
if ( settingsCookie [ "bda-gs-7" ] ) {
$ ( ".user-name" ) . not ( "[data-colour]" ) . each ( function ( ) {
var t = $ ( this ) ;
var color = t . css ( "color" ) ;
if ( color == "rgb(255, 255, 255)" ) return true ;
t . closest ( ".message-group" ) . find ( ".markup" ) . not ( "[data-colour]" ) . each ( function ( ) {
$ ( this ) . attr ( "data-colour" , true ) ;
$ ( this ) . css ( "color" , color ) ;
} ) ;
} ) ;
}
2015-08-29 11:36:47 +02:00
}
emoteModule . obsCallback ( mutation ) ;
} ) ;
} ) ;
2015-10-26 06:27:55 +01:00
//noinspection JSCheckFunctionSignatures
2016-01-08 16:33:43 +01:00
mainObserver . observe ( document , {
childList : true ,
subtree : true
} ) ;
2015-10-26 06:27:55 +01:00
} ;
2015-08-29 11:36:47 +02:00
2016-01-08 16:33:43 +01:00
Core . prototype . constructChangelog = function ( ) {
2015-11-29 18:21:58 +01:00
var changeLog = '' +
'<div id="bd-wn-modal" class="modal" style="opacity:1;">' +
' <div class="modal-inner">' +
2016-04-09 08:04:34 +02:00
' <div id="bdcl" class="markdown-modal change-log"> ' +
' <div class="markdown-modal-header">' +
2016-04-02 09:14:20 +02:00
' <strong>What\'s new in BetterDiscord JS' + jsVersion + '</strong>' +
2016-04-09 08:04:34 +02:00
' <button class="markdown-modal-close" onclick=\'$("#bd-wn-modal").remove();\'></button>' +
2015-11-29 18:21:58 +01:00
' </div><!--header-->' +
' <div class="scroller-wrap">' +
' <div class="scroller">' ;
2016-01-08 16:33:43 +01:00
if ( bdchangelog . changes != null ) {
2015-11-29 18:21:58 +01:00
changeLog += '' +
'<h1 class="changelog-added">' +
' <span>New Stuff</span>' +
'</h1>' +
'<ul>' ;
2016-01-08 16:33:43 +01:00
for ( var change in bdchangelog . changes ) {
2015-11-29 18:21:58 +01:00
change = bdchangelog . changes [ change ] ;
changeLog += '' +
'<li>' +
2016-01-08 16:33:43 +01:00
' <strong>' + change . title + '</strong>' +
' <div>' + change . text + '</div>' +
2015-11-29 18:21:58 +01:00
'</li>' ;
}
changeLog += '</ul>' ;
}
2016-01-08 16:33:43 +01:00
if ( bdchangelog . fixes != null ) {
2015-11-29 18:21:58 +01:00
changeLog += '' +
'<h1 class="changelog-fixed">' +
' <span>Fixed</span>' +
'</h1>' +
'<ul>' ;
2016-01-08 16:33:43 +01:00
for ( var fix in bdchangelog . fixes ) {
2015-11-29 18:21:58 +01:00
fix = bdchangelog . fixes [ fix ] ;
changeLog += '' +
'<li>' +
2016-01-08 16:33:43 +01:00
' <strong>' + fix . title + '</strong>' +
' <div>' + fix . text + '</div>' +
2015-11-29 18:21:58 +01:00
'</li>' ;
}
changeLog += '</ul>' ;
}
2016-01-08 16:33:43 +01:00
if ( bdchangelog . upcoming != null ) {
2015-11-29 18:21:58 +01:00
changeLog += '' +
'<h1 class="changelog-in-progress">' +
' <span>Coming Soon</span>' +
'</h1>' +
'<ul>' ;
2016-01-08 16:33:43 +01:00
for ( var upc in bdchangelog . upcoming ) {
2015-11-29 18:21:58 +01:00
upc = bdchangelog . upcoming [ upc ] ;
changeLog += '' +
'<li>' +
2016-01-08 16:33:43 +01:00
' <strong>' + upc . title + '</strong>' +
' <div>' + upc . text + '</div>' +
2015-11-29 18:21:58 +01:00
'</li>' ;
}
changeLog += '</ul>' ;
}
changeLog += '' +
' </div><!--scoller-->' +
' </div><!--scroller-wrap-->' +
' <div class="footer">' +
' </div><!--footer-->' +
' </div><!--change-log-->' +
' </div><!--modal-inner-->' +
'</div><!--modal-->' ;
return changeLog ;
} ;
2016-01-08 16:33:43 +01:00
Core . prototype . alert = function ( title , text ) {
2016-05-06 20:31:20 +02:00
var id = '' ;
2016-04-30 23:25:14 +02:00
for ( var i = 0 ; i < 5 ; i ++ )
id += "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" . charAt ( Math . floor ( Math . random ( ) * "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" . length ) ) ;
var bdAlert = ' \
2016-05-06 20:31:20 +02:00
< div id = "bda-alert-'+id+'" class = "modal bda-alert" style = "opacity:1" data - bdalert = "'+id+'" > \
< div class = "modal-inner" style = "box-shadow:0 0 8px -2px #000;" > \
< div class = "markdown-modal" > \
< div class = "markdown-modal-header" > \
< strong style = "float:left" > < span > BetterDiscord - < / s p a n > < s p a n > ' + t i t l e + ' < / s p a n > < / s t r o n g > \
2016-04-30 23:25:14 +02:00
< span > < / s p a n > \
2016-05-06 20:31:20 +02:00
< button class = "markdown-modal-close" onclick = \ 'document.getElementById("bda-alert-' + id + '").remove(); utils.removeBackdrop("' + id + '");\' > < / b u t t o n > \
2016-04-30 23:25:14 +02:00
< / d i v > \
2016-05-06 20:31:20 +02:00
< div class = "scroller-wrap fade" > \
< div style = "font-weight:700" class = "scroller" > '+text+' < / d i v > \
2016-04-30 23:25:14 +02:00
< / d i v > \
2016-05-06 20:31:20 +02:00
< div class = "markdown-modal-footer" > \
< span style = "float:right" > for support . < / s p a n > \
< a style = "float:right" href = "https://discord.gg/0Tmfo5ZbOR9NxvDd" target = "_blank" > # support < / a > \
< span style = "float:right" > Join < / s p a n > \
2016-04-30 23:25:14 +02:00
< / d i v > \
< / d i v > \
< / d i v > \
< / d i v > \
' ;
$ ( "body" ) . append ( bdAlert ) ;
2016-05-06 20:31:20 +02:00
utils . addBackdrop ( id ) ;
2015-12-23 09:56:16 +01:00
} ;
2015-08-27 15:46:53 +02:00
/ * B e t t e r D i s c o r d A p p E m o t e M o d u l e J a v a S c r i p t
2015-10-26 06:27:55 +01:00
* Version : 1.5
2015-08-27 15:46:53 +02:00
* Author : Jiiks | http : //jiiks.net
* Date : 26 / 08 / 2015 - 15 : 29
2015-10-14 08:50:34 +02:00
* Last Update : 14 / 10 / 2015 - 09 : 48
2015-08-27 15:46:53 +02:00
* https : //github.com/Jiiks/BetterDiscordApp
* Note : Due to conflicts autocapitalize only supports global emotes
* /
2015-10-26 06:27:55 +01:00
/ *
* = Changelog =
* - v1 . 5
* -- Twitchemotes . com api
* /
2015-08-27 15:46:53 +02:00
var emotesFfz = { } ;
var emotesBTTV = { } ;
2016-01-08 16:33:43 +01:00
var emotesTwitch = {
"emotes" : {
"emote" : {
"image_id" : 0
}
}
} ; //for ide
2015-10-26 06:27:55 +01:00
var subEmotesTwitch = { } ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
function EmoteModule ( ) { }
2015-08-29 11:36:47 +02:00
2016-01-08 16:33:43 +01:00
EmoteModule . prototype . init = function ( ) { } ;
2015-11-01 12:57:10 +01:00
2016-01-08 16:33:43 +01:00
EmoteModule . prototype . getBlacklist = function ( ) {
2016-01-17 00:08:52 +01:00
$ . getJSON ( "https://cdn.rawgit.com/Jiiks/betterDiscordApp/" + _hash + "/data/emotefilter.json" , function ( data ) {
2016-01-08 16:33:43 +01:00
bemotes = data . blacklist ;
} ) ;
2015-11-01 12:44:25 +01:00
} ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
EmoteModule . prototype . obsCallback = function ( mutation ) {
2015-08-29 11:36:47 +02:00
var self = this ;
2015-10-29 14:46:08 +01:00
2016-05-20 04:30:54 +02:00
//if (!settingsCookie["bda-es-7"]) return;
2016-01-08 16:33:43 +01:00
2016-05-24 22:33:24 +02:00
/ * $ ( " . e m o j i " ) . e a c h ( f u n c t i o n ( ) {
2016-05-20 04:12:26 +02:00
var t = $ ( this ) ;
if ( t . attr ( "src" ) . indexOf ( ".png" ) != - 1 ) {
t . replaceWith ( t . attr ( "alt" ) ) ;
}
2016-05-24 22:33:24 +02:00
} ) ; * /
/ * $ ( " . e m o j i : n o t ( . e m o t e ) " ) . e a c h ( f u n c t i o n ( ) {
var t = $ ( this ) ;
t . addClass ( "emote" ) ;
t . wrap ( '<span class="emotewrapper"></span>' ) ;
t . parent ( ) . append ( $ ( "<input/>" , { class : "fav" , title : "Favorite!" , type : "button" } ) ) ;
} ) ; * /
2016-05-20 04:12:26 +02:00
2016-01-08 16:33:43 +01:00
for ( var i = 0 ; i < mutation . addedNodes . length ; ++ i ) {
2015-08-29 11:36:47 +02:00
var next = mutation . addedNodes . item ( i ) ;
2016-01-08 16:33:43 +01:00
if ( next ) {
2015-08-29 11:36:47 +02:00
var nodes = self . getNodes ( next ) ;
2016-01-08 16:33:43 +01:00
for ( var node in nodes ) {
if ( nodes . hasOwnProperty ( node ) ) {
2016-05-21 11:19:29 +02:00
var elem = nodes [ node ] . parentElement ;
if ( elem && elem . classList . contains ( 'edited' ) ) {
self . injectEmote ( elem ) ;
} else {
self . injectEmote ( nodes [ node ] ) ;
}
2015-10-26 06:27:55 +01:00
}
2015-08-29 11:36:47 +02:00
}
}
}
2015-10-26 06:27:55 +01:00
} ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
EmoteModule . prototype . getNodes = function ( node ) {
2015-08-27 15:46:53 +02:00
var next ;
var nodes = [ ] ;
2015-10-31 22:49:42 +01:00
var treeWalker = document . createTreeWalker ( node , NodeFilter . SHOW _TEXT , null , false ) ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
while ( next = treeWalker . nextNode ( ) ) {
2015-08-27 15:46:53 +02:00
nodes . push ( next ) ;
}
return nodes ;
2015-10-26 06:27:55 +01:00
} ;
2015-08-27 15:46:53 +02:00
2015-11-01 12:44:25 +01:00
var bemotes = [ ] ;
2015-11-28 00:41:48 +01:00
var spoilered = [ ] ;
2015-10-27 16:41:46 +01:00
2015-08-27 15:46:53 +02:00
2016-05-21 11:19:29 +02:00
EmoteModule . prototype . injectEmote = function ( node ) {
var self = this ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
if ( ! node . parentElement ) return ;
2016-05-21 11:19:29 +02:00
var parent = $ ( node ) . parent ( ) ;
if ( ! parent . hasClass ( "markup" ) && ! parent . hasClass ( "message-content" ) ) return ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
2015-12-11 10:13:38 +01:00
function inject ( ) {
2016-05-21 11:19:29 +02:00
var contents = parent . contents ( ) ;
contents . each ( function ( i ) {
if ( contents [ i ] == undefined ) return ;
var nodeValue = contents [ i ] . nodeValue ;
if ( nodeValue == null ) return ;
//if(nodeValue.indexOf("react-") > -1) return;
2016-05-24 22:33:24 +02:00
2016-05-21 11:19:29 +02:00
if ( contents [ i ] . nodeType == 8 ) return ;
contents . splice ( i , 1 ) ;
var words = nodeValue . split ( /([^\s]+)([\s]|$)/g ) . filter ( function ( e ) { return e } ) ;
var splice = 0 ;
2015-11-28 00:29:53 +01:00
2016-05-21 11:19:29 +02:00
var doInject = false ;
var text = null ;
2016-01-08 16:33:43 +01:00
2016-05-21 11:19:29 +02:00
words . forEach ( function ( w , index , a ) {
if ( w . indexOf ( "[!s]" ) > - 1 ) {
w = w . replace ( "[!s]" , "" ) ;
parent . data ( "spoilered" , false ) ;
parent . addClass ( "spoiler" ) ;
2015-12-11 10:13:38 +01:00
}
2016-05-21 11:19:29 +02:00
var allowedClasses = [ "flip" , "spin" , "pulse" , "spin2" , "spin3" , "1spin" , "2spin" , "3spin" , "tr" , "bl" , "br" , "shake" , "shake2" , "shake3" , "flap" ] ;
var useEmoteClass = false ;
var emoteClass = "" ;
var skipffz = false ;
var sw = w ;
if ( w . indexOf ( ":" ) > - 1 ) {
var split = w . split ( ":" ) ;
if ( split [ 0 ] != "" && split [ 1 ] != "" ) {
if ( allowedClasses . indexOf ( split [ 1 ] ) > - 1 ) {
sw = split [ 0 ] ;
emoteClass = settingsCookie [ "bda-es-8" ] ? "emote" + split [ 1 ] : "" ;
}
if ( split [ 1 ] == "bttv" ) {
sw = split [ 0 ] ;
skipffz = true ;
2016-04-04 16:22:53 +02:00
}
2016-04-02 09:56:19 +02:00
}
2016-03-30 16:56:01 +02:00
}
2016-05-24 22:33:24 +02:00
2016-05-24 14:29:30 +02:00
if ( $ . inArray ( sw , bemotes ) == - 1 ) {
2016-05-21 11:19:29 +02:00
2016-05-24 14:29:30 +02:00
if ( typeof emotesTwitch !== 'undefind' && settingsCookie [ "bda-es-7" ] ) {
if ( emotesTwitch . emotes . hasOwnProperty ( sw ) && sw . length >= 4 ) {
if ( text != null ) { contents . splice ( i + splice ++ , 0 , document . createTextNode ( text ) ) ; text = null ; }
var url = twitchEmoteUrlStart + emotesTwitch . emotes [ sw ] . image _id + twitchEmoteUrlEnd ;
contents . splice ( i + splice ++ , 0 , self . createEmoteElement ( sw , url , emoteClass ) ) ;
doInject = true ;
return ;
}
2016-05-21 11:19:29 +02:00
}
2016-05-24 14:29:30 +02:00
if ( typeof subEmotesTwitch !== 'undefined' && settingsCookie [ "bda-es-7" ] ) {
if ( subEmotesTwitch . hasOwnProperty ( sw ) && sw . length >= 4 ) {
if ( text != null ) { contents . splice ( i + splice ++ , 0 , document . createTextNode ( text ) ) ; text = null ; }
var url = twitchEmoteUrlStart + subEmotesTwitch [ sw ] + twitchEmoteUrlEnd ;
contents . splice ( i + splice ++ , 0 , self . createEmoteElement ( sw , url , emoteClass ) ) ;
doInject = true ;
return ;
}
2016-05-21 11:19:29 +02:00
}
2016-05-24 14:29:30 +02:00
if ( typeof emotesBTTV !== 'undefined' && settingsCookie [ "bda-es-2" ] ) {
if ( emotesBTTV . hasOwnProperty ( sw ) && sw . length >= 4 ) {
if ( text != null ) { contents . splice ( i + splice ++ , 0 , document . createTextNode ( text ) ) ; text = null ; }
var url = emotesBTTV [ sw ] ;
contents . splice ( i + splice ++ , 0 , self . createEmoteElement ( sw , url , emoteClass ) ) ;
doInject = true ;
return ;
}
2016-05-21 11:19:29 +02:00
}
2016-05-24 14:29:30 +02:00
if ( ( typeof emotesFfz !== 'undefined' && settingsCookie [ "bda-es-1" ] ) && ( ! skipffz || ! emotesBTTV2 . hasOwnProperty ( sw ) ) ) {
if ( emotesFfz . hasOwnProperty ( sw ) && sw . length >= 4 ) {
if ( text != null ) { contents . splice ( i + splice ++ , 0 , document . createTextNode ( text ) ) ; text = null ; }
var url = ffzEmoteUrlStart + emotesFfz [ sw ] + ffzEmoteUrlEnd ;
contents . splice ( i + splice ++ , 0 , self . createEmoteElement ( sw , url , emoteClass ) ) ;
doInject = true ;
return ;
}
2016-05-21 11:19:29 +02:00
}
2016-05-24 14:29:30 +02:00
if ( typeof emotesBTTV2 !== 'undefined' && settingsCookie [ "bda-es-2" ] ) {
if ( emotesBTTV2 . hasOwnProperty ( sw ) && sw . length >= 4 ) {
if ( text != null ) { contents . splice ( i + splice ++ , 0 , document . createTextNode ( text ) ) ; text = null ; }
var url = bttvEmoteUrlStart + emotesBTTV2 [ sw ] + bttvEmoteUrlEnd ;
if ( skipffz && emotesFfz . hasOwnProperty ( sw ) ) sw = sw + ":bttv" ;
contents . splice ( i + splice ++ , 0 , self . createEmoteElement ( sw , url , emoteClass ) ) ;
doInject = true ;
return ;
}
2016-05-21 11:19:29 +02:00
}
}
2016-05-24 22:33:24 +02:00
2016-05-21 11:19:29 +02:00
if ( text == null ) {
text = w ;
} else {
text += "" + w ;
}
if ( index === a . length - 1 ) {
contents . splice ( i + splice , 0 , document . createTextNode ( text ) ) ;
}
} ) ;
if ( doInject ) {
var oldHeight = parent . outerHeight ( ) ;
parent . html ( contents ) ;
var scrollPane = $ ( ".scroller.messages" ) . first ( ) ;
scrollPane . scrollTop ( scrollPane . scrollTop ( ) + ( parent . outerHeight ( ) - oldHeight ) ) ;
2015-12-11 10:21:16 +01:00
}
2016-05-21 11:19:29 +02:00
2015-12-11 10:21:16 +01:00
} ) ;
2016-05-21 11:19:29 +02:00
}
inject ( ) ;
if ( parent . children ( ) . hasClass ( "edited" ) ) {
setTimeout ( inject , 250 ) ;
}
2015-10-26 06:27:55 +01:00
2016-05-21 11:19:29 +02:00
2015-10-14 08:50:34 +02:00
2016-05-21 11:19:29 +02:00
} ;
2016-01-08 16:33:43 +01:00
2016-05-21 11:19:29 +02:00
EmoteModule . prototype . createEmoteElement = function ( word , url , mod ) {
var len = Math . round ( word . length / 4 ) ;
var name = word . substr ( 0 , len ) + "\uFDD9" + word . substr ( len , len ) + "\uFDD9" + word . substr ( len * 2 , len ) + "\uFDD9" + word . substr ( len * 3 ) ;
var html = '<span class="emotewrapper"><img draggable="false" style="max-height:32px;" class="emote ' + mod + '" alt="' + name + '" src="' + url + '"/><input onclick=\'quickEmoteMenu.favorite(\"' + name + '\", \"' + url + '\");\' class="fav" title="Favorite!" type="button"></span>' ;
return $ . parseHTML ( html . replace ( new RegExp ( "\uFDD9" , "g" ) , "" ) ) [ 0 ] ;
2015-10-26 06:27:55 +01:00
} ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
EmoteModule . prototype . autoCapitalize = function ( ) {
2015-10-26 06:27:55 +01:00
2015-08-27 15:46:53 +02:00
var self = this ;
2015-08-31 15:36:28 +02:00
2016-05-21 11:19:29 +02:00
$ ( 'body' ) . delegate ( $ ( ".channel-textarea-inner textarea:first" ) , 'keyup change paste' , function ( ) {
2016-01-08 16:33:43 +01:00
if ( ! settingsCookie [ "bda-es-4" ] ) return ;
2015-08-27 15:46:53 +02:00
2016-05-21 11:19:29 +02:00
var text = $ ( ".channel-textarea-inner textarea:first" ) . val ( ) ;
2016-01-08 16:33:43 +01:00
if ( text == undefined ) return ;
2015-08-29 11:36:47 +02:00
2015-08-27 15:46:53 +02:00
var lastWord = text . split ( " " ) . pop ( ) ;
2016-01-08 16:33:43 +01:00
if ( lastWord . length > 3 ) {
if ( lastWord == "danSgame" ) return ;
2015-08-27 15:46:53 +02:00
var ret = self . capitalize ( lastWord . toLowerCase ( ) ) ;
2016-01-08 16:33:43 +01:00
if ( ret !== null && ret !== undefined ) {
2016-05-21 11:19:29 +02:00
$ ( ".channel-textarea-inner textarea:first" ) . val ( text . replace ( lastWord , ret ) ) ;
2015-08-27 15:46:53 +02:00
}
}
} ) ;
2015-10-26 06:27:55 +01:00
} ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
EmoteModule . prototype . capitalize = function ( value ) {
2015-12-11 07:43:36 +01:00
var res = emotesTwitch . emotes ;
2016-01-08 16:33:43 +01:00
for ( var p in res ) {
if ( res . hasOwnProperty ( p ) && value == ( p + '' ) . toLowerCase ( ) ) {
2015-12-11 07:43:36 +01:00
return p ;
}
2015-08-27 15:46:53 +02:00
}
2015-10-26 06:27:55 +01:00
} ;
/ * B e t t e r D i s c o r d A p p P u b l i c S e v e r s J a v a S c r i p t s
2015-08-31 15:20:33 +02:00
* Version : 1.0
* Author : Jiiks | http : //jiiks.net
* Date : 27 / 08 / 2015 - 14 : 16
* https : //github.com/Jiiks/BetterDiscordApp
* /
function PublicServers ( ) {
}
2016-01-08 16:33:43 +01:00
PublicServers . prototype . getPanel = function ( ) {
2015-10-26 06:27:55 +01:00
return this . container ;
} ;
2016-01-08 16:33:43 +01:00
PublicServers . prototype . init = function ( ) {
2016-05-21 11:19:29 +02:00
this . filtered = [ "134680912691462144" , "86004744966914048" ] ;
this . bdServer = null ;
2016-05-01 11:56:06 +02:00
this . loadingServers = false ;
2016-04-07 14:22:33 +02:00
var self = this ;
2016-05-21 11:19:29 +02:00
var guilds = $ ( ".guilds>:first-child" ) ;
2016-04-07 14:22:33 +02:00
2016-05-21 11:19:29 +02:00
guilds . after ( $ ( "<div></div>" , {
class : "guild" ,
2016-04-07 14:22:33 +02:00
id : "bd-pub-li" ,
css : {
"height" : "20px" ,
"display" : settingsCookie [ "bda-gs-1" ] == true ? "" : "none"
}
} ) . append ( $ ( "<div/>" , {
class : "guild-inner" ,
css : {
"height" : "20px" ,
"border-radius" : "4px"
}
} ) . append ( $ ( "<a/>" ) . append ( $ ( "<div/>" , {
css : {
"line-height" : "20px" ,
"font-size" : "12px"
} ,
text : "public" ,
id : "bd-pub-button"
} ) ) ) ) ) ;
$ ( "#bd-pub-button" ) . on ( "click" , function ( ) {
2016-04-07 14:24:02 +02:00
self . show ( ) ;
2016-04-07 14:22:33 +02:00
} ) ;
2016-05-01 11:56:06 +02:00
var panelBase = ' \
< div id = "pubs-container" > \
< div id = "pubs-spinner" > \
< span class = "spinner" type = "wandering-cubes" > \
< span class = "spinner-inner spinner-wandering-cubes" > \
< span class = "spinner-item" > < / s p a n > \
< span class = "spinner-item" > < / s p a n > \
< / s p a n > \
< / s p a n > \
< / d i v > \
< div id = "pubs-header" > \
< h2 id = "pubs-header-title" > Public Servers < / h 2 > \
< button id = "pubs-searchbtn" > Search < / b u t t o n > \
< input id = "pubs-sterm" type = "text" placeholder = "Search Term..." > \
2016-05-21 11:19:29 +02:00
< div id = "pubs-select-dropdown" class = "bd-dropdown" > \
< button class = "bd-dropdown-select" id = "pubs-cat-select" > All < / b u t t o n > \
< div class = "bd-dropdown-list" > \
< ul > \
< li class = "pubs-cat-select-li" data - val = "all" > All < / l i > \
< li class = "pubs-cat-select-li" data - val = "1" > FPS Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "2" > MMO Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "3" > MOBA Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "4" > Strategy Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "5" > Sports Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "6" > Puzzle Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "7" > Retro Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "8" > Party Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "9" > Tabletop Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "10" > Sandbox Games < / l i > \
< li class = "pubs-cat-select-li" data - val = "11" > Community < / l i > \
< li class = "pubs-cat-select-li" data - val = "12" > Language < / l i > \
< li class = "pubs-cat-select-li" data - val = "13" > Programming < / l i > \
< li class = "pubs-cat-select-li" data - val = "14" > Other < / l i > \
< li class = "pubs-cat-select-li" data - val = "15" > Simulation Games < / l i > \
< / u l > \
< / d i v > \
< / d i v > \
< / d i v > \
< div class = "server-row server-pinned" style = "display:none;" > \
< div class = "server-icon" style = "background-image:url(https://cdn.discordapp.comi/cons/86004744966914048/6e5729ed5c12d5af558d80d7a194c3f9.jpg)" > < / d i v > \
< div class = "server-info server-name" > < span > BetterDiscord < / s p a n > < s p a n i d = " s e r v e r - b d - t a g " > O f f i c i a l B e t t e r D i s c o r d s e r v e r < / s p a n > < / d i v > \
< div class = "server-info server-members" > < span > < / s p a n > < / d i v > \
< div class = "server-info server-region" > < span > < / s p a n > < / d i v > \
< div class = "server-info" > \
2016-05-21 21:00:32 +02:00
< button data - server - invite - code = "0Tmfo5ZbORCRqbAd" > Join < / b u t t o n > \
2016-05-21 11:19:29 +02:00
< / d i v > \
2016-05-01 11:56:06 +02:00
< / d i v > \
< div class = "scroller-wrap" > \
< div class = "scroller" id = "pubs-scroller" > \
< div id = "pubs-list" class = "servers-listing" > \
< / d i v > \
< div style = "background:#FFF; padding: 5px 0; display:none;" id = "pubs-spinner-bottom" > \
< div > \
< span class = "spinner" type = "wandering-cubes" > \
< span class = "spinner-inner spinner-wandering-cubes" > \
< span class = "spinner-item" > < / s p a n > \
< span class = "spinner-item" > < / s p a n > \
< / s p a n > \
< / s p a n > \
< / d i v > \
< / d i v > \
< / d i v > \
< / d i v > \
< div id = "pubs-footer" > \
2016-05-21 11:19:29 +02:00
< span style = "color:#FFF; font-size:10px; font-weight:700; margin-left:5px;" > Tip : Hover over server name for description if available < / s p a n > \
2016-05-01 11:56:06 +02:00
< div > Server list provided by < a href = "https://discordservers.com" target = "_blank" > DiscordServers . com < / a > < / d i v > \
< / d i v > \
' ;
2016-04-07 14:08:16 +02:00
this . container = panelBase ;
2016-04-07 14:22:33 +02:00
if ( $ ( "#bd-pub-li" ) . length < 1 ) {
setTimeout ( function ( ) {
self . init ( ) ;
} , 250 ) ;
}
2016-04-07 14:08:16 +02:00
} ;
2015-08-31 15:20:33 +02:00
2016-05-21 11:19:29 +02:00
PublicServers . prototype . getPinnedServer = function ( ) {
2016-04-07 14:08:16 +02:00
var self = this ;
var dataset = {
2016-05-21 11:19:29 +02:00
"sort" : [ { "online" : "desc" } ] ,
"size" : 1 ,
2016-04-07 14:08:16 +02:00
"query" : {
2016-05-21 11:19:29 +02:00
"query_string" : {
2016-05-21 21:00:32 +02:00
"default_operator" : "AND" ,
"query" : "BetterDiscord"
2016-04-07 14:08:16 +02:00
}
}
} ;
2016-05-21 11:19:29 +02:00
$ . ajax ( {
type : "POST" ,
dataType : "json" ,
url : "https://search-discordservers-izrtub5nprzrl76ugyy6hdooe4.us-west-1.es.amazonaws.com/discord_servers/_search" ,
crossDomain : true ,
data : JSON . stringify ( dataset ) ,
success : function ( data ) {
try {
var s = data . hits . hits [ 0 ] . _source ;
if ( s . identifier == "86004744966914048" ) {
self . bdServer = s ;
self . showPinnedServer ( ) ;
}
} catch ( err ) {
self . bdServer = null ;
}
}
} ) ;
} ;
PublicServers . prototype . hidePinnedServer = function ( ) {
$ ( "#pubs-container .scroller-wrap" ) . css ( { "margin-top" : "0" , "height" : "500px" } ) ;
$ ( ".server-pinned" ) . hide ( ) ;
} ;
PublicServers . prototype . showPinnedServer = function ( ) {
$ ( ".server-pinned .server-icon" ) . css ( "background-image" , "url(" + this . bdServer . icon + ")" ) ;
$ ( ".server-pinned .server-members span" ) . text ( this . bdServer . online + "/" + this . bdServer . members + " Members" ) ;
$ ( ".server-pinned .server-region span" ) . text ( this . bdServer . region ) ;
$ ( ".server-pinned .server-info button" ) . data ( "server-invite-code" , this . bdServer . invite _code ) ;
$ ( "#pubs-container .scroller-wrap" ) . css ( { "margin-top" : "75px" , "height" : "425px" } ) ;
$ ( ".server-pinned" ) . show ( ) ;
} ;
PublicServers . prototype . show = function ( ) {
var self = this ;
this . hidePinnedServer ( ) ;
$ ( "#pubs-cat-select" ) . text ( "All" ) ;
this . selectedCategory = "all" ;
$ ( "#pubs-container .scroller-wrap" ) . css ( { "margin-top" : "0" , "height" : "500px" } ) ;
$ ( ".server-pinned" ) . hide ( ) ;
$ ( ".app" ) . append ( this . getPanel ( ) ) ;
if ( this . bdServer == null ) {
this . getPinnedServer ( ) ;
} else {
this . showPinnedServer ( ) ;
}
2015-10-26 06:27:55 +01:00
2016-05-21 11:19:29 +02:00
self . search ( 0 , true ) ;
$ ( "#pubs-searchbtn" ) . off ( "click" ) . on ( "click" , function ( ) {
2016-04-07 14:08:16 +02:00
self . search ( ) ;
2015-10-26 06:27:55 +01:00
} ) ;
2016-05-21 11:19:29 +02:00
$ ( "#pubs-sterm" ) . off ( "keyup" ) . on ( "keyup" , function ( e ) {
2016-04-07 14:08:16 +02:00
if ( e . keyCode == 13 ) {
2016-05-21 11:19:29 +02:00
self . search ( 0 , true ) ;
2016-04-07 14:08:16 +02:00
}
2015-10-26 06:27:55 +01:00
} ) ;
2016-05-21 11:19:29 +02:00
$ ( "#pubs-cat-select" ) . off ( "click" ) . on ( "click" , function ( ) {
$ ( "#pubs-select-dropdown" ) . addClass ( "open" ) ;
} ) ;
$ ( ".pubs-cat-select-li" ) . off ( "click" ) . on ( "click" , function ( ) {
$ ( "#pubs-select-dropdown" ) . removeClass ( "open" ) ;
$ ( "#pubs-cat-select" ) . text ( $ ( this ) . text ( ) ) ;
if ( self . selectedCategory != $ ( this ) . data ( "val" ) ) {
self . selectedCategory = $ ( this ) . data ( "val" ) ;
self . search ( 0 , true ) ;
}
} ) ;
$ ( "#pubs-container" ) . off ( "mouseup" ) . on ( "mouseup" , function ( ) {
$ ( "#pubs-select-dropdown" ) . removeClass ( "open" ) ;
} ) ;
2015-10-26 06:27:55 +01:00
2016-04-07 14:08:16 +02:00
var self = this ;
$ ( document ) . on ( "mouseup.bdps" , function ( e ) {
if ( ! $ ( "#bd-pub-button" ) . is ( e . target ) && ! $ ( "#pubs-container" ) . is ( e . target ) && $ ( "#pubs-container" ) . has ( e . target ) . length === 0 ) {
self . hide ( ) ;
}
2016-01-08 16:33:43 +01:00
} ) ;
2016-05-01 11:56:06 +02:00
$ ( "#pubs-scroller" ) . off ( "scroll.pubs" ) . on ( "scroll.pubs" , function ( ) {
if ( self . loadingServers ) return ;
var list = $ ( "#pubs-list" ) ;
if ( $ ( this ) . scrollTop ( ) + 550 < list . height ( ) ) return ;
if ( list . children ( ) . length % 20 != 0 ) return ;
self . loadingServers = true ;
$ ( "#pubs-spinner-bottom" ) . show ( ) ;
2016-05-21 11:19:29 +02:00
self . search ( list . children ( ) . length , false ) ;
2016-05-01 11:56:06 +02:00
} ) ;
2016-04-07 14:08:16 +02:00
} ;
2015-10-26 06:27:55 +01:00
2016-04-07 14:08:16 +02:00
PublicServers . prototype . hide = function ( ) {
$ ( "#pubs-container" ) . remove ( ) ;
$ ( document ) . off ( "mouseup.bdps" ) ;
2015-10-26 06:27:55 +01:00
} ;
2016-05-21 11:19:29 +02:00
2016-05-01 11:56:06 +02:00
PublicServers . prototype . loadServers = function ( dataset , search , clear ) {
this . loadingServers = true ;
2015-10-27 22:58:43 +01:00
var self = this ;
2016-05-01 11:56:06 +02:00
$ ( "#pubs-searchbtn" ) . prop ( "disabled" , true ) ;
$ ( "#pubs-sterm" ) . prop ( "disabled" , true ) ;
if ( clear ) $ ( "#pubs-list" ) . empty ( ) ;
2016-04-07 14:08:16 +02:00
$ ( "#pubs-spinner" ) . show ( ) ;
$ . ajax ( {
type : "POST" ,
dataType : "json" ,
2016-05-21 11:19:29 +02:00
url : "https://search-discordservers-izrtub5nprzrl76ugyy6hdooe4.us-west-1.es.amazonaws.com/discord_servers/_search" ,
2016-04-07 14:08:16 +02:00
crossDomain : true ,
data : JSON . stringify ( dataset ) ,
success : function ( data ) {
var hits = data . hits . hits ;
2016-05-01 11:56:06 +02:00
2016-04-07 14:08:16 +02:00
if ( search ) {
$ ( "#pubs-header-title" ) . text ( "Public Servers - Search Results: " + hits . length ) ;
} else {
$ ( "#pubs-header-title" ) . text ( "Public Servers" ) ;
}
2016-05-01 11:56:06 +02:00
2016-04-07 14:08:16 +02:00
hits . forEach ( function ( hit ) {
var source = hit . _source ;
2016-05-21 11:19:29 +02:00
var icode = source . invite _code . replace ( / /g , '' ) ;
2016-04-07 14:08:16 +02:00
var html = '<div class="server-row">' ;
html += '<div class="server-icon" style="background-image:url(' + source . icon + ')"></div>' ;
html += '<div class="server-info server-name">' ;
2016-05-21 11:19:29 +02:00
html += '<div class="server-information">' ;
if ( source . is _official ) {
html += '<span class="server-official">Official!</span>' ;
}
html += '<span class="server-name-span">' + source . name + '</span>' ;
var tags = [ ] ;
source . categories . forEach ( function ( tag ) {
tags . push ( tag . name ) ;
} ) ;
html += '<span class="server-tags">' + tags . join ( ", " ) + '</span>' ;
html += '<span class="server-description">' + ( source . description == undefined ? "No Description" : source . description ) + '</span>' ;
html += '</div>' ;
2016-04-07 14:08:16 +02:00
html += '</div>' ;
html += '<div class="server-info server-members">' ;
html += '<span>' + source . online + '/' + source . members + ' Members</span>' ;
html += '</div>' ;
html += '<div class="server-info server-region">' ;
html += '<span>' + source . region + '</span>' ;
html += '</div>' ;
html += '<div class="server-info">' ;
html += '<button data-server-invite-code=' + icode + '>Join</button>' ;
html += '</div>' ;
html += '</div>' ;
2016-05-01 11:56:06 +02:00
$ ( "#pubs-list" ) . append ( html ) ;
2016-04-07 14:08:16 +02:00
$ ( "button[data-server-invite-code=" + icode + "]" ) . on ( "click" , function ( ) {
self . joinServer ( icode ) ;
} ) ;
} ) ;
2016-05-01 11:56:06 +02:00
if ( search ) {
$ ( "#pubs-header-title" ) . text ( "Public Servers - Search Results: " + $ ( "#pubs-list" ) . children ( ) . length ) ;
}
2015-10-27 23:04:41 +01:00
} ,
2016-04-07 14:08:16 +02:00
done : function ( ) {
$ ( "#pubs-spinner" ) . hide ( ) ;
2016-05-01 11:56:06 +02:00
$ ( "#pubs-spinner-bottom" ) . hide ( ) ;
$ ( "#pubs-searchbtn" ) . prop ( "disabled" , false ) ;
$ ( "#pubs-sterm" ) . prop ( "disabled" , false ) ;
self . loadingServers = false ;
2016-04-07 14:08:16 +02:00
} ,
always : function ( ) {
$ ( "#pubs-spinner" ) . hide ( ) ;
2016-05-01 11:56:06 +02:00
$ ( "#pubs-spinner-bottom" ) . hide ( ) ;
$ ( "#pubs-searchbtn" ) . prop ( "disabled" , false ) ;
$ ( "#pubs-sterm" ) . prop ( "disabled" , false ) ;
self . loadingServers = false ;
2016-04-07 14:08:16 +02:00
} ,
error : function ( ) {
$ ( "#pubs-spinner" ) . hide ( ) ;
2016-05-01 11:56:06 +02:00
$ ( "#pubs-spinner-bottom" ) . hide ( ) ;
$ ( "#pubs-searchbtn" ) . prop ( "disabled" , false ) ;
$ ( "#pubs-sterm" ) . prop ( "disabled" , false ) ;
self . loadingServers = false ;
2016-04-07 14:08:16 +02:00
} ,
complete : function ( ) {
$ ( "#pubs-spinner" ) . hide ( ) ;
2016-05-01 11:56:06 +02:00
$ ( "#pubs-spinner-bottom" ) . hide ( ) ;
$ ( "#pubs-searchbtn" ) . prop ( "disabled" , false ) ;
$ ( "#pubs-sterm" ) . prop ( "disabled" , false ) ;
self . loadingServers = false ;
2016-04-07 14:08:16 +02:00
}
} ) ;
2015-10-26 06:27:55 +01:00
} ;
2016-05-21 11:19:29 +02:00
PublicServers . prototype . search = function ( start , clear ) {
2016-05-21 21:00:32 +02:00
var sterm = $ ( "#pubs-sterm" ) . val ( ) ;
2016-05-21 11:19:29 +02:00
2016-04-07 14:08:16 +02:00
var dataset = {
2016-05-21 11:19:29 +02:00
"sort" : [ { "online" : "desc" } ] ,
"from" : start ,
2016-04-07 14:08:16 +02:00
"size" : 20 ,
"query" : {
"filtered" : {
"query" : {
2016-05-21 11:19:29 +02:00
"query_string" : {
"default_operator" : "AND" ,
"query" : sterm ? sterm : "*"
}
} ,
"filter" : {
"bool" : {
"must_not" : [ {
"terms" : {
"identifier" : this . filtered
}
} ]
2016-04-07 14:08:16 +02:00
}
}
2016-05-21 11:19:29 +02:00
}
2016-04-07 14:08:16 +02:00
}
} ;
2016-05-21 11:19:29 +02:00
if ( this . selectedCategory != "all" ) {
dataset . query . filtered . filter . bool . must = [ { "term" : { "categories.id" : this . selectedCategory } } ]
2015-10-26 06:27:55 +01:00
}
2016-05-21 11:19:29 +02:00
this . loadServers ( dataset , true , clear ) ;
2015-10-26 06:27:55 +01:00
} ;
2015-08-27 15:46:53 +02:00
2015-10-27 22:58:43 +01:00
//Workaround for joining a server
2016-01-08 16:33:43 +01:00
PublicServers . prototype . joinServer = function ( code ) {
2015-10-27 22:58:43 +01:00
$ ( ".guilds-add" ) . click ( ) ;
$ ( ".action.join .btn" ) . click ( ) ;
$ ( ".create-guild-container input" ) . val ( code ) ;
$ ( ".form.join-server .btn-primary" ) . click ( ) ;
2015-10-27 23:13:23 +01:00
} ;
2015-08-27 15:46:53 +02:00
/ * B e t t e r D i s c o r d A p p Q u i c k E m o t e M e n u J a v a S c r i p t
2015-10-26 06:27:55 +01:00
* Version : 1.3
2015-08-27 15:46:53 +02:00
* Author : Jiiks | http : //jiiks.net
* Date : 26 / 08 / 2015 - 11 : 49
2015-08-29 11:36:47 +02:00
* Last Update : 29 / 08 / 2015 - 11 : 46
2015-08-27 15:46:53 +02:00
* https : //github.com/Jiiks/BetterDiscordApp
* /
function QuickEmoteMenu ( ) {
}
2016-04-09 08:04:34 +02:00
QuickEmoteMenu . prototype . init = function ( ) {
2015-08-27 15:46:53 +02:00
2016-04-09 08:04:34 +02:00
$ ( document ) . on ( "mousedown" , function ( e ) {
if ( e . target . id != "rmenu" ) $ ( "#rmenu" ) . remove ( ) ;
} ) ;
2016-04-11 11:57:04 +02:00
this . favoriteEmotes = { } ;
2016-04-09 08:04:34 +02:00
var fe = localStorage [ "bdfavemotes" ] ;
if ( fe != undefined ) {
this . favoriteEmotes = JSON . parse ( atob ( fe ) ) ;
}
2015-08-29 11:36:47 +02:00
2016-04-09 08:04:34 +02:00
var qmeHeader = "" ;
qmeHeader += "<div id=\"bda-qem\">" ;
qmeHeader += " <button class=\"active\" id=\"bda-qem-twitch\" onclick='quickEmoteMenu.switchHandler(this); return false;'>Twitch<\/button>" ;
qmeHeader += " <button id=\"bda-qem-favourite\" onclick='quickEmoteMenu.switchHandler(this); return false;'>Favourite<\/button>" ;
qmeHeader += " <button id=\"bda-qem-emojis\" onclick='quickEmoteMenu.switchHandler(this); return false;'>Emojis<\/buttond>" ;
qmeHeader += "<\/div>" ;
this . qmeHeader = qmeHeader ;
var teContainer = "" ;
teContainer += "<div id=\"bda-qem-twitch-container\">" ;
teContainer += " <div class=\"scroller-wrap fade\">" ;
teContainer += " <div class=\"scroller\">" ;
teContainer += " <div class=\"emote-menu-inner\">" ;
for ( var emote in emotesTwitch . emotes ) {
if ( emotesTwitch . emotes . hasOwnProperty ( emote ) ) {
var id = emotesTwitch . emotes [ emote ] . image _id ;
teContainer += "<div class=\"emote-container\">" ;
teContainer += " <img class=\"emote-icon\" id=\"" + emote + "\" alt=\"\" src=\"https://static-cdn.jtvnw.net/emoticons/v1/" + id + "/1.0\" title=\"" + emote + "\">" ;
teContainer += " </img>" ;
teContainer += "</div>" ;
2015-08-27 15:46:53 +02:00
}
2016-04-09 08:04:34 +02:00
}
teContainer += " <\/div>" ;
teContainer += " <\/div>" ;
teContainer += " <\/div>" ;
teContainer += "<\/div>" ;
this . teContainer = teContainer ;
var faContainer = "" ;
faContainer += "<div id=\"bda-qem-favourite-container\">" ;
faContainer += " <div class=\"scroller-wrap fade\">" ;
faContainer += " <div class=\"scroller\">" ;
faContainer += " <div class=\"emote-menu-inner\">" ;
for ( var emote in this . favoriteEmotes ) {
var url = this . favoriteEmotes [ emote ] ;
faContainer += "<div class=\"emote-container\">" ;
faContainer += " <img class=\"emote-icon\" alt=\"\" src=\"" + url + "\" title=\"" + emote + "\" oncontextmenu='quickEmoteMenu.favContext(event, this);'>" ;
faContainer += " </img>" ;
faContainer += "</div>" ;
}
faContainer += " <\/div>" ;
faContainer += " <\/div>" ;
faContainer += " <\/div>" ;
faContainer += "<\/div>" ;
this . faContainer = faContainer ;
} ;
2016-01-08 16:33:43 +01:00
2016-04-09 08:04:34 +02:00
QuickEmoteMenu . prototype . favContext = function ( e , em ) {
e . stopPropagation ( ) ;
var menu = $ ( '<div/>' , { id : "rmenu" , "data-emoteid" : $ ( em ) . prop ( "title" ) , text : "Remove" } ) ;
menu . css ( {
top : e . pageY - $ ( "#bda-qem-favourite-container" ) . offset ( ) . top ,
left : e . pageX - $ ( "#bda-qem-favourite-container" ) . offset ( ) . left
2015-12-23 09:22:19 +01:00
} ) ;
2016-04-09 08:04:34 +02:00
$ ( em ) . parent ( ) . append ( menu ) ;
menu . on ( "click" , function ( e ) {
e . preventDefault ( ) ;
e . stopPropagation ( ) ;
$ ( this ) . remove ( ) ;
2016-05-21 11:19:29 +02:00
2016-04-09 08:04:34 +02:00
delete quickEmoteMenu . favoriteEmotes [ $ ( this ) . data ( "emoteid" ) ] ;
quickEmoteMenu . updateFavorites ( ) ;
2016-01-08 16:33:43 +01:00
return false ;
} ) ;
2016-04-09 08:04:34 +02:00
return false ;
} ;
2016-01-08 16:33:43 +01:00
2016-04-09 08:04:34 +02:00
QuickEmoteMenu . prototype . switchHandler = function ( e ) {
this . switchQem ( $ ( e ) . attr ( "id" ) ) ;
} ;
QuickEmoteMenu . prototype . switchQem = function ( id ) {
var twitch = $ ( "#bda-qem-twitch" ) ;
var fav = $ ( "#bda-qem-favourite" ) ;
var emojis = $ ( "#bda-qem-emojis" ) ;
twitch . removeClass ( "active" ) ;
fav . removeClass ( "active" ) ;
emojis . removeClass ( "active" ) ;
$ ( ".emoji-picker" ) . hide ( ) ;
$ ( "#bda-qem-favourite-container" ) . hide ( ) ;
$ ( "#bda-qem-twitch-container" ) . hide ( ) ;
switch ( id ) {
case "bda-qem-twitch" :
twitch . addClass ( "active" ) ;
$ ( "#bda-qem-twitch-container" ) . show ( ) ;
break ;
case "bda-qem-favourite" :
fav . addClass ( "active" ) ;
$ ( "#bda-qem-favourite-container" ) . show ( ) ;
break ;
case "bda-qem-emojis" :
emojis . addClass ( "active" ) ;
$ ( ".emoji-picker" ) . show ( ) ;
break ;
2015-08-27 15:46:53 +02:00
}
2016-04-09 08:04:34 +02:00
this . lastTab = id ;
2015-08-27 15:46:53 +02:00
2015-10-26 06:27:55 +01:00
var emoteIcon = $ ( ".emote-icon" ) ;
emoteIcon . off ( ) ;
2016-01-08 16:33:43 +01:00
emoteIcon . on ( "click" , function ( ) {
2015-12-14 06:22:52 +01:00
var emote = $ ( this ) . attr ( "title" ) ;
2015-10-26 06:27:55 +01:00
var ta = $ ( ".channel-textarea-inner textarea" ) ;
ta . val ( ta . val ( ) . slice ( - 1 ) == " " ? ta . val ( ) + emote : ta . val ( ) + " " + emote ) ;
} ) ;
} ;
2015-08-29 11:36:47 +02:00
2016-04-09 08:04:34 +02:00
QuickEmoteMenu . prototype . obsCallback = function ( e ) {
2015-12-31 18:27:43 +01:00
2016-04-09 08:04:34 +02:00
if ( ! settingsCookie [ "bda-es-9" ] ) {
e . addClass ( "bda-qme-hidden" ) ;
} else {
e . removeClass ( "bda-qme-hidden" ) ;
2015-08-29 11:36:47 +02:00
}
2016-04-09 08:04:34 +02:00
if ( ! settingsCookie [ "bda-es-0" ] ) return ;
var self = this ;
2016-01-08 16:33:43 +01:00
2016-04-09 08:04:34 +02:00
e . prepend ( this . qmeHeader ) ;
e . append ( this . teContainer ) ;
e . append ( this . faContainer ) ;
2015-08-29 11:36:47 +02:00
2016-04-09 08:04:34 +02:00
if ( this . lastTab == undefined ) {
this . lastTab = "bda-qem-favourite" ;
}
this . switchQem ( this . lastTab ) ;
2015-12-14 06:22:52 +01:00
} ;
2016-01-08 16:33:43 +01:00
QuickEmoteMenu . prototype . favorite = function ( name , url ) {
2016-04-09 08:04:34 +02:00
if ( ! this . favoriteEmotes . hasOwnProperty ( name ) ) {
this . favoriteEmotes [ name ] = url ;
2015-12-14 06:22:52 +01:00
}
2016-01-08 16:33:43 +01:00
2015-12-14 06:22:52 +01:00
this . updateFavorites ( ) ;
} ;
2016-01-08 16:33:43 +01:00
QuickEmoteMenu . prototype . updateFavorites = function ( ) {
2016-04-09 08:04:34 +02:00
var faContainer = "" ;
faContainer += "<div id=\"bda-qem-favourite-container\">" ;
faContainer += " <div class=\"scroller-wrap fade\">" ;
faContainer += " <div class=\"scroller\">" ;
faContainer += " <div class=\"emote-menu-inner\">" ;
for ( var emote in this . favoriteEmotes ) {
var url = this . favoriteEmotes [ emote ] ;
faContainer += "<div class=\"emote-container\">" ;
faContainer += " <img class=\"emote-icon\" alt=\"\" src=\"" + url + "\" title=\"" + emote + "\" oncontextmenu='quickEmoteMenu.favContext(event, this);'>" ;
faContainer += " </img>" ;
faContainer += "</div>" ;
2015-12-23 09:16:30 +01:00
}
2016-04-09 08:04:34 +02:00
faContainer += " <\/div>" ;
faContainer += " <\/div>" ;
faContainer += " <\/div>" ;
faContainer += "<\/div>" ;
this . faContainer = faContainer ;
2015-12-14 06:24:49 +01:00
2016-04-09 08:04:34 +02:00
$ ( "#bda-qem-favourite-container" ) . replaceWith ( faContainer ) ;
2016-01-08 16:33:43 +01:00
2016-04-09 08:04:34 +02:00
window . localStorage [ "bdfavemotes" ] = btoa ( JSON . stringify ( this . favoriteEmotes ) ) ;
2015-10-26 06:27:55 +01:00
} ;
2016-04-08 00:21:30 +02:00
function CustomCssEditor ( ) { }
CustomCssEditor . prototype . init = function ( ) {
var self = this ;
self . hideBackdrop = false ;
self . editor = CodeMirror . fromTextArea ( document . getElementById ( "bd-custom-css-ta" ) , {
lineNumbers : true ,
mode : 'css' ,
indentUnit : 4 ,
theme : 'neat'
} ) ;
self . editor . on ( "change" , function ( cm ) {
var css = cm . getValue ( ) ;
self . applyCustomCss ( css , false , false ) ;
} ) ;
var attachEditor = "" ;
attachEditor += "<div id=\"bd-customcss-attach-controls\">" ;
attachEditor += " <ul class=\"checkbox-group\">" ;
attachEditor += " <li>" ;
attachEditor += " <div class=\"checkbox\" onclick=\"settingsPanel.updateSetting(this);\">" ;
attachEditor += " <div class=\"checkbox-inner\"><input id=\"bda-css-0\" type=\"checkbox\" " + ( settingsCookie [ "bda-css-0" ] ? "checked" : "" ) + "><span><\/span><\/div>" ;
attachEditor += " <span title=\"Update client css while typing\">Live Update<\/span>" ;
attachEditor += " <\/div>" ;
attachEditor += " <\/li>" ;
attachEditor += " <li>" ;
attachEditor += " <div class=\"checkbox\" onclick=\"settingsPanel.updateSetting(this);\">" ;
attachEditor += " <div class=\"checkbox-inner\"><input id=\"bda-css-1\" type=\"checkbox\" " + ( settingsCookie [ "bda-css-1" ] ? "checked" : "" ) + "><span><\/span><\/div>" ;
attachEditor += " <span title=\"Autosave css to localstorage when typing\">Autosave<\/span>" ;
attachEditor += " <\/div>" ;
attachEditor += " <\/li>" ;
attachEditor += " <li>" ;
attachEditor += " <div class=\"checkbox\" onclick=\"settingsPanel.updateSetting(this);\">" ;
attachEditor += " <div class=\"checkbox-inner\"><input id=\"bda-css-2\" type=\"checkbox\" " + ( customCssEditor . hideBackdrop ? "checked" : "" ) + "><span><\/span><\/div>" ;
attachEditor += " <span title=\"Hide the callout backdrop to disable modal close events\">Hide Backdrop<\/span>" ;
attachEditor += " <\/div>" ;
attachEditor += " <\/li>" ;
attachEditor += " <\/ul>" ;
attachEditor += " <div id=\"bd-customcss-detach-controls-buttons\">" ;
attachEditor += " <button class=\"btn btn-primary\" id=\"bd-customcss-detached-update\" onclick=\"return false;\">Update<\/button>" ;
attachEditor += " <button class=\"btn btn-primary\" id=\"bd-customcss-detached-save\" onclick=\"return false;\">Save<\/button>" ;
attachEditor += " <button class=\"btn btn-primary\" id=\"bd-customcss-detached-detach\" onclick=\"customCssEditor.detach(); return false;\">Detach</button>" ;
attachEditor += " <\/div>" ;
attachEditor += "<\/div>" ;
this . attachEditor = attachEditor ;
$ ( "#bd-customcss-innerpane" ) . append ( attachEditor ) ;
$ ( "#bd-customcss-detached-update" ) . on ( "click" , function ( ) {
self . applyCustomCss ( self . editor . getValue ( ) , true , false ) ;
return false ;
} ) ;
$ ( "#bd-customcss-detached-save" ) . on ( "click" , function ( ) {
self . applyCustomCss ( self . editor . getValue ( ) , false , true ) ;
return false ;
} ) ;
var detachEditor = "" ;
detachEditor += "<div id=\"bd-customcss-detach-container\">" ;
detachEditor += " <div id=\"bd-customcss-detach-editor\">" ;
detachEditor += " <\/div>" ;
detachEditor += "<\/div>" ;
this . detachedEditor = detachEditor ;
} ;
CustomCssEditor . prototype . attach = function ( ) {
$ ( "#editor-detached" ) . hide ( ) ;
$ ( "#app-mount" ) . removeClass ( "bd-detached-editor" ) ;
$ ( "#bd-customcss-pane" ) . append ( $ ( "#bd-customcss-innerpane" ) ) ;
$ ( "#bd-customcss-detached-detach" ) . show ( ) ;
$ ( "#bd-customcss-detach-container" ) . remove ( ) ;
} ;
CustomCssEditor . prototype . detach = function ( ) {
var self = this ;
this . attach ( ) ;
$ ( "#editor-detached" ) . show ( ) ;
$ ( "#bd-customcss-detached-detach" ) . hide ( ) ;
$ ( "#app-mount" ) . addClass ( "bd-detached-editor" ) ;
$ ( ".app" ) . parent ( ) . append ( this . detachedEditor ) ;
$ ( "#bd-customcss-detach-editor" ) . append ( $ ( "#bd-customcss-innerpane" ) ) ;
} ;
CustomCssEditor . prototype . applyCustomCss = function ( css , forceupdate , forcesave ) {
if ( $ ( "#customcss" ) . length == 0 ) {
$ ( "head" ) . append ( '<style id="customcss"></style>' ) ;
}
if ( forceupdate || settingsCookie [ "bda-css-0" ] ) {
$ ( "#customcss" ) . html ( css ) ;
}
if ( forcesave || settingsCookie [ "bda-css-1" ] ) {
localStorage . setItem ( "bdcustomcss" , btoa ( css ) ) ;
}
} ;
2015-08-27 15:46:53 +02:00
/ * B e t t e r D i s c o r d A p p S e t t i n g s P a n e l J a v a S c r i p t
2015-11-27 01:14:33 +01:00
* Version : 2.0
2015-08-27 15:46:53 +02:00
* Author : Jiiks | http : //jiiks.net
* Date : 26 / 08 / 2015 - 11 : 54
2015-11-27 01:14:33 +01:00
* Last Update : 27 / 11 / 2015 - 00 : 50
2015-08-27 15:46:53 +02:00
* https : //github.com/Jiiks/BetterDiscordApp
* /
2015-11-27 01:14:33 +01:00
var settingsButton = null ;
var panel = null ;
2015-08-29 11:36:47 +02:00
2015-08-27 15:46:53 +02:00
function SettingsPanel ( ) {
2015-12-12 03:28:42 +01:00
utils . injectJs ( "https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.9.0/codemirror.min.js" ) ;
utils . injectJs ( "https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.9.0/mode/css/css.min.js" ) ;
2016-01-08 16:33:43 +01:00
utils . injectJs ( "https://cdnjs.cloudflare.com/ajax/libs/Sortable/1.4.2/Sortable.min.js" ) ;
2015-08-27 15:46:53 +02:00
}
2016-01-08 16:33:43 +01:00
SettingsPanel . prototype . init = function ( ) {
2015-08-27 15:46:53 +02:00
var self = this ;
2015-11-27 01:14:33 +01:00
self . construct ( ) ;
var body = $ ( "body" ) ;
2015-08-30 11:17:06 +02:00
2016-01-08 16:33:43 +01:00
if ( settingsCookie [ "bda-es-0" ] ) {
2015-08-30 11:17:06 +02:00
$ ( "#twitchcord-button-container" ) . show ( ) ;
} else {
$ ( "#twitchcord-button-container" ) . hide ( ) ;
}
2016-01-08 16:33:43 +01:00
if ( settingsCookie [ "bda-gs-2" ] ) {
2015-10-26 06:27:55 +01:00
body . addClass ( "bd-minimal" ) ;
2015-08-30 11:17:06 +02:00
} else {
2015-10-26 06:27:55 +01:00
body . removeClass ( "bd-minimal" ) ;
2015-08-30 11:17:06 +02:00
}
2016-01-08 16:33:43 +01:00
if ( settingsCookie [ "bda-gs-3" ] ) {
2015-10-26 06:27:55 +01:00
body . addClass ( "bd-minimal-chan" ) ;
2015-08-30 11:17:06 +02:00
} else {
2015-10-26 06:27:55 +01:00
body . removeClass ( "bd-minimal-chan" ) ;
2015-08-30 11:17:06 +02:00
}
2015-10-26 06:27:55 +01:00
2016-01-08 16:33:43 +01:00
if ( settingsCookie [ "bda-gs-4" ] ) {
2015-10-26 06:27:55 +01:00
voiceMode . enable ( ) ;
}
2015-11-27 01:14:33 +01:00
2016-04-09 14:51:59 +02:00
if ( settingsCookie [ "bda-gs-5" ] ) {
$ ( "#app-mount" ) . addClass ( "bda-dark" ) ;
}
2015-12-04 00:02:32 +01:00
if ( settingsCookie [ "bda-es-6" ] ) {
//Pretty emote titles
2016-01-08 16:33:43 +01:00
emoteNamePopup = $ ( "<div class='tipsy tipsy-se' style='display: block; top: 82px; left: 1630.5px; visibility: visible; opacity: 0.8;'><div class='tipsy-inner'></div></div>" ) ;
$ ( document ) . on ( "mouseover" , ".emote" , function ( ) {
var x = $ ( this ) . offset ( ) ;
var title = $ ( this ) . attr ( "alt" ) ;
$ ( emoteNamePopup ) . find ( ".tipsy-inner" ) . text ( title ) ;
$ ( emoteNamePopup ) . css ( 'left' , x . left - 25 ) ;
2016-05-21 11:19:29 +02:00
$ ( emoteNamePopup ) . css ( 'top' , x . top - 37 ) ;
2016-05-20 04:30:54 +02:00
$ ( ".app" ) . append ( $ ( emoteNamePopup ) ) ;
2016-01-08 16:33:43 +01:00
} ) ;
$ ( document ) . on ( "mouseleave" , ".emote" , function ( ) {
2016-01-24 04:16:40 +01:00
$ ( ".tipsy" ) . remove ( ) ;
2016-01-08 16:33:43 +01:00
} ) ;
2015-12-04 00:02:32 +01:00
} else {
2016-01-08 16:33:43 +01:00
$ ( document ) . off ( 'mouseover' , '.emote' ) ;
2015-12-04 00:02:32 +01:00
}
2016-05-24 22:33:24 +02:00
if ( settingsCookie [ "bda-gs-8" ] ) {
dMode . enable ( ) ;
} else {
dMode . disable ( ) ;
}
2015-10-26 06:27:55 +01:00
} ;
2015-08-27 15:46:53 +02:00
2015-12-12 03:28:42 +01:00
var customCssInitialized = false ;
var lastTab = "" ;
2015-11-27 01:14:33 +01:00
2016-01-08 16:33:43 +01:00
SettingsPanel . prototype . changeTab = function ( tab ) {
2015-12-12 07:52:54 +01:00
var self = this ;
2016-01-08 16:33:43 +01:00
2015-12-12 03:28:42 +01:00
lastTab = tab ;
2016-01-08 16:33:43 +01:00
2015-12-12 03:28:42 +01:00
var controlGroups = $ ( "#bd-control-groups" ) ;
$ ( ".bd-tab" ) . removeClass ( "selected" ) ;
$ ( ".bd-pane" ) . hide ( ) ;
2016-01-08 16:33:43 +01:00
$ ( "#" + tab ) . addClass ( "selected" ) ;
2015-12-12 03:28:42 +01:00
$ ( "#" + tab . replace ( "tab" , "pane" ) ) . show ( ) ;
2016-01-08 16:33:43 +01:00
switch ( tab ) {
case "bd-settings-tab" :
2016-05-21 11:19:29 +02:00
$ ( ".bda-slist-top" ) . show ( ) ;
break ;
case "bd-emotes-tab" :
$ ( ".bda-slist-top" ) . show ( ) ;
2015-12-12 03:28:42 +01:00
break ;
2016-01-08 16:33:43 +01:00
case "bd-customcss-tab" :
2016-05-21 11:19:29 +02:00
$ ( ".bda-slist-top" ) . show ( ) ;
2016-01-08 16:33:43 +01:00
if ( ! customCssInitialized ) {
2016-04-08 00:21:30 +02:00
customCssEditor . init ( ) ;
2016-01-08 16:33:43 +01:00
customCssInitialized = true ;
}
2015-12-12 03:28:42 +01:00
break ;
2016-05-21 11:19:29 +02:00
case "bd-themes-tab" :
2016-05-21 19:09:22 +02:00
$ ( ".bda-slist-top:first" ) . hide ( ) ;
2016-05-21 11:19:29 +02:00
break ;
case "bd-plugins-tab" :
2016-05-21 19:09:22 +02:00
$ ( ".bda-slist-top:first" ) . hide ( ) ;
2016-05-21 11:19:29 +02:00
break ;
default :
$ ( ".bda-slist-top" ) . show ( ) ;
break ;
2015-12-12 03:28:42 +01:00
}
} ;
2015-11-28 04:17:39 +01:00
2016-01-08 16:33:43 +01:00
SettingsPanel . prototype . updateSetting = function ( checkbox ) {
var cb = $ ( checkbox ) . children ( ) . find ( 'input[type="checkbox"]' ) ;
var enabled = ! cb . is ( ":checked" ) ;
var id = cb . attr ( "id" ) ;
cb . prop ( "checked" , enabled ) ;
2015-11-27 01:14:33 +01:00
2016-04-08 00:21:30 +02:00
if ( id == "bda-css-2" ) {
$ ( "#app-mount" ) . removeClass ( "bd-hide-bd" ) ;
customCssEditor . hideBackdrop = enabled ;
if ( enabled ) {
$ ( "#app-mount" ) . addClass ( "bd-hide-bd" )
}
}
2016-05-24 22:33:24 +02:00
if ( id == "bda-gs-8" && enabled ) {
mainCore . alert ( "Developer Mode Enabled" , "Use F8 to break/resume execution<br>More coming soon" )
}
2016-04-08 00:21:30 +02:00
2016-01-08 16:33:43 +01:00
settingsCookie [ id ] = enabled ;
2015-11-27 01:14:33 +01:00
2016-05-06 20:31:20 +02:00
this . updateSettings ( ) ;
} ;
SettingsPanel . prototype . updateSettings = function ( ) {
2016-01-08 16:33:43 +01:00
if ( settingsCookie [ "bda-es-0" ] ) {
$ ( "#twitchcord-button-container" ) . show ( ) ;
} else {
$ ( "#twitchcord-button-container" ) . hide ( ) ;
}
2015-11-27 01:14:33 +01:00
2016-01-08 16:33:43 +01:00
if ( settingsCookie [ "bda-gs-2" ] ) {
$ ( "body" ) . addClass ( "bd-minimal" ) ;
} else {
$ ( "body" ) . removeClass ( "bd-minimal" ) ;
}
if ( settingsCookie [ "bda-gs-3" ] ) {
$ ( "body" ) . addClass ( "bd-minimal-chan" ) ;
} else {
$ ( "body" ) . removeClass ( "bd-minimal-chan" ) ;
}
if ( settingsCookie [ "bda-gs-1" ] ) {
$ ( "#bd-pub-li" ) . show ( ) ;
} else {
$ ( "#bd-pub-li" ) . hide ( ) ;
}
if ( settingsCookie [ "bda-gs-4" ] ) {
voiceMode . enable ( ) ;
} else {
voiceMode . disable ( ) ;
}
2016-04-09 14:51:59 +02:00
$ ( "#app-mount" ) . removeClass ( "bda-dark" ) ;
if ( settingsCookie [ "bda-gs-5" ] ) {
$ ( "#app-mount" ) . addClass ( "bda-dark" ) ;
}
2016-01-08 16:33:43 +01:00
if ( settingsCookie [ "bda-es-6" ] ) {
//Pretty emote titles
emoteNamePopup = $ ( "<div class='tipsy tipsy-se' style='display: block; top: 82px; left: 1630.5px; visibility: visible; opacity: 0.8;'><div class='tipsy-inner'></div></div>" ) ;
$ ( document ) . on ( "mouseover" , ".emote" , function ( ) {
var x = $ ( this ) . offset ( ) ;
var title = $ ( this ) . attr ( "alt" ) ;
$ ( emoteNamePopup ) . find ( ".tipsy-inner" ) . text ( title ) ;
$ ( emoteNamePopup ) . css ( 'left' , x . left - 25 ) ;
$ ( emoteNamePopup ) . css ( 'top' , x . top - 32 ) ;
$ ( "div[data-reactid='.0.1.1']" ) . append ( $ ( emoteNamePopup ) ) ;
} ) ;
$ ( document ) . on ( "mouseleave" , ".emote" , function ( ) {
2016-01-24 04:16:40 +01:00
$ ( ".tipsy" ) . remove ( ) ;
2016-01-08 16:33:43 +01:00
} ) ;
} else {
$ ( document ) . off ( 'mouseover' , '.emote' ) ;
2016-04-09 21:56:29 +02:00
}
2015-11-27 01:14:33 +01:00
2016-05-24 22:33:24 +02:00
if ( settingsCookie [ "bda-gs-8" ] ) {
dMode . enable ( ) ;
} else {
dMode . disable ( ) ;
}
2016-01-08 16:33:43 +01:00
mainCore . saveSettings ( ) ;
2016-01-24 04:16:40 +01:00
} ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
SettingsPanel . prototype . construct = function ( ) {
2015-12-12 03:28:42 +01:00
var self = this ;
2016-01-08 16:33:43 +01:00
2015-12-12 03:28:42 +01:00
panel = $ ( "<div/>" , {
id : "bd-pane" ,
class : "settings-inner" ,
css : {
"display" : "none"
}
} ) ;
2016-01-08 16:33:43 +01:00
2016-05-06 20:31:20 +02:00
//Panel start and core settings
var settingsInner = ' \
< div class = "scroller-wrap" > \
< div class = "scroller settings-wrapper settings-panel" > \
< div class = "tab-bar TOP" > \
< div class = "tab-bar-item bd-tab" id = "bd-settings-tab" onclick = \ 'settingsPanel.changeTab("bd-settings-tab");\' > Core \
< / d i v > \
< div class = "tab-bar-item bd-tab" id = "bd-emotes-tab" onclick = \ 'settingsPanel.changeTab("bd-emotes-tab");\' > Emotes \
< / d i v > \
< div class = "tab-bar-item bd-tab" id = "bd-customcss-tab" onclick = \ 'settingsPanel.changeTab("bd-customcss-tab");\' > Custom CSS \
< / d i v > \
< div class = "tab-bar-item bd-tab" id = "bd-plugins-tab" onclick = \ 'settingsPanel.changeTab("bd-plugins-tab");\' > Plugins \
< / d i v > \
< div class = "tab-bar-item bd-tab" id = "bd-themes-tab" onclick = \ 'settingsPanel.changeTab("bd-themes-tab");\' > Themes \
< / d i v > \
2016-05-06 22:57:33 +02:00
< div class = "bda-slist-top" > \
2016-05-06 20:31:20 +02:00
< button class = "btn btn-primary" onclick = "utils.exportSettings(); return false;" > Export < / b u t t o n > \
< button class = "btn btn-primary" onclick = "utils.importSettings(); return false;" > Import < / b u t t o n > \
< / d i v > \
< / d i v > \
< div class = "bd-settings" > \
< div class = "bd-pane control-group" id = "bd-settings-pane" style = "display:none;" > \
< ul class = "checkbox-group" > \
' ;
2016-04-09 21:56:29 +02:00
2016-05-06 20:31:20 +02:00
for ( var setting in settings ) {
2016-04-09 21:56:29 +02:00
var sett = settings [ setting ] ;
var id = sett [ "id" ] ;
2016-05-06 20:31:20 +02:00
if ( sett [ "cat" ] != "core" || ! sett [ "implemented" ] || sett [ "hidden" ] ) continue ;
settingsInner += ' \
< li > \
< div class = "checkbox" onclick = "settingsPanel.updateSetting(this);" > \
< div class = "checkbox-inner" > \
< input type = "checkbox" id = "'+id+'" '+(settingsCookie[id] ? "checked" : "")+' > \
< span > < / s p a n > \
< / d i v > \
< span > \
'+setting+' - '+sett["info"]+' \
< / s p a n > \
< / d i v > \
< / l i > \
' ;
2016-04-09 21:56:29 +02:00
}
2016-05-06 20:31:20 +02:00
settingsInner += ' \
< / u l > \
< / d i v > \
' ;
//End core settings
2016-01-08 16:33:43 +01:00
2016-05-06 20:31:20 +02:00
//Emote settings
2016-04-09 21:56:29 +02:00
2016-05-06 20:31:20 +02:00
settingsInner += ' \
< div class = "bd-pane control-group" id = "bd-emotes-pane" style = "display:none;" > \
< ul class = "checkbox-group" > \
' ;
2015-11-27 01:14:33 +01:00
2016-05-06 20:31:20 +02:00
for ( var setting in settings ) {
2015-11-27 01:14:33 +01:00
var sett = settings [ setting ] ;
var id = sett [ "id" ] ;
2016-05-06 20:31:20 +02:00
if ( sett [ "cat" ] != "emote" || ! sett [ "implemented" ] || sett [ "hidden" ] ) continue ;
settingsInner += ' \
< li > \
< div class = "checkbox" onclick = "settingsPanel.updateSetting(this);" > \
< div class = "checkbox-inner" > \
< input type = "checkbox" id = "'+id+'" '+(settingsCookie[id] ? "checked" : "")+' > \
< span > < / s p a n > \
< / d i v > \
< span > \
'+setting+' - '+sett["info"]+' \
< / s p a n > \
< / d i v > \
< / l i > \
' ;
2015-08-30 11:17:06 +02:00
}
2016-01-08 16:33:43 +01:00
2016-05-06 20:31:20 +02:00
settingsInner += ' \
< / u l > \
< / d i v > \
' ;
2016-04-09 21:56:29 +02:00
2016-05-06 20:31:20 +02:00
//End emote settings
2016-04-09 21:56:29 +02:00
2016-05-06 20:31:20 +02:00
//Custom CSS Editor
2015-12-12 07:52:54 +01:00
var ccss = atob ( localStorage . getItem ( "bdcustomcss" ) ) ;
2016-04-08 00:21:30 +02:00
customCssEditor . applyCustomCss ( ccss , true , false ) ;
2016-01-08 16:33:43 +01:00
2016-05-06 20:31:20 +02:00
settingsInner += ' \
< div class = "bd-pane control-group" id = "bd-customcss-pane" style = "display:none;" > \
< div id = "editor-detached" style = "display:none;" > \
< h3 > Editor Detached < / h 3 > \
< button class = "btn btn-primary" onclick = "customCssEditor.attach(); return false;" > Attach < / b u t t o n > \
< / d i v > \
< div id = "bd-customcss-innerpane" > \
< textarea id = "bd-custom-css-ta" > '+ccss+' < / t e x t a r e a > \
< / d i v > \
< / d i v > \
' ;
//End Custom CSS Editor
//Plugin pane
settingsInner += ' \
2016-05-21 19:09:22 +02:00
< div class = "bd-pane control-group" id = "bd-plugins-pane" style = "display:show;" > \
2016-05-06 20:31:20 +02:00
< div class = "bda-slist-top" > \
< button class = "btn btn-primary" onclick = \ 'betterDiscordIPC.send("asynchronous-message", { "arg": "opendir", "path": "plugindir" }); return false;\' > Open Plugin Folder < / b u t t o n > \
< button class = "btn btn-primary" onclick = \ 'window.open("https://betterdiscord.net/plugins"); return false;\' > Get Plugins < / b u t t o n > \
< / d i v > \
< ul class = "bda-slist" > \
' ;
$ . each ( bdplugins , function ( ) {
2016-01-08 16:33:43 +01:00
var plugin = this [ "plugin" ] ;
2016-05-06 20:31:20 +02:00
var hasSettings = false ;
if ( typeof ( plugin . getSettingsPanel ) == "function" ) {
hasSettings = plugin . getSettingsPanel ( ) != null && plugin . getSettingsPanel ( ) != "" ;
}
settingsInner += ' \
< li > \
< div class = "bda-left" > \
< span class = "bda-name" > '+plugin.getName()+' v '+plugin.getVersion()+' by '+plugin.getAuthor()+' < / s p a n > \
< div class = "scroller-wrap fade" > \
< div class = "scroller bda-description" > '+plugin.getDescription()+' < / d i v > \
< / d i v > \
< / d i v > \
< div class = "bda-right" > \
< div class = "checkbox" onclick = "pluginModule.handlePlugin(this);" > \
< div class = "checkbox-inner" > \
2016-05-06 22:57:33 +02:00
< input id = "'+plugin.getName().replace(" ", " _ _ ")+'" type = "checkbox" '+(pluginCookie[plugin.getName()] ? "checked" : "")+' > \
2016-05-06 20:31:20 +02:00
< span > < / s p a n > \
< / d i v > \
< span > < / s p a n > \
< / d i v > \
< button class = "btn btn-primary bda-plugin-reload" onclick = "return false;" disabled > Reload < / b u t t o n > \
< button class = "btn btn-primary bda-plugin-settings" onclick = \ 'pluginModule.showSettings("' + plugin . getName ( ) + '"); return false;\' ' + ( hasSettings ? "" : "disabled" ) + ' > Settings < / b u t t o n > \
< / d i v > \
< / l i > \
' ;
2016-01-08 16:33:43 +01:00
} ) ;
2016-05-06 20:31:20 +02:00
settingsInner += ' \
< / u l > \
< / d i v > \
' ;
//End plugin pane
2016-01-08 16:33:43 +01:00
2016-05-06 20:31:20 +02:00
//Theme pane
2016-01-08 16:33:43 +01:00
2016-05-06 20:31:20 +02:00
settingsInner += ' \
< div class = "bd-pane control-group" id = "bd-themes-pane" style = "display:none;" > \
< div class = "bda-slist-top" > \
< button class = "btn btn-primary" onclick = \ 'betterDiscordIPC.send("asynchronous-message", { "arg": "opendir", "path": "themedir" }); return false;\' > Open Theme Folder < / b u t t o n > \
< button class = "btn btn-primary" onclick = \ 'window.open("https://betterdiscord.net/themes"); return false;\' > Get Themes < / b u t t o n > \
< / d i v > \
< ul class = "bda-slist" > \
' ;
if ( typeof ( themesupport2 ) === "undefined" ) {
settingsInner += "Your version does not support themes!" ;
2016-01-08 16:33:43 +01:00
} else {
2016-05-06 20:31:20 +02:00
$ . each ( bdthemes , function ( ) {
settingsInner += ' \
< li > \
< div class = "bda-left" > \
< span class = "bda-name" > '+this["name"].replace(/_/g, " ")+' v '+this["version"]+' by '+this["author"]+' < / s p a n > \
< div class = "scroller-wrap fade" > \
< div class = "scroller bda-description" > '+this["description"]+' < / d i v > \
< / d i v > \
< / d i v > \
< div class = "bda-right" > \
2016-05-06 22:57:33 +02:00
< div class = "checkbox" onclick = "themeModule.handleTheme(this);" > \
2016-05-06 20:31:20 +02:00
< div class = "checkbox-inner" > \
2016-05-06 22:57:33 +02:00
< input id = "ti'+this[" name "]+'" type = "checkbox" '+(themeCookie[this["name"]] ? "checked" : "")+' > \
2016-05-06 20:31:20 +02:00
< span > < / s p a n > \
< / d i v > \
< span > < / s p a n > \
< / d i v > \
< button class = "btn btn-primary bda-plugin-reload" onclick = "return false;" disabled > Reload < / b u t t o n > \
< / d i v > \
< / l i > \
' ;
2015-12-15 08:37:15 +01:00
} ) ;
}
2016-01-08 16:33:43 +01:00
2016-05-06 20:31:20 +02:00
settingsInner += ' \
< / u l > \
< / d i v > \
' ;
//End theme panel
//Footer
settingsInner += ' \
< div style = "background:#2E3136; color:#ADADAD; height:30px; position:absolute; bottom:0; left:0; right:0;" > \
< span style = "line-height:30px;margin-left:10px;" > BetterDiscord v ' + ((typeof(version) == "undefined") ? bdVersion : version) + ' ( JSv ' + jsVersion + ' ) by Jiiks < / s p a n > \
< span style = "float:right;line-height:30px;margin-right:10px;" > < a href = "http://betterdiscord.net" target = "_blank" > BetterDiscord . net < / a > < / s p a n > \
2016-05-21 11:19:29 +02:00
< span id = "bd-changelog" onclick = \ '$("body").append(mainCore.constructChangelog());\' > changelog < / s p a n > \
2016-05-06 20:31:20 +02:00
< / d i v > \
< / d i v > < / d i v > \
' ;
2016-01-08 16:33:43 +01:00
2015-11-27 01:14:33 +01:00
function showSettings ( ) {
$ ( ".tab-bar-item" ) . removeClass ( "selected" ) ;
settingsButton . addClass ( "selected" ) ;
$ ( ".form .settings-right .settings-inner" ) . first ( ) . hide ( ) ;
panel . show ( ) ;
2016-01-08 16:33:43 +01:00
if ( lastTab == "" ) {
2015-12-12 03:28:42 +01:00
self . changeTab ( "bd-settings-tab" ) ;
} else {
self . changeTab ( lastTab ) ;
}
2015-10-26 06:27:55 +01:00
}
2015-11-27 01:14:33 +01:00
settingsButton = $ ( "<div/>" , {
class : "tab-bar-item" ,
text : "BetterDiscord" ,
id : "bd-settings-new" ,
click : showSettings
} ) ;
2015-12-12 03:28:42 +01:00
panel . html ( settingsInner ) ;
2016-05-21 11:19:29 +02:00
this . panel = panel ;
} ;
2015-12-12 03:28:42 +01:00
2016-05-21 11:19:29 +02:00
SettingsPanel . prototype . inject = function ( mutation ) {
if ( mutation . type != "childList" ) return ;
if ( mutation . addedNodes . length <= 0 ) return ;
if ( $ ( mutation . addedNodes [ 0 ] ) . find ( ".user-settings-modal" ) . length <= 0 ) return ;
2015-11-27 01:14:33 +01:00
2016-05-21 11:19:29 +02:00
var self = this ;
this . panel . hide ( ) ;
var tabBar = $ ( ".tab-bar.SIDE" ) . first ( ) ;
2015-11-27 01:14:33 +01:00
2016-05-21 11:19:29 +02:00
$ ( ".tab-bar.SIDE .tab-bar-item" ) . click ( function ( ) {
$ ( ".form .settings-right .settings-inner" ) . first ( ) . show ( ) ;
$ ( "#bd-settings-new" ) . removeClass ( "selected" ) ;
self . panel . hide ( ) ;
} ) ;
2015-11-27 01:14:33 +01:00
2016-05-21 11:19:29 +02:00
tabBar . append ( settingsButton ) ;
$ ( ".form .settings-right .settings-inner" ) . last ( ) . after ( self . panel ) ;
$ ( "#bd-settings-new" ) . removeClass ( "selected" ) ;
2015-10-26 06:27:55 +01:00
} ;
2015-08-27 15:46:53 +02:00
/ * B e t t e r D i s c o r d A p p U t i l i t i e s J a v a S c r i p t
* Version : 1.0
* Author : Jiiks | http : //jiiks.net
* Date : 26 / 08 / 2015 - 15 : 54
* https : //github.com/Jiiks/BetterDiscordApp
* /
2015-11-01 12:37:04 +01:00
var _hash ;
2016-01-08 16:33:43 +01:00
2015-08-27 15:46:53 +02:00
function Utils ( ) {
}
2016-01-08 16:33:43 +01:00
Utils . prototype . getTextArea = function ( ) {
2015-08-27 15:46:53 +02:00
return $ ( ".channel-textarea-inner textarea" ) ;
2015-10-26 06:27:55 +01:00
} ;
2015-08-27 15:46:53 +02:00
2016-01-08 16:33:43 +01:00
Utils . prototype . jqDefer = function ( fnc ) {
if ( window . jQuery ) {
fnc ( ) ;
} else {
setTimeout ( function ( ) {
2016-01-24 04:16:40 +01:00
this . jqDefer ( fnc ) ;
} , 100 ) ;
2016-01-08 16:33:43 +01:00
}
2015-10-26 06:27:55 +01:00
} ;
2016-01-08 16:33:43 +01:00
Utils . prototype . getHash = function ( ) {
$ . getJSON ( "https://api.github.com/repos/Jiiks/BetterDiscordApp/commits/master" , function ( data ) {
2015-11-01 12:37:04 +01:00
_hash = data . sha ;
2015-11-01 13:13:13 +01:00
emoteModule . getBlacklist ( ) ;
2015-11-01 12:37:04 +01:00
} ) ;
2015-12-11 01:09:59 +01:00
} ;
2015-11-01 12:37:04 +01:00
2016-01-08 16:33:43 +01:00
Utils . prototype . loadHtml = function ( html , callback ) {
var container = $ ( "<div/>" , {
class : "bd-container"
} ) . appendTo ( "body" ) ;
//TODO Inject these in next core update
html = '//cdn.rawgit.com/Jiiks/BetterDiscordApp/' + _hash + '/html/' + html + '.html' ;
2015-12-11 04:24:28 +01:00
2016-01-08 16:33:43 +01:00
container . load ( html , callback ( ) ) ;
2015-11-01 12:37:04 +01:00
} ;
2016-01-08 16:33:43 +01:00
Utils . prototype . injectJs = function ( uri ) {
2015-12-12 03:28:42 +01:00
$ ( "<script/>" , {
type : "text/javascript" ,
src : uri
} ) . appendTo ( $ ( "body" ) ) ;
} ;
2016-01-08 16:33:43 +01:00
Utils . prototype . injectCss = function ( uri ) {
2015-12-12 03:28:42 +01:00
$ ( "<link/>" , {
type : "text/css" ,
rel : "stylesheet" ,
href : uri
} ) . appendTo ( $ ( "head" ) ) ;
} ;
2015-12-11 01:09:59 +01:00
2016-01-08 16:33:43 +01:00
Utils . prototype . log = function ( message ) {
2016-05-21 11:19:29 +02:00
console . log ( '%c[%cBetterDiscord%c] %c' + message + '' , 'color: red;' , 'color: #303030; font-weight:700;' , 'color:red;' , '' ) ;
2015-12-31 18:27:43 +01:00
} ;
2016-01-08 16:33:43 +01:00
Utils . prototype . err = function ( message ) {
2016-05-21 11:19:29 +02:00
console . log ( '%c[%cBetterDiscord%c] %c' + message + '' , 'color: red;' , 'color: red; font-weight:700;' , 'color:red;' , '' ) ;
2015-12-31 18:27:43 +01:00
} ;
2016-05-06 20:31:20 +02:00
Utils . prototype . importSettings = function ( ) {
mainCore . alert ( "Import Settings" , '<div class="form" style="width:100%;"><div class="control-group"><textarea id="bda-import-textarea" style="min-height:150px;"></textarea></div><button id="bda-import-settings" class="btn btn-primary">Import</button></div>' ) ;
$ ( "#bda-import-settings" ) . off ( "click" ) . on ( "click" , function ( ) {
var obj ;
try {
obj = JSON . parse ( $ ( "#bda-import-textarea" ) . val ( ) ) ;
} catch ( err ) {
mainCore . alert ( "Invalid Data" , err ) ;
return false ;
}
try {
for ( key in obj . settings ) {
var val = obj . settings [ key ] ;
if ( settingsCookie . hasOwnProperty ( key ) ) {
settingsCookie [ key ] = val ;
var cb = $ ( "#" + key ) ;
cb . prop ( "checked" , val ) ;
settingsPanel . updateSettings ( ) ;
}
}
localStorage [ "bdcustomcss" ] = obj . customCss ;
var ccss = atob ( localStorage . getItem ( "bdcustomcss" ) ) ;
2016-05-06 22:57:33 +02:00
if ( ! customCssInitialized ) {
customCssEditor . init ( ) ;
customCssInitialized = true ;
}
2016-05-06 20:31:20 +02:00
customCssEditor . applyCustomCss ( ccss , settingsCookie [ "bda-css-0" ] , false ) ;
customCssEditor . editor . setValue ( ccss ) ;
} catch ( err ) {
mainCore . alert ( "Invalid Data" , err ) ;
return false ;
}
2016-05-06 22:57:33 +02:00
try {
$ . each ( obj . plugins , function ( plugin ) {
var enabled = obj . plugins [ plugin ] ;
if ( bdplugins . hasOwnProperty ( plugin ) ) {
pluginCookie [ plugin ] = enabled ;
var cb = $ ( "#" + plugin . replace ( " " , "__" ) ) ;
if ( cb . is ( ":checked" ) && ! enabled ) {
bdplugins [ plugin ] [ "plugin" ] . stop ( ) ;
cb . prop ( "checked" , false ) ;
}
if ( ! cb . is ( ":checked" ) && enabled ) {
bdplugins [ plugin ] [ "plugin" ] . start ( ) ;
cb . prop ( "checked" , true ) ;
}
}
} ) ;
pluginModule . savePluginData ( ) ;
} catch ( err ) {
mainCore . alert ( "Failed to load plugin data" , err ) ;
return false ;
}
try {
themeCookie = obj . themes ;
$ . each ( themeCookie , function ( theme ) {
var enabled = themeCookie [ theme ] ;
var id = "#ti" + theme ;
if ( bdthemes . hasOwnProperty ( theme ) ) {
if ( $ ( id ) . is ( ":checked" ) && ! enabled ) {
$ ( id ) . prop ( "checked" , false ) ;
$ ( "#" + theme ) . remove ( ) ;
}
if ( ! $ ( id ) . is ( ":checked" ) && enabled ) {
$ ( id ) . prop ( "checked" , true ) ;
$ ( "head" ) . append ( '<style id="' + theme + '">' + unescape ( bdthemes [ theme ] [ "css" ] ) + '</style>' ) ;
}
}
} ) ;
themeModule . saveThemeData ( ) ;
} catch ( err ) {
mainCore . alert ( "Failed to load theme data" , err ) ;
return false ;
}
2016-05-06 20:31:20 +02:00
return false ;
} ) ;
} ;
Utils . prototype . exportSettings = function ( ) {
var obj = {
settings : settingsCookie ,
customCss : localStorage [ "bdcustomcss" ] ,
2016-05-06 22:57:33 +02:00
plugins : pluginCookie ,
2016-05-06 20:31:20 +02:00
themes : themeCookie ,
favEmotes : window . localStorage [ "bdfavemotes" ]
} ;
mainCore . alert ( "Export Settings" , '<div class="form" style="width:100%;"><div class="control-group"><textarea style="min-height:150px;">' + JSON . stringify ( obj ) + '</textarea></div></div>' ) ;
} ;
Utils . prototype . addBackdrop = function ( target ) {
var backDrop = $ ( "<div/>" , {
class : "bda-backdrop" ,
"data-bdbackdrop" : target ,
mouseup : function ( ) {
$ ( '[data-bdalert="' + target + '"]' ) . remove ( ) ;
$ ( this ) . remove ( ) ;
}
} ) ;
$ ( "#app-mount" ) . append ( backDrop )
} ;
Utils . prototype . removeBackdrop = function ( target ) {
$ ( '[data-bdbackdrop="' + target + '"]' ) . remove ( ) ;
} ;
2015-10-26 06:27:55 +01:00
/ * B e t t e r D i s c o r d A p p V o i c e M o d e J a v a S c r i p t
* Version : 1.0
* Author : Jiiks | http : //jiiks.net
* Date : 25 / 10 / 2015 - 19 : 10
* https : //github.com/Jiiks/BetterDiscordApp
* /
function VoiceMode ( ) {
2015-08-31 15:36:28 +02:00
}
2015-10-26 06:27:55 +01:00
2016-01-08 16:33:43 +01:00
VoiceMode . prototype . obsCallback = function ( ) {
2015-11-19 00:35:39 +01:00
var self = this ;
2016-01-08 16:33:43 +01:00
if ( settingsCookie [ "bda-gs-4" ] ) {
2015-11-19 00:35:39 +01:00
self . disable ( ) ;
2016-01-08 16:33:43 +01:00
setTimeout ( function ( ) {
2015-11-19 00:35:39 +01:00
self . enable ( ) ;
} , 300 ) ;
}
2016-01-24 04:16:40 +01:00
} ;
2015-10-31 22:24:40 +01:00
2016-01-08 16:33:43 +01:00
VoiceMode . prototype . enable = function ( ) {
2015-10-26 06:27:55 +01:00
$ ( ".scroller.guild-channels ul" ) . first ( ) . css ( "display" , "none" ) ;
$ ( ".scroller.guild-channels header" ) . first ( ) . css ( "display" , "none" ) ;
2015-10-31 22:40:49 +01:00
$ ( ".app.flex-vertical" ) . first ( ) . css ( "overflow" , "hidden" ) ;
2015-10-26 06:27:55 +01:00
$ ( ".chat.flex-vertical.flex-spacer" ) . first ( ) . css ( "visibility" , "hidden" ) . css ( "min-width" , "0px" ) ;
2015-10-31 22:30:51 +01:00
$ ( ".flex-vertical.channels-wrap" ) . first ( ) . css ( "flex-grow" , "100000" ) ;
2015-10-26 06:27:55 +01:00
$ ( ".guild-header .btn.btn-hamburger" ) . first ( ) . css ( "visibility" , "hidden" ) ;
} ;
2016-01-08 16:33:43 +01:00
VoiceMode . prototype . disable = function ( ) {
2015-10-26 06:27:55 +01:00
$ ( ".scroller.guild-channels ul" ) . first ( ) . css ( "display" , "" ) ;
$ ( ".scroller.guild-channels header" ) . first ( ) . css ( "display" , "" ) ;
2015-11-19 00:35:39 +01:00
$ ( ".app.flex-vertical" ) . first ( ) . css ( "overflow" , "" ) ;
2015-10-26 06:27:55 +01:00
$ ( ".chat.flex-vertical.flex-spacer" ) . first ( ) . css ( "visibility" , "" ) . css ( "min-width" , "" ) ;
2015-10-31 22:30:51 +01:00
$ ( ".flex-vertical.channels-wrap" ) . first ( ) . css ( "flex-grow" , "" ) ;
2015-10-26 06:27:55 +01:00
$ ( ".guild-header .btn.btn-hamburger" ) . first ( ) . css ( "visibility" , "" ) ;
2015-12-11 07:43:36 +01:00
} ;
2015-12-16 12:21:46 +01:00
/ * B e t t e r D i s c o r d A p p P l u g i n M o d u l e J a v a S c r i p t
* Version : 1.0
* Author : Jiiks | http : //jiiks.net
* Date : 16 / 12 / 2015
* https : //github.com/Jiiks/BetterDiscordApp
* /
2015-12-12 07:07:56 +01:00
var pluginCookie = { } ;
2015-12-11 07:43:36 +01:00
function PluginModule ( ) {
2016-01-08 16:33:43 +01:00
2015-12-11 07:43:36 +01:00
}
2016-01-08 16:33:43 +01:00
PluginModule . prototype . loadPlugins = function ( ) {
2015-12-11 07:43:36 +01:00
2015-12-12 07:07:56 +01:00
this . loadPluginData ( ) ;
2016-01-08 16:33:43 +01:00
$ . each ( bdplugins , function ( ) {
2015-12-12 07:07:56 +01:00
var plugin = this [ "plugin" ] ;
plugin . load ( ) ;
2016-01-08 16:33:43 +01:00
2015-12-12 07:07:56 +01:00
var name = plugin . getName ( ) ;
var enabled = false ;
2016-01-08 16:33:43 +01:00
if ( pluginCookie . hasOwnProperty ( name ) ) {
2015-12-12 07:07:56 +01:00
enabled = pluginCookie [ name ] ;
} else {
pluginCookie [ name ] = false ;
}
2016-01-08 16:33:43 +01:00
if ( enabled ) {
2015-12-12 07:07:56 +01:00
plugin . start ( ) ;
}
} ) ;
2015-12-11 07:43:36 +01:00
} ;
2016-01-08 16:33:43 +01:00
PluginModule . prototype . handlePlugin = function ( checkbox ) {
2015-12-12 07:07:56 +01:00
var cb = $ ( checkbox ) . children ( ) . find ( 'input[type="checkbox"]' ) ;
var enabled = ! cb . is ( ":checked" ) ;
2016-05-06 22:57:33 +02:00
var id = cb . attr ( "id" ) . replace ( "__" , " " ) ;
2015-12-12 07:07:56 +01:00
cb . prop ( "checked" , enabled ) ;
2016-01-08 16:33:43 +01:00
if ( enabled ) {
2015-12-12 17:29:06 +01:00
bdplugins [ id ] [ "plugin" ] . start ( ) ;
2015-12-12 07:07:56 +01:00
pluginCookie [ id ] = true ;
} else {
2015-12-12 17:29:06 +01:00
bdplugins [ id ] [ "plugin" ] . stop ( ) ;
2015-12-12 07:07:56 +01:00
pluginCookie [ id ] = false ;
}
2016-01-08 16:33:43 +01:00
2015-12-12 07:07:56 +01:00
this . savePluginData ( ) ;
2015-12-11 07:43:36 +01:00
} ;
2016-01-08 16:33:43 +01:00
PluginModule . prototype . showSettings = function ( plugin ) {
if ( bdplugins [ plugin ] != null ) {
if ( typeof bdplugins [ plugin ] . plugin . getSettingsPanel === "function" ) {
2015-12-22 09:44:14 +01:00
var panel = bdplugins [ plugin ] . plugin . getSettingsPanel ( ) ;
2016-01-08 16:33:43 +01:00
$ ( ".modal-inner" ) . off ( "click.bdpsm" ) . on ( "click.bdpsm" , function ( e ) {
if ( $ ( "#bd-psm-id" ) . length ) {
2015-12-22 10:09:20 +01:00
$ ( ".bd-psm" ) . remove ( ) ;
} else {
$ ( ".bd-psm" ) . attr ( "id" , "bd-psm-id" ) ;
}
2016-01-08 16:33:43 +01:00
2015-12-22 10:09:20 +01:00
} ) ;
2015-12-22 09:44:14 +01:00
$ ( ".modal" ) . append ( '<div class="bd-psm"><div class="scroller-wrap" style="height:100%"><div id="bd-psm-s" class="scroller" style="padding:10px;"></div></div></div>' ) ;
$ ( "#bd-psm-s" ) . append ( panel ) ;
}
}
} ;
2016-01-08 16:33:43 +01:00
PluginModule . prototype . loadPluginData = function ( ) {
2015-12-12 07:07:56 +01:00
var cookie = $ . cookie ( "bd-plugins" ) ;
2016-01-08 16:33:43 +01:00
if ( cookie != undefined ) {
pluginCookie = JSON . parse ( $ . cookie ( "bd-plugins" ) ) ;
2015-12-12 07:07:56 +01:00
}
} ;
2015-12-11 07:43:36 +01:00
2016-01-08 16:33:43 +01:00
PluginModule . prototype . savePluginData = function ( ) {
$ . cookie ( "bd-plugins" , JSON . stringify ( pluginCookie ) , {
expires : 365 ,
path : '/'
} ) ;
2015-12-12 09:50:25 +01:00
} ;
2016-01-08 16:33:43 +01:00
PluginModule . prototype . newMessage = function ( ) {
$ . each ( bdplugins , function ( ) {
if ( ! pluginCookie [ this . plugin . getName ( ) ] ) return ;
if ( typeof this . plugin . onMessage === "function" ) {
2015-12-27 16:39:10 +01:00
this . plugin . onMessage ( ) ;
}
} ) ;
} ;
2016-01-08 16:33:43 +01:00
PluginModule . prototype . channelSwitch = function ( ) {
$ . each ( bdplugins , function ( ) {
if ( ! pluginCookie [ this . plugin . getName ( ) ] ) return ;
if ( typeof this . plugin . onSwitch === "function" ) {
this . plugin . onSwitch ( ) ;
2015-12-27 16:39:10 +01:00
}
} ) ;
} ;
2016-01-08 16:33:43 +01:00
PluginModule . prototype . socketEvent = function ( e , data ) {
$ . each ( bdplugins , function ( ) {
if ( ! pluginCookie [ this . plugin . getName ( ) ] ) return ;
if ( typeof this . plugin . socketEvent === "function" ) {
2016-01-07 07:44:14 +01:00
this . plugin . socketEvent ( data ) ;
}
} ) ;
2016-01-07 07:35:40 +01:00
} ;
2016-04-04 16:22:53 +02:00
PluginModule . prototype . rawObserver = function ( e ) {
$ . each ( bdplugins , function ( ) {
if ( ! pluginCookie [ this . plugin . getName ( ) ] ) return ;
if ( typeof this . plugin . observer === "function" ) {
this . plugin . observer ( e ) ;
}
} ) ;
} ;
2015-12-16 12:21:46 +01:00
/ * B e t t e r D i s c o r d A p p T h e m e M o d u l e J a v a S c r i p t
* Version : 1.0
* Author : Jiiks | http : //jiiks.net
* Date : 16 / 12 / 2015
* https : //github.com/Jiiks/BetterDiscordApp
* /
2015-12-15 08:37:15 +01:00
var themeCookie = { } ;
function ThemeModule ( ) {
2016-01-08 16:33:43 +01:00
2015-12-15 08:37:15 +01:00
}
2016-01-08 16:33:43 +01:00
ThemeModule . prototype . loadThemes = function ( ) {
2015-12-15 08:37:15 +01:00
this . loadThemeData ( ) ;
2016-01-08 16:33:43 +01:00
$ . each ( bdthemes , function ( ) {
2015-12-15 08:37:15 +01:00
var name = this [ "name" ] ;
var enabled = false ;
2016-01-08 16:33:43 +01:00
if ( themeCookie . hasOwnProperty ( name ) ) {
if ( themeCookie [ name ] ) {
2015-12-15 08:37:15 +01:00
enabled = true ;
}
} else {
themeCookie [ name ] = false ;
}
2016-01-08 16:33:43 +01:00
if ( enabled ) {
$ ( "head" ) . append ( '<style id="' + name + '">' + unescape ( bdthemes [ name ] [ "css" ] ) + '</style>' ) ;
2015-12-15 08:37:15 +01:00
}
} ) ;
} ;
2016-01-08 16:33:43 +01:00
ThemeModule . prototype . handleTheme = function ( checkbox ) {
2015-12-15 08:37:15 +01:00
var cb = $ ( checkbox ) . children ( ) . find ( 'input[type="checkbox"]' ) ;
var enabled = ! cb . is ( ":checked" ) ;
var id = cb . attr ( "id" ) . substring ( 2 ) ;
cb . prop ( "checked" , enabled ) ;
2016-01-08 16:33:43 +01:00
if ( enabled ) {
$ ( "head" ) . append ( '<style id="' + id + '">' + unescape ( bdthemes [ id ] [ "css" ] ) + '</style>' ) ;
2015-12-15 08:37:15 +01:00
themeCookie [ id ] = true ;
} else {
2016-01-08 16:33:43 +01:00
$ ( "#" + id ) . remove ( ) ;
2015-12-15 08:37:15 +01:00
themeCookie [ id ] = false ;
}
2016-01-08 16:33:43 +01:00
2015-12-15 08:37:15 +01:00
this . saveThemeData ( ) ;
} ;
2016-01-08 16:33:43 +01:00
ThemeModule . prototype . loadThemeData = function ( ) {
2015-12-15 08:37:15 +01:00
var cookie = $ . cookie ( "bd-themes" ) ;
2016-01-08 16:33:43 +01:00
if ( cookie != undefined ) {
2015-12-15 08:37:15 +01:00
themeCookie = JSON . parse ( $ . cookie ( "bd-themes" ) ) ;
}
} ;
2016-01-08 16:33:43 +01:00
ThemeModule . prototype . saveThemeData = function ( ) {
$ . cookie ( "bd-themes" , JSON . stringify ( themeCookie ) , {
expires : 365 ,
path : '/'
} ) ;
2015-12-15 08:37:15 +01:00
} ;
2015-12-31 18:27:43 +01:00
/*BDSocket*/
var bdSocket ;
var bdws ;
function BdWSocket ( ) {
bdws = this ;
}
2016-01-08 16:33:43 +01:00
BdWSocket . prototype . start = function ( ) {
2015-12-31 18:27:43 +01:00
var self = this ;
2016-02-12 20:35:12 +01:00
/ * $ . a j a x ( {
2016-01-08 16:33:43 +01:00
method : "GET" ,
url : "https://discordapp.com/api/gateway" ,
headers : {
authorization : localStorage . token . match ( /\"(.+)\"/ ) [ 1 ]
} ,
success : function ( data ) {
2015-12-31 18:27:43 +01:00
self . open ( data . url ) ;
}
2016-02-12 20:35:12 +01:00
} ) ; * /
2015-12-31 18:27:43 +01:00
} ;
2016-01-08 16:33:43 +01:00
BdWSocket . prototype . open = function ( host ) {
2015-12-31 18:27:43 +01:00
utils . log ( "Socket Host: " + host ) ;
try {
bdSocket = new WebSocket ( host ) ;
2016-01-08 16:33:43 +01:00
bdSocket . onopen = this . onOpen ;
2015-12-31 18:27:43 +01:00
bdSocket . onmessage = this . onMessage ;
bdSocket . onerror = this . onError ;
bdSocket . onclose = this . onClose ;
2016-01-08 16:33:43 +01:00
} catch ( err ) {
utils . log ( err ) ;
}
2015-12-31 18:27:43 +01:00
} ;
2016-01-08 16:33:43 +01:00
BdWSocket . prototype . onOpen = function ( ) {
2015-12-31 18:27:43 +01:00
utils . log ( "Socket Open" ) ;
var data = {
op : 2 ,
d : {
token : JSON . parse ( localStorage . getItem ( 'token' ) ) ,
properties : JSON . parse ( localStorage . getItem ( 'superProperties' ) ) ,
v : 3
}
} ;
bdws . send ( data ) ;
} ;
2016-01-08 16:33:43 +01:00
BdWSocket . prototype . onMessage = function ( e ) {
2015-12-31 18:27:43 +01:00
var packet , data , type ;
try {
packet = JSON . parse ( e . data ) ;
data = packet . d ;
type = packet . t ;
2016-01-08 16:33:43 +01:00
} catch ( err ) {
2015-12-31 18:27:43 +01:00
utils . err ( err ) ;
return ;
}
2016-01-08 16:33:43 +01:00
switch ( type ) {
case "READY" :
2016-01-24 04:16:40 +01:00
bdSocket . interval = setInterval ( function ( ) { bdws . send ( {
2016-01-08 16:33:43 +01:00
op : 1 ,
d : Date . now ( )
2016-01-24 04:16:40 +01:00
} ) ; } , data . heartbeat _interval ) ;
2016-01-08 16:33:43 +01:00
utils . log ( "Socket Ready" ) ;
break ;
case "PRESENCE_UPDATE" :
pluginModule . socketEvent ( "PRESENCE_UPDATE" , data ) ;
break ;
case "TYPING_START" :
pluginModule . socketEvent ( "TYPING_START" , data ) ;
break ;
case "MESSAGE_CREATE" :
pluginModule . socketEvent ( "MESSAGE_CREATE" , data ) ;
break ;
case "MESSAGE_UPDATE" :
pluginModule . socketEvent ( "MESSAGE_UPDATE" , data ) ;
break ;
default :
break ;
2015-12-31 18:27:43 +01:00
}
} ;
2016-01-08 16:33:43 +01:00
BdWSocket . prototype . onError = function ( e ) {
2016-01-07 07:35:40 +01:00
utils . log ( "Socket Error - " + e . message ) ;
2015-12-31 18:27:43 +01:00
} ;
2016-01-08 16:33:43 +01:00
BdWSocket . prototype . onClose = function ( e ) {
2015-12-31 18:27:43 +01:00
utils . log ( "Socket Closed - " + e . code + " : " + e . reason ) ;
2016-01-07 07:53:03 +01:00
clearInterval ( bdSocket . interval ) ;
2016-01-07 07:35:40 +01:00
bdws . start ( ) ;
2015-12-31 18:27:43 +01:00
} ;
2016-01-08 16:33:43 +01:00
BdWSocket . prototype . send = function ( data ) {
if ( bdSocket . readyState == 1 ) {
2016-01-07 10:19:46 +01:00
bdSocket . send ( JSON . stringify ( data ) ) ;
}
2015-12-31 18:27:43 +01:00
} ;
2016-01-08 16:33:43 +01:00
BdWSocket . prototype . getSocket = function ( ) {
2016-01-07 07:35:40 +01:00
return bdSocket ;
} ;
2015-12-12 09:50:25 +01:00
/ * B e t t e r D i s c o r d A p p A P I f o r P l u g i n s
* Version : 1.0
* Author : Jiiks | http : //jiiks.net
* Date : 11 / 12 / 2015
* Last Update : 11 / 12 / 2015
* https : //github.com/Jiiks/BetterDiscordApp
*
* Plugin Template : https : //gist.github.com/Jiiks/71edd5af0beafcd08956
* /
function BdApi ( ) { }
//Joins a server
//code = server invite code
2016-01-08 16:33:43 +01:00
BdApi . joinServer = function ( code ) {
opublicServers . joinServer ( code ) ;
2015-12-12 09:50:25 +01:00
} ;
//Inject CSS to document head
//id = id of element
//css = custom css
2016-01-08 16:33:43 +01:00
BdApi . injectCSS = function ( id , css ) {
2016-01-24 04:16:40 +01:00
$ ( "head" ) . append ( '<style id="' + id + '"></style>' ) ;
2015-12-12 09:50:25 +01:00
$ ( "#" + id ) . html ( css ) ;
} ;
//Clear css/remove any element
//id = id of element
2016-01-08 16:33:43 +01:00
BdApi . clearCSS = function ( id ) {
$ ( "#" + id ) . remove ( ) ;
2015-12-12 09:50:25 +01:00
} ;
//Get another plugin
//name = name of plugin
2016-01-08 16:33:43 +01:00
BdApi . getPlugin = function ( name ) {
if ( bdplugins . hasOwnProperty ( name ) ) {
2015-12-12 17:29:06 +01:00
return bdplugins [ name ] [ "plugin" ] ;
2015-12-12 09:50:25 +01:00
}
return null ;
} ;
//Get ipc for reason
2016-01-08 16:33:43 +01:00
BdApi . getIpc = function ( ) {
return betterDiscordIPC ;
2015-12-12 09:50:25 +01:00
} ;
//Get BetterDiscord Core
2016-01-08 16:33:43 +01:00
BdApi . getCore = function ( ) {
return mainCore ;
2015-12-12 13:53:07 +01:00
} ;
2015-12-12 13:54:21 +01:00
//Attempts to get user id by username
//Name = username
//Since Discord hides users if there's too many, this will often fail
2016-01-08 16:33:43 +01:00
BdApi . getUserIdByName = function ( name ) {
2015-12-12 17:54:44 +01:00
var users = $ ( ".member-username" ) ;
2016-01-08 16:33:43 +01:00
for ( var i = 0 ; i < users . length ; i ++ ) {
2015-12-12 17:54:44 +01:00
var user = $ ( users [ i ] ) ;
2016-01-08 16:33:43 +01:00
if ( user . text ( ) == name ) {
2015-12-12 17:54:44 +01:00
var avatarUrl = user . closest ( ".member" ) . find ( ".avatar-small" ) . css ( "background-image" ) ;
return avatarUrl . match ( /\d+/ ) ;
}
}
return null ;
2015-12-12 13:53:07 +01:00
} ;
2015-12-12 13:54:21 +01:00
//Attempts to get username by id
//ID = user id
//Since Discord hides users if there's too many, this will often fail
2015-12-12 17:54:44 +01:00
var gg ;
2016-01-08 16:33:43 +01:00
BdApi . getUserNameById = function ( id ) {
2015-12-12 17:54:44 +01:00
var users = $ ( ".avatar-small" ) ;
2016-01-08 16:33:43 +01:00
for ( var i = 0 ; i < users . length ; i ++ ) {
2015-12-12 17:54:44 +01:00
var user = $ ( users [ i ] ) ;
var url = user . css ( "background-image" ) ;
2016-01-08 16:33:43 +01:00
if ( id == url . match ( /\d+/ ) ) {
2015-12-12 17:54:44 +01:00
return user . parent ( ) . find ( ".member-username" ) . text ( ) ;
}
}
return null ;
2016-01-07 07:35:40 +01:00
} ;
2016-01-07 07:44:14 +01:00
//Set current game
//game = game
2016-01-08 16:33:43 +01:00
BdApi . setPlaying = function ( game ) {
bdws . send ( {
"op" : 3 ,
"d" : {
"idle_since" : null ,
"game" : {
"name" : game
}
}
} ) ;
2016-01-07 07:35:40 +01:00
} ;
2016-01-07 07:44:14 +01:00
//Set current status
//idle_since = date
//status = status
2016-01-08 16:33:43 +01:00
BdApi . setStatus = function ( idle _since , status ) {
bdws . send ( {
"op" : 3 ,
"d" : {
"idle_since" : idle _since ,
"game" : {
"name" : status
}
}
} ) ;
2016-04-08 00:21:30 +02:00
} ;
2016-05-24 22:33:24 +02:00
/ * B e t t e r D i s c o r d A p p D e v M o d e J a v a S c r i p t
* Version : 1.0
* Author : Jiiks | http : //jiiks.net
* Date : 22 / 05 / 2016
* Last Update : 22 / 05 / 2016
* https : //github.com/Jiiks/BetterDiscordApp
* /
function devMode ( ) { }
devMode . prototype . enable = function ( ) {
var self = this ;
$ ( window ) . on ( "keydown.bdDevmode" , function ( e ) {
if ( e . which === 119 ) { //F8
debugger ;
}
} ) ;
/ *
$ ( window ) . on ( "mousedown.bdDevmode" , function ( e ) {
if ( e . which !== 3 ) return ;
var parents = [ ] ;
$ ( e . toElement ) . parents ( ) . addBack ( ) . not ( 'html' ) . each ( function ( ) {
var entry = "" ;
if ( this . className ) {
entry += "." + this . className . trim ( ) . replace ( / /g , "." ) ;
parents . push ( entry ) ;
}
} ) ;
self . lastSelector = parents . join ( " " ) . trim ( ) ;
function attach ( ) {
var cm = $ ( ".context-menu" ) ;
if ( cm . length <= 0 ) {
return ;
cm = $ ( "body" ) . append ( '<div class="context-menu"></div>' ) ;
}
var cmo = $ ( "<div/>" , {
class : "item-group"
} ) ;
var cmi = $ ( "<div/>" , {
class : "item" ,
click : function ( ) {
var t = $ ( "<textarea/>" , { text : self . lastSelector } ) . appendTo ( "body" ) ;
t . select ( ) ;
document . execCommand ( "copy" ) ;
t . remove ( ) ;
cm . remove ( ) ;
}
} ) . append ( $ ( "<span/>" , { text : "Copy Selector" } ) ) ;
cmo . append ( cmi ) ;
cm . append ( cmo ) ;
cm . css ( "top" , ( cm . css ( "top" ) . replace ( "px" , "" ) - 28 ) + "px" ) ;
}
setTimeout ( attach , 100 ) ;
e . stopPropagation ( ) ;
} ) ;
* /
} ;
devMode . prototype . disable = function ( ) {
$ ( window ) . off ( "keydown.bdDevmode" ) ;
$ ( window ) . off ( "mousedown.bdDevmode" )
} ;