mirror of https://github.com/calzoneman/sync.git
tweaks
This commit is contained in:
parent
fa243d5303
commit
57faa03b7c
|
@ -1633,8 +1633,8 @@ Channel.prototype.tryUpdateOptions = function(user, data) {
|
||||||
|
|
||||||
const adminonly = {
|
const adminonly = {
|
||||||
pagetitle: true,
|
pagetitle: true,
|
||||||
customcss: true,
|
externalcss: true,
|
||||||
customjs: true,
|
externaljs: true,
|
||||||
show_public: true
|
show_public: true
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -89,7 +89,7 @@ var USEROPTS = {
|
||||||
chatbtn : getOrDefault("chatbtn", false),
|
chatbtn : getOrDefault("chatbtn", false),
|
||||||
altsocket : getOrDefault("altsocket", false),
|
altsocket : getOrDefault("altsocket", false),
|
||||||
joinmessage : getOrDefault("joinmessage", true),
|
joinmessage : getOrDefault("joinmessage", true),
|
||||||
qbtn_always : getOrDefault("qbtn_always", false)
|
qbtn_hide : getOrDefault("qbtn_hide", false)
|
||||||
};
|
};
|
||||||
|
|
||||||
var Rank = {
|
var Rank = {
|
||||||
|
|
|
@ -261,7 +261,7 @@ function addQueueButtons(li) {
|
||||||
.appendTo(menu);
|
.appendTo(menu);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!USEROPTS.qbtn_always)
|
if(USEROPTS.qbtn_hide)
|
||||||
menu.hide();
|
menu.hide();
|
||||||
|
|
||||||
li.contextmenu(function(ev) {
|
li.contextmenu(function(ev) {
|
||||||
|
@ -332,9 +332,9 @@ function showOptionsMenu() {
|
||||||
$("<hr>").appendTo(form);
|
$("<hr>").appendTo(form);
|
||||||
|
|
||||||
var qbtncontainer = $("<label/>").addClass("checkbox")
|
var qbtncontainer = $("<label/>").addClass("checkbox")
|
||||||
.text("Show playlist buttons by default");
|
.text("Hide playlist buttons by default");
|
||||||
var qbtn = $("<input/>").attr("type", "checkbox").appendTo(qbtncontainer);
|
var qbtn = $("<input/>").attr("type", "checkbox").appendTo(qbtncontainer);
|
||||||
qbtn.prop("checked", USEROPTS.qbtn_always);
|
qbtn.prop("checked", USEROPTS.qbtn_hide);
|
||||||
addOption("Playlist Buttons", qbtncontainer);
|
addOption("Playlist Buttons", qbtncontainer);
|
||||||
|
|
||||||
var synchcontainer = $("<label/>").addClass("checkbox")
|
var synchcontainer = $("<label/>").addClass("checkbox")
|
||||||
|
@ -417,7 +417,7 @@ function showOptionsMenu() {
|
||||||
USEROPTS.blink_title = blink.prop("checked");
|
USEROPTS.blink_title = blink.prop("checked");
|
||||||
USEROPTS.chatbtn = sendbtn.prop("checked");
|
USEROPTS.chatbtn = sendbtn.prop("checked");
|
||||||
USEROPTS.altsocket = altsocket.prop("checked");
|
USEROPTS.altsocket = altsocket.prop("checked");
|
||||||
USEROPTS.qbtn_always = qbtn.prop("checked");
|
USEROPTS.qbtn_hide = qbtn.prop("checked");
|
||||||
if(CLIENT.rank >= Rank.Moderator) {
|
if(CLIENT.rank >= Rank.Moderator) {
|
||||||
USEROPTS.modhat = modhat.prop("checked");
|
USEROPTS.modhat = modhat.prop("checked");
|
||||||
USEROPTS.joinmessage = join.prop("checked");
|
USEROPTS.joinmessage = join.prop("checked");
|
||||||
|
@ -665,6 +665,32 @@ function hasPermission(key) {
|
||||||
return CLIENT.rank >= v;
|
return CLIENT.rank >= v;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function handleModPermissions() {
|
||||||
|
/* update channel controls */
|
||||||
|
$("#opt_pagetitle").val(CHANNEL.opts.pagetitle);
|
||||||
|
$("#opt_pagetitle").attr("disabled", CLIENT.rank < 3);
|
||||||
|
$("#opt_externalcss").val(CHANNEL.opts.externalcss);
|
||||||
|
$("#opt_externalcss").attr("disabled", CLIENT.rank < 3);
|
||||||
|
$("#opt_externaljs").val(CHANNEL.opts.externaljs);
|
||||||
|
$("#opt_externaljs").attr("disabled", CLIENT.rank < 3);
|
||||||
|
$("#opt_chat_antiflood").prop("checked", CHANNEL.opts.chat_antiflood);
|
||||||
|
$("#opt_show_public").prop("checked", CHANNEL.opts.show_public);
|
||||||
|
$("#opt_show_public").attr("disabled", CLIENT.rank < 3);
|
||||||
|
$("#opt_enable_link_regex").prop("checked", CHANNEL.opts.enable_link_regex);
|
||||||
|
$("#opt_allow_voteskip").prop("checked", CHANNEL.opts.allow_voteskip);
|
||||||
|
$("#opt_voteskip_ratio").val(CHANNEL.opts.voteskip_ratio);
|
||||||
|
$("#csstext").val(CHANNEL.css);
|
||||||
|
$("#jstext").val(CHANNEL.js);
|
||||||
|
$("#motdtext").val(CHANNEL.motd);
|
||||||
|
setVisible("#permedit_tab", CLIENT.rank >= 3);
|
||||||
|
setVisible("#banlist_tab", hasPermission("ban"));
|
||||||
|
setVisible("#motdedit_tab", hasPermission("motdedit"));
|
||||||
|
setVisible("#cssedit_tab", CLIENT.rank >= 3);
|
||||||
|
setVisible("#jsedit_tab", CLIENT.rank >= 3);
|
||||||
|
setVisible("#filteredit_tab", hasPermission("filteredit"));
|
||||||
|
setVisible("#channelranks_tab", CLIENT.rank >= 3);
|
||||||
|
}
|
||||||
|
|
||||||
function handlePermissionChange() {
|
function handlePermissionChange() {
|
||||||
function setVisible(selector, bool) {
|
function setVisible(selector, bool) {
|
||||||
// I originally added this check because of a race condition
|
// I originally added this check because of a race condition
|
||||||
|
@ -682,27 +708,10 @@ function handlePermissionChange() {
|
||||||
if(CLIENT.rank >= 2) {
|
if(CLIENT.rank >= 2) {
|
||||||
$("#channelsettingswrap3").show();
|
$("#channelsettingswrap3").show();
|
||||||
if($("#channelsettingswrap").html() == "") {
|
if($("#channelsettingswrap").html() == "") {
|
||||||
$("#channelsettingswrap").load("channeloptions.html", function() {
|
$("#channelsettingswrap").load("channeloptions.html", handleModPermissions);
|
||||||
/* update channel controls */
|
}
|
||||||
$("#opt_pagetitle").val(CHANNEL.opts.pagetitle);
|
else {
|
||||||
$("#opt_externalcss").val(CHANNEL.opts.externalcss);
|
handleModPermissions();
|
||||||
$("#opt_externaljs").val(CHANNEL.opts.externaljs);
|
|
||||||
$("#opt_chat_antiflood").prop("checked", CHANNEL.opts.chat_antiflood);
|
|
||||||
$("#opt_show_public").prop("checked", CHANNEL.opts.show_public);
|
|
||||||
$("#opt_enable_link_regex").prop("checked", CHANNEL.opts.enable_link_regex);
|
|
||||||
$("#opt_allow_voteskip").prop("checked", CHANNEL.opts.allow_voteskip);
|
|
||||||
$("#opt_voteskip_ratio").val(CHANNEL.opts.voteskip_ratio);
|
|
||||||
$("#csstext").val(CHANNEL.css);
|
|
||||||
$("#jstext").val(CHANNEL.js);
|
|
||||||
$("#motdtext").val(CHANNEL.motd);
|
|
||||||
setVisible("#permedit_tab", CLIENT.rank >= 3);
|
|
||||||
setVisible("#banlist_tab", hasPermission("ban"));
|
|
||||||
setVisible("#motdedit_tab", hasPermission("motdedit"));
|
|
||||||
setVisible("#cssedit_tab", CLIENT.rank >= 3);
|
|
||||||
setVisible("#jsedit_tab", CLIENT.rank >= 3);
|
|
||||||
setVisible("#filteredit_tab", hasPermission("filteredit"));
|
|
||||||
setVisible("#channelranks_tab", CLIENT.rank >= 3);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue