BetterDiscordApp-v1/js/main.js

1549 lines
262 KiB
JavaScript
Raw Normal View History

2015-08-27 15:46:53 +02:00
/* BetterDiscordApp Core JavaScript
2015-12-01 14:55:27 +01:00
* Version: 1.52
2015-08-27 15:46:53 +02:00
* Author: Jiiks | http://jiiks.net
* Date: 27/08/2015 - 16:36
* Last Update: 24/010/2015 - 17:27
2015-08-27 15:46:53 +02:00
* https://github.com/Jiiks/BetterDiscordApp
*/
2015-12-15 08:37:15 +01:00
var settingsPanel, emoteModule, utils, quickEmoteMenu, opublicServers, voiceMode, pluginModule, themeModule;
2015-12-14 07:12:07 +01:00
var jsVersion = 1.54;
2015-12-11 10:21:16 +01:00
var supportedVersion = "0.2.3";
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
var mainCore;
2015-08-27 15:46:53 +02:00
2015-08-29 11:36:47 +02:00
var settings = {
"Save logs locally": { "id": "bda-gs-0", "info": "Saves chat logs locally", "implemented": false },
"Public Servers": { "id": "bda-gs-1", "info": "Display public servers button", "implemented": true },
"Minimal Mode": { "id": "bda-gs-2", "info": "Hide elements and reduce the size of elements.", "implemented": true },
"Voice Mode": { "id": "bda-gs-4", "info": "Only show voice chat", "implemented": true },
"Hide Channels": { "id": "bda-gs-3", "info": "Hide channels in minimal mode", "implemented": true },
"Quick Emote Menu": { "id": "bda-es-0", "info": "Show quick emote menu for adding emotes", "implemented": true },
"Show Emotes": { "id": "bda-es-7", "info": "Show any emotes", "implemented": true },
"FrankerFaceZ Emotes": { "id": "bda-es-1", "info": "Show FrankerFaceZ Emotes", "implemented": true },
"BetterTTV Emotes": { "id": "bda-es-2", "info": "Show BetterTTV Emotes", "implemented": true },
"Emote Autocomplete": { "id": "bda-es-3", "info": "Autocomplete emote commands", "implemented": false },
"Emote Auto Capitalization": { "id": "bda-es-4", "info": "Autocapitalize emote commands", "implemented": true },
"Override Default Emotes": { "id": "bda-es-5", "info": "Override default emotes", "implemented": false },
"Show Names": { "id": "bda-es-6", "info": "Show emote names on hover", "implemented": true }
2015-12-12 17:29:06 +01:00
}
2015-08-29 11:36:47 +02:00
2015-11-27 01:14:33 +01:00
var links = {
"Jiiks.net": { "text": "Jiiks.net", "href": "http://jiiks.net", "target": "_blank" },
"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 = {
"version": jsVersion,
"bda-gs-0": false,
"bda-gs-1": true,
"bda-gs-2": false,
"bda-gs-3": false,
"bda-gs-4": false,
"bda-es-0": true,
"bda-es-1": false,
"bda-es-2": false,
"bda-es-3": false,
"bda-es-4": false,
"bda-es-5": true,
"bda-es-6": true,
"bda-es-7": true,
"bda-jd": true
};
var bdchangelog = {
2015-12-11 10:21:16 +01:00
"changes": {
2015-12-14 07:12:07 +01:00
"favemotes": {
"title": "Favorite Emotes!",
"text": "You can now favorite emotes and have them listed in the quick emote menu!",
"img": ""
},
2015-12-11 10:21:16 +01:00
"plugins": {
"title": "Plugins!",
2015-12-12 10:24:23 +01:00
"text": "Combined with Core 0.2.3, you can now write JavaScript plugins for Discord!",
2015-12-11 10:21:16 +01:00
"img": ""
2015-12-12 09:35:14 +01:00
},
"settingsmenu": {
2015-12-12 09:50:25 +01:00
"title": "Settings Menu!",
2015-12-12 09:35:14 +01:00
"text": "New and improved settings menu!",
"img": ""
},
"csseditor": {
2015-12-12 09:50:25 +01:00
"title": "New CSS Editor!",
"text": "New CSS Editor powered by <a href='http://codemirror.net' target='_blank'>CodeMirror!</a>",
2015-12-12 09:35:14 +01:00
"img": ""
},
2015-12-12 10:24:23 +01:00
"minimalmode": {
"title": "Minimal mode makeover!",
"text": "New and improved minimal mode!",
"img": ""
}
2015-12-11 10:21:16 +01:00
},
2015-12-01 14:55:27 +01:00
"fixes": {
2015-12-12 09:35:14 +01:00
"reload": {
2015-12-12 09:50:25 +01:00
"title": "Reload Fix!",
"text": "Fixed an issue that caused Discord to crash on reload!",
2015-12-12 09:35:14 +01:00
"img": ""
},
2015-12-11 10:21:16 +01:00
"eemotes": {
"title": "Edit Emotes!",
"text": "Edited messages now display emotes properly!",
2015-12-01 14:55:27 +01:00
"img": ""
2015-12-12 09:36:26 +01:00
},
"pservers": {
"title": "Public Servers",
"text": "Public servers have been fixed!",
"img": ""
},
"other": {
2015-12-12 09:50:25 +01:00
"title": "Bugfixes!",
"text": "Several smaller bugs fixed!",
2015-12-12 09:36:26 +01:00
"img": ""
}
2015-12-01 14:55:27 +01:00
},
"upcoming": {
"ignore": {
"title": "Ignore User!",
2015-12-12 09:50:25 +01:00
"text": "Ignore users you don't like!",
"img": ""
},
2015-12-12 10:24:23 +01:00
"themes": {
"title": "Custom themes!",
"text": "Write your own or download custom themes!",
"img": ""
},
"favemotes": {
"title": "Favorite emotes!",
"text": "Add your favorite emote(s) to the quick emote menu!",
"img": ""
},
"more": {
"title": "More Things!",
2015-12-12 09:50:25 +01:00
"text": "More things but probably not in the next version!",
"img": ""
}
}
2015-08-29 11:36:47 +02:00
};
var settingsCookie = {};
2015-08-27 15:46:53 +02:00
function Core() {}
2015-08-27 15:46:53 +02:00
Core.prototype.init = function() {
2015-08-27 15:46:53 +02:00
var self = this;
if(version < supportedVersion) {
2015-12-12 09:50:25 +01:00
alert("BetterDiscord v" + version + "(your version)" + " is not supported by the latest js("+jsVersion+"). Please download the latest version from betterdiscord.net");
return;
}
2015-08-29 11:36:47 +02:00
2015-08-27 15:46:53 +02:00
utils = new Utils();
2015-11-01 12:37:04 +01:00
utils.getHash();
2015-08-27 15:46:53 +02:00
emoteModule = new EmoteModule();
quickEmoteMenu = new QuickEmoteMenu();
voiceMode = new VoiceMode();
2015-08-27 15:46:53 +02:00
emoteModule.init();
2015-08-29 11:36:47 +02:00
this.initSettings();
this.initObserver();
//Incase were too fast
function gwDefer() {
console.log(new Date().getTime() + " Defer");
if($(".guilds-wrapper .guilds").children().length > 0) {
console.log(new Date().getTime() + " Defer Loaded");
var guilds = $(".guilds li:first-child");
2015-12-11 04:24:28 +01:00
guilds.after($("<li></li>", { 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" })))));
2015-08-27 15:46:53 +02:00
var showChannelsButton = $("<button/>", {
class: "btn",
id: "bd-show-channels",
text: "R",
css: {
"cursor": "pointer"
},
click: function() {
settingsCookie["bda-gs-3"] = false;
$("body").removeClass("bd-minimal-chan");
self.saveSettings();
}
});
$(".guilds-wrapper").prepend(showChannelsButton);
opublicServers = new PublicServers();
2015-12-12 07:07:56 +01:00
pluginModule = new PluginModule();
pluginModule.loadPlugins();
2015-12-15 10:13:40 +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-08-31 15:20:33 +02:00
quickEmoteMenu.init(false);
$("#tc-settings-button").on("click", function() { settingsPanel.show(); });
$("#bd-pub-button").on("click", function() { opublicServers.show(); });
2015-12-11 04:24:28 +01:00
opublicServers.init();
emoteModule.autoCapitalize();
/*Display new features in BetterDiscord*/
if(settingsCookie["version"] < jsVersion) {
var cl = self.constructChangelog();
$("body").append(cl);
settingsCookie["version"] = jsVersion;
self.saveSettings();
}
2015-12-02 23:14:30 +01:00
$("head").append('<script>Date.now||(Date.now=function(){return(new Date).getTime()}),function(){"use strict";for(var t=["webkit","moz"],e=0;e<t.length&&!window.requestAnimationFrame;++e){var i=t[e];window.requestAnimationFrame=window[i+"RequestAnimationFrame"],window.cancelAnimationFrame=window[i+"CancelAnimationFrame"]||window[i+"CancelRequestAnimationFrame"]}if(/iP(ad|hone|od).*OS 6/.test(window.navigator.userAgent)||!window.requestAnimationFrame||!window.cancelAnimationFrame){var s=0;window.requestAnimationFrame=function(t){var e=Date.now(),i=Math.max(s+16,e);return setTimeout(function(){t(s=i)},i-e)},window.cancelAnimationFrame=clearTimeout}}(),function(t){t.snowfall=function(e,i){function s(s,n,a,o){this.x=s,this.y=n,this.size=a,this.speed=o,this.step=0,this.stepSize=h(1,10)/100,i.collection&&(this.target=m[h(0,m.length-1)]);var r=null;i.image?(r=document.createElement("img"),r.src=i.image):(r=document.createElement("div"),t(r).css({background:i.flakeColor})),t(r).attr({"class":"snowfall-flakes"}).css({width:this.size,height:this.size,position:i.flakePosition,top:this.y,left:this.x,fontSize:0,zIndex:i.flakeIndex}),t(e).get(0).tagName===t(document).get(0).tagName?(t("body").append(t(r)),e=t("body")):t(e).append(t(r)),this.element=r,this.update=function(){if(this.y+=this.speed,this.y>l-(this.size+6)&&this.reset(),this.element.style.top=this.y+"px",this.element.style.left=this.x+"px",this.step+=this.stepSize,this.x+=y===!1?Math.cos(this.step):y+Math.cos(this.step),i.collection&&this.x>this.target.x&&this.x<this.target.width+this.target.x&&this.y>this.target.y&&this.y<this.target.height+this.target.y){var t=this.target.element.getContext("2d"),e=this.x-this.target.x,s=this.y-this.target.y,n=this.target.colData;if(void 0!==n[parseInt(e)][parseInt(s+this.speed+this.size)]||s+this.speed+this.size>this.target.height)if(s+this.speed+this.size>this.target.height){for(;s+this.speed+this.size>this.target.height&&this.speed>0;)this.speed*=.5;t.fillStyle="#fff",void 0==n[parseInt(e)][parseInt(s+this.speed+this.size)]?(n[parseInt(e)][parseInt(s+this.speed+this.size)]=1,t.fillRect(e,s+this.speed+this.size,this.size,this.size)):(n[parseInt(e)][parseInt(s+this.speed)]=1,t.fillRect(e,s+this.speed,this.size,this.size)),this.reset()}else this.speed=1,this.stepSize=0,parseInt(e)+1<this.target.width&&void 0==n[parseInt(e)+1][parseInt(s)+1]?this.x++:parseInt(e)-1>0&&void 0==n[parseInt(e)-1][parseInt(s)+1]?this.x--:(t.fillStyle="#fff",t.fillRect(e,s,this.size,this.size),n[parseInt(e)][parseInt(s)]=1,this.reset())}(this.x+this.size>d-c||this.x<c)&&this.reset()},this.reset=function(){this.y=0,this.x=h(c,d-c),this.stepSize=h(1,10)/100,this.size=h(100*i.minSize,100*i.maxSize)/100,this.element.style.width=this.size+"px",this.element.style.height=this.size+"px",this.speed=h(i.minSpeed,i.maxSpeed)}}function n(){for(r=0;r<a.length;r+=1)a[r].update();f=requestAnimationFrame(function(){n()})}var a=[],o={flakeCount:35,flakeColor:"#ffffff",flakePosition:"absolute",flakeIndex:999999,minSize:1,maxSize:2,minSpeed:1,maxSpeed:5,round:!1,shadow:!1,collection:!1,collectionHeight:40,deviceorientation:!1},i=t.extend(o,i),h=function(t,e){return Math.round(t+Math.random()*(e-t))};t(e).data("snowfall",this);var r=0,l=t(e).height(),d=t(e).width(),c=0,f=0;if(i.collection!==!1){var p=document.createElement("canvas");if(p.getContext&&p.getContext("2d"))for(var m=[],w=t(i.collection),g=i.collectionHeight,r=0;r<w.length;r++){var u=w[r].getBoundingClientRect(),x=t("<canvas/>",{"class":"snowfall-canvas"}),z=[];if(u.top-g>0){t("body").append(x),x.css({position:i.flakePosition,left:u.left+"px",top:u.top-g+"px"}).prop({width:u.width,height:g});for(var v=0;v<u.width;v++)z[v]=[];m.push({element:x.get(0),x:u.left,y:u.top-g,width:u.width,height:g,colData:z})}}else i.collection=!1}for(t(e).get(0).tagName===t(document).get(0).tagName&&(c=25),t(window).bind("resize",function(){l=t(e)[0].clientHeight,d=t(e)[0].offsetWidth}),r=0;r<i.flakeCount;r+=1)a.push(new s(h(c,d-c),h(0,l),h(100*i.minSize,100*i.maxSize)/100,h(i.minSpeed,i.maxSpeed)));i.round&&t(".snowfall-flakes").css({"-moz
//By http://www.somethinghitme.com
$("head").append("<style>.CodeMirror{ min-width:100%; }</style>");
2015-12-12 07:07:56 +01:00
2015-08-31 15:20:33 +02:00
} else {
setTimeout(gwDefer, 100);
2015-08-31 15:20:33 +02:00
}
}
2015-08-31 15:59:34 +02:00
$(document).ready(function() {
setTimeout(gwDefer, 1000);
});
};
2015-08-27 15:46:53 +02:00
2015-08-29 11:36:47 +02:00
Core.prototype.initSettings = function() {
if($.cookie("better-discord") == undefined) {
settingsCookie = defaultCookie;
this.saveSettings();
} else {
this.loadSettings();
for(var setting in defaultCookie) {
if(settingsCookie[setting] == undefined) {
settingsCookie[setting] = defaultCookie[setting];
2015-08-29 11:36:47 +02:00
this.saveSettings();
}
2015-08-27 15:46:53 +02:00
}
}
};
2015-08-27 15:46:53 +02:00
2015-08-29 11:36:47 +02:00
Core.prototype.saveSettings = function() {
$.cookie("better-discord", JSON.stringify(settingsCookie), { expires: 365, path: '/' });
};
2015-08-29 11:36:47 +02:00
Core.prototype.loadSettings = function() {
settingsCookie = JSON.parse($.cookie("better-discord"));
};
2015-08-29 11:36:47 +02:00
Core.prototype.initObserver = function() {
mainObserver = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
2015-08-29 21:02:20 +02:00
if(mutation.target.getAttribute('class') != null) {
if(mutation.target.getAttribute('class').indexOf("titlebar") != -1) {
quickEmoteMenu.obsCallback();
voiceMode.obsCallback();
2015-08-29 21:02:20 +02:00
}
2015-08-29 11:36:47 +02:00
}
emoteModule.obsCallback(mutation);
});
});
//noinspection JSCheckFunctionSignatures
2015-08-29 11:36:47 +02:00
mainObserver.observe(document, { childList: true, subtree: true });
};
2015-08-29 11:36:47 +02:00
Core.prototype.constructChangelog = function() {
var changeLog = '' +
'<div id="bd-wn-modal" class="modal" style="opacity:1;">' +
' <div class="modal-inner">' +
' <div id="bdcl" class="change-log"> ' +
' <div class="header">' +
2015-12-14 07:12:07 +01:00
' <strong>What\'s new in BetterDiscord JS v1.53&' + jsVersion + '</strong>' +
' <button class="close" onclick=\'$("#bd-wn-modal").remove();\'></button>' +
' </div><!--header-->' +
' <div class="scroller-wrap">' +
' <div class="scroller">';
if(bdchangelog.changes != null) {
changeLog += '' +
'<h1 class="changelog-added">' +
' <span>New Stuff</span>' +
'</h1>' +
'<ul>';
for(var change in bdchangelog.changes) {
change = bdchangelog.changes[change];
changeLog += '' +
'<li>' +
' <strong>'+change.title+'</strong>' +
' <div>'+change.text+'</div>' +
'</li>';
}
changeLog += '</ul>';
}
if(bdchangelog.fixes != null) {
changeLog += '' +
'<h1 class="changelog-fixed">' +
' <span>Fixed</span>' +
'</h1>' +
'<ul>';
for(var fix in bdchangelog.fixes) {
fix = bdchangelog.fixes[fix];
changeLog += '' +
'<li>' +
' <strong>'+fix.title+'</strong>' +
' <div>'+fix.text+'</div>' +
'</li>';
}
changeLog += '</ul>';
}
if(bdchangelog.upcoming != null) {
changeLog += '' +
'<h1 class="changelog-in-progress">' +
' <span>Coming Soon</span>' +
'</h1>' +
'<ul>';
for(var upc in bdchangelog.upcoming) {
upc = bdchangelog.upcoming[upc];
changeLog += '' +
'<li>' +
' <strong>'+upc.title+'</strong>' +
' <div>'+upc.text+'</div>' +
'</li>';
}
changeLog += '</ul>';
}
changeLog += '' +
' </div><!--scoller-->' +
' </div><!--scroller-wrap-->' +
' <div class="footer">' +
' </div><!--footer-->' +
' </div><!--change-log-->' +
' </div><!--modal-inner-->' +
'</div><!--modal-->';
return changeLog;
};
2015-08-27 15:46:53 +02:00
/* BetterDiscordApp EmoteModule JavaScript
* 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
*/
/*
* =Changelog=
* -v1.5
* --Twitchemotes.com api
*/
2015-08-27 15:46:53 +02:00
var emotesFfz = {};
var emotesBTTV = {};
var emotesTwitch = { "emotes": { "emote": { "image_id": 0 } } }; //for ide
var subEmotesTwitch = {};
2015-08-27 15:46:53 +02:00
2015-11-01 12:44:25 +01:00
function EmoteModule() {
}
2015-08-29 11:36:47 +02:00
2015-11-01 12:44:25 +01:00
EmoteModule.prototype.init = function() {
2015-11-01 12:57:10 +01:00
};
EmoteModule.prototype.getBlacklist = function() {
2015-11-01 13:12:04 +01:00
$.getJSON("https://cdn.rawgit.com/Jiiks/betterDiscordApp/"+_hash+"/emotefilter.json", function(data) { bemotes = data.blacklist; });
2015-11-01 12:44:25 +01:00
};
2015-08-27 15:46:53 +02:00
2015-08-29 11:36:47 +02:00
EmoteModule.prototype.obsCallback = function(mutation) {
var self = this;
2015-10-29 14:46:08 +01:00
2015-11-27 01:14:33 +01:00
if(!settingsCookie["bda-es-7"]) return;
2015-08-29 11:36:47 +02:00
for(var i = 0 ; i < mutation.addedNodes.length ; ++i) {
var next = mutation.addedNodes.item(i);
if(next) {
var nodes = self.getNodes(next);
for(var node in nodes) {
if(nodes.hasOwnProperty(node)) {
self.injectEmote(nodes[node]);
}
2015-08-29 11:36:47 +02:00
}
}
}
};
2015-08-27 15:46:53 +02:00
EmoteModule.prototype.getNodes = function(node) {
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
while(next = treeWalker.nextNode()) {
nodes.push(next);
}
2015-10-29 15:51:21 +01:00
2015-10-29 15:53:43 +01:00
2015-08-27 15:46:53 +02:00
return nodes;
};
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
EmoteModule.prototype.injectEmote = function(node) {
if(typeof emotesTwitch === 'undefined') return;
if(!node.parentElement) return;
var parent = node.parentElement;
2015-12-11 10:13:38 +01:00
2015-08-27 15:46:53 +02:00
if(parent.tagName != "SPAN") return;
2015-12-11 10:13:38 +01:00
var edited = false;
if($(parent.parentElement).hasClass("edited")) {
parent = parent.parentElement.parentElement.firstChild; //:D
edited = true;
}
//if(!$(parent.parentElement).hasClass("markup") && !$(parent.parentElement).hasClass("message-content")) return;
2015-08-27 15:46:53 +02:00
2015-12-11 10:13:38 +01:00
function inject() {
if(!$(parent.parentElement).hasClass("markup") && !$(parent.parentElement).hasClass("message-content")) { return; }
2015-08-27 15:46:53 +02:00
2015-12-11 10:13:38 +01:00
var parentInnerHTML = parent.innerHTML;
var words = parentInnerHTML.split(/\s+/g);
2015-08-27 15:46:53 +02:00
2015-12-11 10:13:38 +01:00
if(!words) return;
2015-12-11 10:13:38 +01:00
words.some(function(word) {
2015-12-11 10:13:38 +01:00
if(word.slice(0, 4) == "[!s]" ) {
2015-12-11 10:13:38 +01:00
parentInnerHTML = parentInnerHTML.replace("[!s]", "");
var markup = $(parent).parent();
var reactId = markup.attr("data-reactid");
if(spoilered.indexOf(reactId) > -1) {
return;
}
2015-11-28 00:41:48 +01:00
2015-12-11 10:13:38 +01:00
markup.addClass("spoiler");
markup.on("click", function() {
$(this).removeClass("spoiler");
spoilered.push($(this).attr("data-reactid"));
});
2015-11-28 00:41:48 +01:00
return;
}
2015-12-11 10:21:16 +01:00
if(word.length < 4) {
return;
}
2015-12-11 10:21:16 +01:00
if($.inArray(word, bemotes) != -1) return;
2015-12-11 10:21:16 +01:00
if (emotesTwitch.emotes.hasOwnProperty(word)) {
2015-12-11 10:13:38 +01:00
var len = Math.round(word.length / 4);
2015-12-14 06:22:52 +01:00
parentInnerHTML = parentInnerHTML.replace(word, '<img class="emote" alt="' + word.substr(0, len) + "\uFDD9" + word.substr(len, len) + "\uFDD9" + word.substr(len * 2, len) + "\uFDD9" + word.substr(len * 3) + '" src="' + twitchEmoteUrlStart + emotesTwitch.emotes[word].image_id + twitchEmoteUrlEnd + '" />');
2015-12-11 10:13:38 +01:00
return;
}
2015-12-11 10:21:16 +01:00
if (typeof emotesFfz !== 'undefined' && settingsCookie["bda-es-1"]) {
if (emotesFfz.hasOwnProperty(word)) {
var len = Math.round(word.length / 4);
2015-12-14 06:22:52 +01:00
var name = word.substr(0, len) + "\uFDD9" + word.substr(len, len) + "\uFDD9" + word.substr(len * 2, len) + "\uFDD9" + word.substr(len * 3);
var url = ffzEmoteUrlStart + emotesFfz[word] + ffzEmoteUrlEnd;
parentInnerHTML = parentInnerHTML.replace(word, '<div class="emotewrapper"><img class="emote" alt="' + name + '" src="' + url + '" /><input onclick=\'quickEmoteMenu.favorite(\"'+name+'\", \"'+url+'\");\' class="fav" title="Favorite!" type="button"></div>');
2015-12-11 10:21:16 +01:00
return;
}
}
if (typeof emotesBTTV !== 'undefined' && settingsCookie["bda-es-2"]) {
if (emotesBTTV.hasOwnProperty(word)) {
var len = Math.round(word.length / 4);
2015-12-14 06:22:52 +01:00
var name = word.substr(0, len) + "\uFDD9" + word.substr(len, len) + "\uFDD9" + word.substr(len * 2, len) + "\uFDD9" + word.substr(len * 3);
var url = emotesBTTV[word];
parentInnerHTML = parentInnerHTML.replace(word, '<div class="emotewrapper"><img class="emote" alt="' + name + '" src="' + url + '" /><input onclick=\'quickEmoteMenu.favorite(\"'+name+'\", \"'+url+'\");\' class="fav" title="Favorite!" type="button"></div>');
2015-12-11 10:21:16 +01:00
return;
}
2015-08-27 15:46:53 +02:00
}
2015-12-10 04:06:30 +01:00
2015-12-11 10:21:16 +01:00
if(typeof emotesBTTV2 !== 'undefined' && settingsCookie["bda-es-2"]) {
if(emotesBTTV2.hasOwnProperty(word)) {
var len = Math.round(word.length / 4);
2015-12-14 06:22:52 +01:00
var name = word.substr(0, len) + "\uFDD9" + word.substr(len, len) + "\uFDD9" + word.substr(len * 2, len) + "\uFDD9" + word.substr(len * 3);
var url = bttvEmoteUrlStart + emotesBTTV2[word] + bttvEmoteUrlEnd;
parentInnerHTML = parentInnerHTML.replace(word, '<div class="emotewrapper"><img class="emote" alt="' + name + '" src="' + url + '" /><input onclick=\'quickEmoteMenu.favorite(\"'+name+'\", \"'+url+'\");\' class="fav" title="Favorite!" type="button"></div>');
2015-12-11 10:21:16 +01:00
return;
}
}
if (subEmotesTwitch.hasOwnProperty(word)) {
2015-12-10 04:01:24 +01:00
var len = Math.round(word.length / 4);
2015-12-14 06:22:52 +01:00
var name = word.substr(0, len) + "\uFDD9" + word.substr(len, len) + "\uFDD9" + word.substr(len * 2, len) + "\uFDD9" + word.substr(len * 3);
var url = twitchEmoteUrlStart + subEmotesTwitch[word] + twitchEmoteUrlEnd;
parentInnerHTML = parentInnerHTML.replace(word, '<div class="emotewrapper"><img class="emote" alt="' + name + '" src="' + url + '" /><input onclick=\'quickEmoteMenu.favorite(\"'+name+'\", \"'+url+'\");\' class="fav" title="Favorite!" type="button"></div>');
2015-12-10 04:01:24 +01:00
return;
}
2015-12-11 10:21:16 +01:00
});
2015-08-27 15:46:53 +02:00
2015-12-11 10:21:16 +01:00
if(parent.parentElement == null) return;
2015-12-11 10:21:16 +01:00
var oldHeight = parent.parentElement.offsetHeight;
parent.innerHTML = parentInnerHTML.replace(new RegExp("\uFDD9", "g"), "");
var newHeight = parent.parentElement.offsetHeight;
2015-10-14 08:50:34 +02:00
2015-12-11 10:21:16 +01:00
//Scrollfix
var scrollPane = $(".scroller.messages").first();
scrollPane.scrollTop(scrollPane.scrollTop() + (newHeight - oldHeight));
2015-12-11 10:13:38 +01:00
}
if(edited) {
setTimeout(inject, 250);
} else {
inject();
}
};
2015-08-27 15:46:53 +02:00
EmoteModule.prototype.autoCapitalize = function() {
2015-08-27 15:46:53 +02:00
var self = this;
2015-08-31 15:36:28 +02:00
2015-08-27 15:46:53 +02:00
$('body').delegate($(".channel-textarea-inner textarea"), 'keyup change paste', function() {
2015-08-29 11:36:47 +02:00
if(!settingsCookie["bda-es-4"]) return;
2015-08-27 15:46:53 +02:00
var text = $(".channel-textarea-inner textarea").val();
2015-08-29 11:36:47 +02:00
if(text == undefined) return;
2015-08-27 15:46:53 +02:00
var lastWord = text.split(" ").pop();
if(lastWord.length > 3) {
var ret = self.capitalize(lastWord.toLowerCase());
if(ret != null) {
$(".channel-textarea-inner textarea").val(text.replace(lastWord, ret));
}
}
});
};
2015-08-27 15:46:53 +02:00
EmoteModule.prototype.capitalize = function(value) {
var res = emotesTwitch.emotes;
for(var p in res){
if(res.hasOwnProperty(p) && value == (p+ '').toLowerCase()){
return p;
}
2015-08-27 15:46:53 +02:00
}
};
2015-08-27 15:46:53 +02:00
/* BetterDiscordApp PublicSevers JavaScripts
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
*/
var publicServers = { "servers": { "server": { "code": 0, "icon": null, "title": "title", "language": "EN", "description": "description" } } }; //for ide
2015-08-31 15:20:33 +02:00
function PublicServers() {
}
PublicServers.prototype.getPanel = function() {
return this.container;
};
2015-08-31 15:20:33 +02:00
PublicServers.prototype.init = function() {
var self = this;
this.container = $("<div/>", {
id: "bd-ps-container",
style: "display:none"
});
var header = $("<div/>", {
id: "bd-ps-header"
});
$("<h2/>", {
text: "Public Servers"
}).appendTo(header);
$("<span/>", {
id: "bd-ps-close",
style:"cursor:pointer;",
text: "X"
}).appendTo(header);
header.appendTo(this.getPanel());
var psbody = $("<div/>", {
id: "bd-ps-body"
});
psbody.appendTo(this.getPanel());
var table = $("<table/>", {
border:"0"
});
var thead = $("<thead/>");
thead.appendTo(table);
var headers = $("<tr/>", {
}).append($("<th/>", {
text: "Name"
})).append($("<th/>", {
text: "Code"
})).append($("<th/>", {
text: "Language"
})).append($("<th/>", {
text: "Description"
2015-10-27 22:58:43 +01:00
})).append($("<th/>", {
text: "Join"
}));
headers.appendTo(thead);
var tbody = $("<tbody/>", {
id: "bd-ps-tbody"
});
tbody.appendTo(table);
table.appendTo(psbody);
$("body").append(this.getPanel());
$("#bd-ps-close").on("click", function() { self.show(); });
var servers = publicServers.servers;
for(var server in servers) {
if(servers.hasOwnProperty(server)) {
var s = servers[server];
var code = s.code;
var title = s.title;
var language = s.language;
var description = s.description;
this.addServer(server, code, title, language, description);
}
}
};
PublicServers.prototype.addServer = function(name, code, title, language, description) {
2015-10-27 22:58:43 +01:00
var self = this;
var tableBody = $("#bd-ps-tbody");
var desc = $("<td/>").append($("<div/>", {
class: "bd-ps-description",
text: description
}));
var tr = $("<tr/>");
tr.append($("<td/>", {
text: title
}));
tr.append($("<td/>", {
css: {
"-webkit-user-select":"initial",
"user-select":"initial"
},
text: code
}));
tr.append($("<td/>", {
text: language
}));
tr.append(desc);
2015-10-27 23:13:23 +01:00
tr.append($("<td/>").append($("<button/>", {
2015-10-27 22:58:43 +01:00
text: "Join",
css: {
"height": "30px",
"display": "block",
"margin-top": "10px",
"background-color": "#36393E",
"border": "1px solid #404040",
"outline": "1px solid #000",
"color": "#EDEDED"
},
2015-10-27 22:58:43 +01:00
click: function() { self.joinServer(code); }
2015-10-27 23:13:23 +01:00
})));
2015-10-27 22:58:43 +01:00
tableBody.append(tr);
};
PublicServers.prototype.show = function() {
this.getPanel().toggle();
var li = $("#bd-pub-li");
li.removeClass();
if(this.getPanel().is(":visible")) {
li.addClass("active");
}
};
2015-08-27 15:46:53 +02:00
2015-10-27 22:58:43 +01:00
//Workaround for joining a server
PublicServers.prototype.joinServer = function(code) {
$(".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-10-27 22:58:43 +01:00
2015-08-27 15:46:53 +02:00
/* BetterDiscordApp QuickEmoteMenu JavaScript
* 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
*/
2015-08-29 11:36:47 +02:00
var emoteBtn, emoteMenu;
2015-08-27 15:46:53 +02:00
function QuickEmoteMenu() {
}
QuickEmoteMenu.prototype.init = function(reload) {
2015-08-31 15:36:28 +02:00
2015-08-29 11:36:47 +02:00
emoteBtn = null;
$(".channel-textarea").first().removeClass("emotemenu-enabled");
2015-08-29 11:36:47 +02:00
if(!emoteMenu) {
this.initEmoteList();
}
2015-08-27 15:46:53 +02:00
var menuOpen;
2015-08-29 11:36:47 +02:00
emoteBtn = $("<div/>", { id:"twitchcord-button-container", style:"display:none" }).append($("<button/>", { id: "twitchcord-button", onclick: "return false;" }));
2015-08-27 15:46:53 +02:00
$(".content.flex-spacer.flex-horizontal .flex-spacer.flex-vertical form").append(emoteBtn);
2015-08-29 11:36:47 +02:00
emoteMenu.detach();
2015-08-27 15:46:53 +02:00
emoteBtn.append(emoteMenu);
2015-08-29 11:36:47 +02:00
2015-08-27 15:46:53 +02:00
$("#twitchcord-button").on("click", function() {
menuOpen = !menuOpen;
if(menuOpen) {
emoteMenu.addClass("emotemenu-open");
$(this).addClass("twitchcord-button-open");
} else {
emoteMenu.removeClass();
$(this).removeClass();
}
});
2015-08-29 11:36:47 +02:00
if(settingsCookie["bda-es-0"]) {
$(".channel-textarea").first().addClass("emotemenu-enabled");
2015-08-27 15:46:53 +02:00
emoteBtn.show();
}
var emoteIcon = $(".emote-icon");
emoteIcon.off();
emoteIcon.on("click", function() {
2015-12-14 06:22:52 +01:00
var emote = $(this).attr("title");
var ta = $(".channel-textarea-inner textarea");
ta.val(ta.val().slice(-1) == " " ? ta.val() + emote : ta.val() + " " + emote);
});
2015-12-14 06:22:52 +01:00
var fe = localStorage["bdfavemotes"];
if(fe != undefined) {
favoriteEmotes = JSON.parse(atob(fe));
this.updateFavorites();
}
};
2015-08-29 11:36:47 +02:00
QuickEmoteMenu.prototype.obsCallback = function() {
2015-12-05 14:29:46 +01:00
$("#snowcover").remove();
$("#decor").remove();
var customCss = $("#customcss").html();
if(window.location.pathname == "/channels/86004744966914048/86004744966914048" || customCss.indexOf("snow") > -1) {
2015-12-02 23:14:30 +01:00
if($("#customcss").html().indexOf("nosnow") == -1) {
2015-12-02 23:41:21 +01:00
$(".scroller.messages").snowfall('clear');
2015-12-02 23:14:30 +01:00
$(".scroller.messages").snowfall({flakeCount : 100, maxSpeed : 10});
}
2015-12-05 14:29:46 +01:00
if(customCss.indexOf("nodecor") > -1) {
2015-12-06 19:59:40 +01:00
$("#decor").remove();
2015-12-05 14:29:46 +01:00
} else {
2015-12-05 14:49:53 +01:00
$("head").append('<style id="decor"> .flex-spacer.flex-vertical { background-repeat: repeat no-repeat; background-image:url(\'data:image/png;base64,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
2015-12-05 14:29:46 +01:00
}
if(customCss.indexOf("nobottomsnow") > -1) {
2015-12-06 19:59:40 +01:00
$("#snowcover").remove();
2015-12-05 14:29:46 +01:00
} else {
$("head").append('<style id="snowcover">.flex-spacer.flex-vertical form { background-repeat: repeat no-repeat; background-position: bottom; background-image: url(\'data:image/png;base64,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
}
2015-12-02 23:14:30 +01:00
}
2015-08-29 11:36:47 +02:00
if(!emoteBtn) return;
if(!$(".content.flex-spacer.flex-horizontal .flex-spacer.flex-vertical form")) return;
var tcbtn = $("#twitchcord-button-container");
2015-08-29 11:36:47 +02:00
if(tcbtn.parent().prop("tagName") == undefined) {
quickEmoteMenu = new QuickEmoteMenu();
quickEmoteMenu.init(true);
}
};
2015-08-29 11:36:47 +02:00
2015-12-14 06:22:52 +01:00
var favoriteEmotes = {};
2015-08-29 11:36:47 +02:00
QuickEmoteMenu.prototype.initEmoteList = function() {
emoteMenu = $("<div/>", { id: "emote-menu" });
2015-12-14 06:22:52 +01:00
var emoteMenuHeader = $("<div/>", { id: "emote-menu-header" });
2015-08-29 11:36:47 +02:00
var emoteMenuBody = $("<div/>", { id: "emote-menu-inner" });
2015-12-14 06:22:52 +01:00
var emoteMenuBodyFav = $("<div/>", { id: "emote-menu-inner-fav", css: { "display": "none" }})
2015-12-14 07:26:12 +01:00
var globalTab = $("<div/>", {class: "emote-menu-tab emote-menu-tab-selected", id: "emgb", text: "Global", click: function() { $("#emfa").removeClass("emote-menu-tab-selected"); $("#emgb").addClass("emote-menu-tab-selected"); $("#emote-menu-inner-fav").hide(); $("#emote-menu-inner").show(); }});
var favoriteTab = $("<div/>", {class: "emote-menu-tab", id: "emfa", text: "Favorite", click: function() { $("#emgb").removeClass("emote-menu-tab-selected"); $("#emfa").addClass("emote-menu-tab-selected"); $("#emote-menu-inner").hide(); $("#emote-menu-inner-fav").show(); }});
2015-12-14 06:22:52 +01:00
emoteMenuHeader.append(globalTab);
emoteMenuHeader.append(favoriteTab);
2015-08-29 11:36:47 +02:00
emoteMenu.append(emoteMenuHeader);
2015-12-14 06:22:52 +01:00
var swrapper = $("<div/>", { class: "scroller-wrap" });
var scroller = $("<div/>", { class: "scroller"});
swrapper.append(scroller);
scroller.append(emoteMenuBody);
scroller.append(emoteMenuBodyFav);
emoteMenu.append(swrapper);
2015-08-29 11:36:47 +02:00
for(var emote in emotesTwitch.emotes) {
if(emotesTwitch.emotes.hasOwnProperty(emote)) {
var id = emotesTwitch.emotes[emote].image_id;
emoteMenuBody.append($("<div/>" , { class: "emote-container" }).append($("<img/>", { class: "emote-icon", id: emote, alt: "", src: "https://static-cdn.jtvnw.net/emoticons/v1/"+id+"/1.0", title: emote })));
}
2015-08-27 15:46:53 +02:00
}
2015-12-14 06:22:52 +01:00
};
QuickEmoteMenu.prototype.favorite = function(name, url) {
if(!$("#rmenu").length) {
$("body").append('<div id="rmenu"><ul><a href="#">Remove</a></ul></div>');
$(document).on("click", function() {
$("#rmenu").hide();
});
}
if(!favoriteEmotes.hasOwnProperty(name)) {
favoriteEmotes[name] = url;
}
this.updateFavorites();
};
QuickEmoteMenu.prototype.updateFavorites = function() {
2015-12-14 06:24:49 +01:00
2015-12-14 06:22:52 +01:00
var self = this;
var emoteMenuBody = $("#emote-menu-inner-fav");
emoteMenuBody.empty();
for(var emote in favoriteEmotes) {
var url = favoriteEmotes[emote];
var econtainer = $("<div/>", { class: "emote-container" });
var icon = $("<img/>", { class: "emote-icon", alt: "", src: url, title: emote }).appendTo(econtainer);
emoteMenuBody.append(econtainer);
icon.off("click").on("click", function(e) {
var emote = $(this).attr("title");
var ta = $(".channel-textarea-inner textarea");
ta.val(ta.val().slice(-1) == " " ? ta.val() + emote : ta.val() + " " + emote);
});
icon.off("contextmenu").on("contextmenu", function(e) {
var title = $(this).attr("title");
var menu = $("#rmenu");
menu.find("a").off("click").on("click",function() {
delete favoriteEmotes[title];
self.updateFavorites();
});
menu.hide();
menu.css({top: e.pageY, left: e.pageX});
menu.show();
return false;
});
}
window.localStorage["bdfavemotes"] = btoa(JSON.stringify(favoriteEmotes));
};
2015-08-27 15:46:53 +02:00
/* BetterDiscordApp Settings Panel JavaScript
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() {
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");
2015-08-27 15:46:53 +02:00
}
SettingsPanel.prototype.init = function() {
var self = this;
2015-11-27 01:14:33 +01:00
self.construct();
var body = $("body");
2015-08-30 11:17:06 +02:00
if(settingsCookie["bda-es-0"]) {
$("#twitchcord-button-container").show();
} else {
$("#twitchcord-button-container").hide();
}
if(settingsCookie["bda-gs-2"]) {
body.addClass("bd-minimal");
2015-08-30 11:17:06 +02:00
} else {
body.removeClass("bd-minimal");
2015-08-30 11:17:06 +02:00
}
if(settingsCookie["bda-gs-3"]) {
body.addClass("bd-minimal-chan");
2015-08-30 11:17:06 +02:00
} else {
body.removeClass("bd-minimal-chan");
2015-08-30 11:17:06 +02:00
}
if(settingsCookie["bda-gs-4"]) {
voiceMode.enable();
}
2015-11-27 01:14:33 +01:00
if(settingsCookie["bda-jd"]) {
2015-11-27 18:47:48 +01:00
opublicServers.joinServer("0Tmfo5ZbORCRqbAd");
settingsCookie["bda-jd"] = false;
mainCore.saveSettings();
}
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>");
2015-12-11 04:24:28 +01:00
$(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(){$(".tipsy").remove()});
} else {
$(document).off('mouseover', '.emote');
}
};
2015-08-27 15:46:53 +02:00
2015-11-28 04:17:39 +01:00
SettingsPanel.prototype.applyCustomCss = function(css) {
if($("#customcss").length == 0) {
$("head").append('<style id="customcss"></style>');
}
$("#customcss").html(css);
localStorage.setItem("bdcustomcss", btoa(css));
};
var customCssInitialized = false;
var lastTab = "";
2015-11-27 01:14:33 +01:00
SettingsPanel.prototype.changeTab = function(tab) {
2015-12-12 07:52:54 +01:00
var self = this;
lastTab = tab;
var controlGroups = $("#bd-control-groups");
$(".bd-tab").removeClass("selected");
$(".bd-pane").hide();
$("#" + tab).addClass("selected");
$("#" + tab.replace("tab", "pane")).show();
switch(tab) {
case "bd-settings-tab":
break;
case "bd-customcss-tab":
if(!customCssInitialized) {
2015-12-12 07:52:54 +01:00
var editor = CodeMirror.fromTextArea(document.getElementById("bd-custom-css-ta"), {
lineNumbers: true, mode: 'css', indentUnit: 4, theme: 'neat'
});
2015-12-12 07:52:54 +01:00
editor.on("change", function(cm) {
var css = cm.getValue();
self.applyCustomCss(css);
});
customCssInitialized = true;
}
break;
case "bd-plugins-tab":
break;
case "bd-themes-tab":
controlGroups.html("<span>Coming soon</span>");
break;
}
};
2015-11-28 04:17:39 +01:00
SettingsPanel.prototype.updateSetting = function(checkbox) {
var cb = $(checkbox).children().find('input[type="checkbox"]');
2015-11-27 01:14:33 +01:00
var enabled = !cb.is(":checked");
var id = cb.attr("id");
cb.prop("checked", enabled);
settingsCookie[id] = enabled;
if(settingsCookie["bda-es-0"]) {
$("#twitchcord-button-container").show();
} else {
$("#twitchcord-button-container").hide();
}
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();
}
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>");
2015-12-11 04:24:28 +01:00
$(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(){$(".tipsy").remove()});
} else {
$(document).off('mouseover', '.emote');
}
2015-11-27 01:14:33 +01:00
mainCore.saveSettings();
}
2015-08-27 15:46:53 +02:00
SettingsPanel.prototype.construct = function() {
var self = this;
panel = $("<div/>", {
id: "bd-pane",
class: "settings-inner",
css: {
"display": "none"
}
});
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\');">Settings</div>' +
' <div class="tab-bar-item bd-tab" id="bd-customcss-tab" onclick="settingsPanel.changeTab(\'bd-customcss-tab\');">Custom CSS</div>' +
' <div class="tab-bar-item bd-tab" id="bd-plugins-tab" onclick="settingsPanel.changeTab(\'bd-plugins-tab\');">Plugins</div>' +
' <div class="tab-bar-item bd-tab" id="bd-themes-tab" onclick="settingsPanel.changeTab(\'bd-themes-tab\');">Themes</div>' +
' </div>' +
' <div class="bd-settings">' +
'' +
' <div class="bd-pane control-group" id="bd-settings-pane" style="display:none;">' +
' <ul class="checkbox-group">';
2015-11-27 01:14:33 +01:00
for(var setting in settings) {
var sett = settings[setting];
var id = sett["id"];
if(sett["implemented"]) {
settingsInner += '' +
'<li>' +
'<div class="checkbox" onclick="settingsPanel.updateSetting(this);" >' +
'<div class="checkbox-inner">' +
'<input type="checkbox" id="'+id+ '" ' + (settingsCookie[id] ? "checked" : "") + '>' +
'<span></span>' +
'</div>' +
'<span>' + setting + " - " + sett["info"] +
'</span>' +
'</div>' +
'</li>';
2015-11-27 01:14:33 +01:00
}
2015-08-30 11:17:06 +02:00
}
2015-12-12 07:52:54 +01:00
var ccss = atob(localStorage.getItem("bdcustomcss"));
self.applyCustomCss(ccss);
settingsInner += '</ul>' +
' </div>' +
'' +
' <div class="bd-pane control-group" id="bd-customcss-pane" style="display:none;">' +
2015-12-12 07:52:54 +01:00
' <textarea id="bd-custom-css-ta">'+ccss+'</textarea>' +
' </div>' +
'' +
2015-12-15 08:37:15 +01:00
' <div class="bd-pane control-group" id="bd-plugins-pane" style="display:none;">' +
2015-12-12 07:07:56 +01:00
' <table class="bd-g-table">' +
' <thead><tr><th>Name</th><th>Description</th><th>Author</th><th>Version</th><th></th></tr></thead><tbody>';
2015-12-12 17:29:06 +01:00
$.each(bdplugins, function() {
2015-12-12 07:07:56 +01:00
var plugin = this["plugin"];
settingsInner += '' +
'<tr>' +
' <td>'+plugin.getName()+'</td>' +
' <td width="99%"><textarea>'+plugin.getDescription()+'</textarea></td>' +
' <td>'+plugin.getAuthor()+'</td>' +
' <td>'+plugin.getVersion()+'</td>' +
' <td>' +
' <div class="checkbox" onclick="pluginModule.handlePlugin(this);">' +
' <div class="checkbox-inner">' +
' <input id="'+plugin.getName()+'" type="checkbox" ' + (pluginCookie[plugin.getName()] ? "checked" : "") +'>' +
' <span></span>' +
' </div>' +
' </div>' +
' </td>' +
'</tr>';
});
settingsInner += '</tbody></table>' +
' </div>' +
2015-12-15 08:37:15 +01:00
' <div class="bd-pane control-group" id="bd-themes-pane" style="display:none;">';
2015-12-15 10:13:40 +01:00
if(typeof(themesupport2) === "undefined") {
2015-12-15 08:37:15 +01:00
settingsInner += '' +
' Your version does not support themes. Download the latest version.';
}else {
settingsInner += '' +
' <table class="bd-g-table">' +
' <thead><tr><th>Name</th><th>Description</th><th>Author</th><th>Version</th><th></th></tr></thead><tbody>';
$.each(bdthemes, function() {
settingsInner += '' +
'<tr>' +
' <td>'+this["name"]+'</td>' +
' <td width="99%"><textarea>'+this["description"]+'</textarea></td>' +
' <td>'+this["author"]+'</td>' +
' <td>'+this["version"]+'</td>' +
' <td>' +
' <div class="checkbox" onclick="themeModule.handleTheme(this);">' +
' <div class="checkbox-inner">' +
' <input id="ti'+this["name"]+'" type="checkbox" ' + (themeCookie[this["name"]] ? "checked" : "") +'>' +
' <span></span>' +
' </div>' +
' </div>' +
' </td>' +
'</tr>';
});
settingsInner += '</tbody></table>';
}
settingsInner += '' +
' </div>' +
'' +
' </div>' +
' </div>' +
'</div>';
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();
if(lastTab == "") {
self.changeTab("bd-settings-tab");
} else {
self.changeTab(lastTab);
}
}
2015-11-27 01:14:33 +01:00
settingsButton = $("<div/>", {
class: "tab-bar-item",
text: "BetterDiscord",
id: "bd-settings-new",
click: showSettings
});
panel.html(settingsInner);
2015-11-27 01:14:33 +01:00
function defer() {
if($(".btn.btn-settings").length < 1) {
setTimeout(defer, 100);
}else {
$(".btn.btn-settings").first().on("click", function() {
function innerDefer() {
if($(".modal-inner").first().is(":visible")) {
panel.hide();
var tabBar = $(".tab-bar.SIDE").first();
$(".tab-bar.SIDE .tab-bar-item").click(function() {
$(".form .settings-right .settings-inner").first().show();
$("#bd-settings-new").removeClass("selected");
panel.hide();
});
tabBar.append(settingsButton);
panel.insertAfter(".form .settings-right .settings-inner");
$("#bd-settings-new").removeClass("selected");
} else {
setTimeout(innerDefer, 100);
}
}
innerDefer();
});
}
}
2015-11-27 01:14:33 +01:00
defer();
};
2015-08-27 15:46:53 +02:00
/* BetterDiscordApp Utilities JavaScript
* 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;
2015-08-27 15:46:53 +02:00
function Utils() {
}
Utils.prototype.getTextArea = function() {
return $(".channel-textarea-inner textarea");
};
2015-08-27 15:46:53 +02:00
Utils.prototype.jqDefer = function(fnc) {
if(window.jQuery) { fnc(); } else { setTimeout(function() { this.jqDefer(fnc) }, 100) }
};
2015-11-01 12:37:04 +01:00
Utils.prototype.getHash = function() {
2015-11-01 12:51:34 +01:00
$.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
2015-12-11 04:24:28 +01:00
Utils.prototype.loadHtml = function(html, callback) {
2015-12-11 01:09:59 +01:00
var container = $("<div/>", {
class: "bd-container"
}).appendTo("body");
2015-12-11 04:24:28 +01:00
2015-12-11 01:09:59 +01:00
//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
container.load(html, callback());
2015-11-01 12:37:04 +01:00
};
Utils.prototype.injectJs = function(uri) {
$("<script/>", {
type: "text/javascript",
src: uri
}).appendTo($("body"));
};
Utils.prototype.injectCss = function(uri) {
$("<link/>", {
type: "text/css",
rel: "stylesheet",
href: uri
}).appendTo($("head"));
};
2015-12-11 01:09:59 +01:00
/* BetterDiscordApp VoiceMode JavaScript
* 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-31 22:34:10 +01:00
VoiceMode.prototype.obsCallback = function() {
var self = this;
if(settingsCookie["bda-gs-4"]) {
self.disable();
setTimeout(function() {
self.enable();
}, 300);
}
2015-10-31 22:34:10 +01:00
}
2015-10-31 22:24:40 +01:00
VoiceMode.prototype.enable = function() {
$(".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");
$(".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");
$(".guild-header .btn.btn-hamburger").first().css("visibility", "hidden");
};
VoiceMode.prototype.disable = function() {
$(".scroller.guild-channels ul").first().css("display", "");
$(".scroller.guild-channels header").first().css("display", "");
$(".app.flex-vertical").first().css("overflow", "");
$(".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", "");
$(".guild-header .btn.btn-hamburger").first().css("visibility", "");
};
2015-12-12 07:07:56 +01:00
var pluginCookie = {};
function PluginModule() {
}
PluginModule.prototype.loadPlugins = function() {
2015-12-12 07:07:56 +01:00
this.loadPluginData();
2015-12-12 17:29:06 +01:00
$.each(bdplugins, function() {
2015-12-12 07:07:56 +01:00
var plugin = this["plugin"];
plugin.load();
var name = plugin.getName();
var enabled = false;
if(pluginCookie.hasOwnProperty(name)) {
enabled = pluginCookie[name];
} else {
pluginCookie[name] = false;
}
if(enabled) {
plugin.start();
}
});
};
2015-12-12 07:07:56 +01:00
PluginModule.prototype.handlePlugin = function(checkbox) {
var cb = $(checkbox).children().find('input[type="checkbox"]');
var enabled = !cb.is(":checked");
var id = cb.attr("id");
cb.prop("checked", enabled);
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;
}
this.savePluginData();
};
2015-12-12 07:07:56 +01:00
PluginModule.prototype.loadPluginData = function() {
var cookie = $.cookie("bd-plugins");
if(cookie != undefined) {
pluginCookie = JSON.parse($.cookie("bd-plugins"));
}
};
2015-12-12 07:07:56 +01:00
PluginModule.prototype.savePluginData = function() {
$.cookie("bd-plugins", JSON.stringify(pluginCookie), { expires: 365, path: '/' });
2015-12-12 09:50:25 +01:00
};
2015-12-15 08:37:15 +01:00
var themeCookie = {};
function ThemeModule() {
}
ThemeModule.prototype.loadThemes = function() {
this.loadThemeData();
$.each(bdthemes, function() {
var name = this["name"];
var enabled = false;
if(themeCookie.hasOwnProperty(name)) {
if(themeCookie[name]) {
enabled = true;
}
} else {
themeCookie[name] = false;
}
if(enabled) {
$("head").append('<style id="'+name+'">'+unescape(bdthemes[name]["css"])+'</style>');
}
});
};
ThemeModule.prototype.handleTheme = function(checkbox) {
var cb = $(checkbox).children().find('input[type="checkbox"]');
var enabled = !cb.is(":checked");
var id = cb.attr("id").substring(2);
cb.prop("checked", enabled);
if(enabled) {
$("head").append('<style id="'+id+'">'+unescape(bdthemes[id]["css"])+'</style>');
themeCookie[id] = true;
} else {
$("#"+id).remove();
themeCookie[id] = false;
}
this.saveThemeData();
};
ThemeModule.prototype.loadThemeData = function() {
var cookie = $.cookie("bd-themes");
if(cookie != undefined) {
themeCookie = JSON.parse($.cookie("bd-themes"));
}
};
ThemeModule.prototype.saveThemeData = function() {
$.cookie("bd-themes", JSON.stringify(themeCookie), { expires: 365, path: '/' });
};
2015-12-12 09:50:25 +01:00
/* BetterDiscordApp API for Plugins
* 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
BdApi.joinServer = function(code) {
opublicServers.joinServer(code);
};
//Inject CSS to document head
//id = id of element
//css = custom css
BdApi.injectCSS = function(id, css) {
$("head").append('<style id="'+id+'"></style>')
$("#" + id).html(css);
};
//Clear css/remove any element
//id = id of element
BdApi.clearCSS = function(id) {
$("#"+id).remove();
};
//Get another plugin
//name = name of plugin
BdApi.getPlugin = function(name) {
2015-12-12 17:29:06 +01:00
if(bdplugins.hasOwnProperty(name)) {
return bdplugins[name]["plugin"];
2015-12-12 09:50:25 +01:00
}
return null;
};
//Get ipc for reason
BdApi.getIpc = function() {
return betterDiscordIPC;
};
//Get BetterDiscord Core
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
BdApi.getUserIdByName = function(name) {
var users = $(".member-username");
for(var i = 0 ; i < users.length ; i++) {
var user = $(users[i]);
if(user.text() == name) {
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
var gg;
BdApi.getUserNameById = function(id) {
var users = $(".avatar-small");
for(var i = 0 ; i < users.length ; i++) {
var user = $(users[i]);
var url = user.css("background-image");
if(id == url.match(/\d+/)) {
return user.parent().find(".member-username").text();
}
}
return null;
2015-12-11 04:24:28 +01:00
};