Fix autoscrolling changes

This commit is contained in:
calzoneman 2015-12-05 17:57:33 -08:00
parent 59468ec77c
commit b0d5e92350
4 changed files with 34 additions and 11 deletions

View File

@ -657,6 +657,7 @@ input#logout[type="submit"]:hover {
text-align: center;
width: 100%;
font-weight: bold;
cursor: pointer;
}
#newmessages-indicator .glyphicon {

View File

@ -46,6 +46,7 @@ var CHATHISTIDX = 0;
var CHATTHROTTLE = false;
var CHATMAXSIZE = 100;
var SCROLLCHAT = true;
var IGNORE_SCROLL_EVENT = false;
var LASTCHAT = {
name: ""
};

View File

@ -81,7 +81,14 @@ $("#usercount").mouseleave(function () {
$("#usercount").find(".profile-box").remove();
});
$("#messagebuffer").scroll(function () {
$("#messagebuffer").scroll(function (ev) {
if (IGNORE_SCROLL_EVENT) {
// Skip event, this was triggered by scrollChat() and not by a user action.
// Reset for next event.
IGNORE_SCROLL_EVENT = false;
return;
}
var m = $("#messagebuffer");
var isCaughtUp = m.height() + m.scrollTop() >= m.prop("scrollHeight");
if (isCaughtUp) {

View File

@ -820,10 +820,15 @@ function showPollMenu() {
}
function scrollChat() {
$("#messagebuffer").scrollTop($("#messagebuffer").prop("scrollHeight"));
scrollAndIgnoreEvent($("#messagebuffer").prop("scrollHeight"));
$("#newmessages-indicator").remove();
}
function scrollAndIgnoreEvent(top) {
IGNORE_SCROLL_EVENT = true;
$("#messagebuffer").scrollTop(top);
}
function hasPermission(key) {
if(key.indexOf("playlist") == 0 && CHANNEL.openqueue) {
var key2 = "o" + key;
@ -1455,12 +1460,6 @@ function formatChatMessage(data, last) {
if (data.meta.shadow) {
div.addClass("chat-shadow");
}
div.find("img").load(function () {
if (SCROLLCHAT) {
scrollChat();
}
});
return div;
}
@ -1472,17 +1471,19 @@ function addChatMessage(data) {
return;
}
var div = formatChatMessage(data, LASTCHAT);
var msgBuf = $("#messagebuffer");
// Incoming: a bunch of crap for the feature where if you hover over
// a message, it highlights messages from that user
var safeUsername = data.username.replace(/[^\w-]/g, '\\$');
div.addClass("chat-msg-" + safeUsername);
div.appendTo($("#messagebuffer"));
div.appendTo(msgBuf);
div.mouseover(function() {
$(".chat-msg-" + safeUsername).addClass("nick-hover");
});
div.mouseleave(function() {
$(".nick-hover").removeClass("nick-hover");
});
var oldHeight = msgBuf.prop("scrollHeight");
var numRemoved = trimChatBuffer();
if (SCROLLCHAT) {
scrollChat();
@ -1499,14 +1500,27 @@ function addChatMessage(data) {
$("<span/>").text("New Messages Below").appendTo(bgHack);
$("<span/>").addClass("glyphicon glyphicon-chevron-down")
.appendTo(bgHack);
newMessageDiv.click(function () {
SCROLLCHAT = true;
scrollChat();
});
}
if (numRemoved > 0) {
$("#messagebuffer").scrollTop(
$("#messagebuffer").scrollTop() - div.height());
IGNORE_SCROLL_EVENT = true;
var diff = oldHeight - msgBuf.prop("scrollHeight");
scrollAndIgnoreEvent(msgBuf.scrollTop() - diff);
}
}
div.find("img").load(function () {
if (SCROLLCHAT) {
scrollChat();
} else if ($(this).position().top < 0) {
scrollAndIgnoreEvent(msgBuf.scrollTop() + $(this).height());
}
});
var isHighlight = false;
if (CLIENT.name && data.username != CLIENT.name) {
if (data.msg.toLowerCase().indexOf(CLIENT.name.toLowerCase()) != -1) {