mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-15 02:21:21 +01:00
Override theme with url theme query param
This commit is contained in:
parent
fe153ed6d2
commit
a87eaa2bda
@ -6,6 +6,8 @@
|
|||||||
/* global moment */
|
/* global moment */
|
||||||
|
|
||||||
(function () {
|
(function () {
|
||||||
|
const theme_options = ["DiscordDark"]; // All the avaliable theming names
|
||||||
|
|
||||||
var has_already_been_focused = false; // keep track of if the embed has initially been focused.
|
var has_already_been_focused = false; // keep track of if the embed has initially been focused.
|
||||||
var logintimer; // timer to keep track of user inactivity after hitting login
|
var logintimer; // timer to keep track of user inactivity after hitting login
|
||||||
var fetchtimeout; // fetch routine timer
|
var fetchtimeout; // fetch routine timer
|
||||||
@ -121,18 +123,39 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
$( "#theme-selector" ).change(function() {
|
$( "#theme-selector" ).change(function() {
|
||||||
const theme_options = ["DiscordDark"];
|
|
||||||
var theme = $("#theme-selector option:selected").val();
|
var theme = $("#theme-selector option:selected").val();
|
||||||
if (theme == "") {
|
changeTheme(theme);
|
||||||
$("#css-theme").attr("href", "");
|
|
||||||
disable_userdef_css(false);
|
|
||||||
} else if ($.inArray(theme, theme_options) != -1) {
|
|
||||||
disable_userdef_css(true);
|
|
||||||
$("#css-theme").attr("href", "/static/themes/" + theme + "/css/style.css");
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var themeparam = getParameterByName('theme');
|
||||||
|
if (themeparam && $.inArray(themeparam, theme_options) != -1) {
|
||||||
|
changeTheme(themeparam);
|
||||||
|
$("#theme-selector option").removeAttr('selected');
|
||||||
|
$("#theme-selector option[value=" + themeparam + "]").attr('selected', 'selected');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function changeTheme(theme) {
|
||||||
|
if (theme == "") {
|
||||||
|
$("#css-theme").attr("href", "");
|
||||||
|
disable_userdef_css(false);
|
||||||
|
} else if ($.inArray(theme, theme_options) != -1) {
|
||||||
|
disable_userdef_css(true);
|
||||||
|
$("#css-theme").attr("href", "/static/themes/" + theme + "/css/style.css");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* https://stackoverflow.com/questions/901115/how-can-i-get-query-string-values-in-javascript */
|
||||||
|
function getParameterByName(name, url) {
|
||||||
|
if (!url) url = window.location.href;
|
||||||
|
name = name.replace(/[\[\]]/g, "\\$&");
|
||||||
|
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
|
||||||
|
results = regex.exec(url);
|
||||||
|
if (!results) return null;
|
||||||
|
if (!results[2]) return '';
|
||||||
|
return decodeURIComponent(results[2].replace(/\+/g, " "));
|
||||||
|
}
|
||||||
|
|
||||||
function disable_userdef_css(boolean) {
|
function disable_userdef_css(boolean) {
|
||||||
var usrcss = $("#user-defined-css").text();
|
var usrcss = $("#user-defined-css").text();
|
||||||
const disable_header = "/* DISABLED_USER_CSS===";
|
const disable_header = "/* DISABLED_USER_CSS===";
|
||||||
|
Loading…
Reference in New Issue
Block a user