Trim channel messages in active channel and when switching channels

Fixes #1461
This commit is contained in:
Pavel Djundik 2017-11-23 16:23:32 +02:00
parent 7fb92fee64
commit 15a52ccec3
3 changed files with 42 additions and 17 deletions

View File

@ -13,6 +13,7 @@ require("./libs/jquery/stickyscroll");
const slideoutMenu = require("./libs/slideout"); const slideoutMenu = require("./libs/slideout");
const templates = require("../views"); const templates = require("../views");
const socket = require("./socket"); const socket = require("./socket");
const render = require("./render");
require("./socket-events"); require("./socket-events");
const storage = require("./localStorage"); const storage = require("./localStorage");
const utils = require("./utils"); const utils = require("./utils");
@ -348,14 +349,17 @@ $(function() {
.find(".chat") .find(".chat")
.unsticky(); .unsticky();
var lastActiveChan = lastActive const lastActiveChan = lastActive.find(".chan.active");
.find(".chan.active")
.removeClass("active");
lastActiveChan if (lastActiveChan.length > 0) {
.find(".unread-marker") lastActiveChan
.data("unread-id", 0) .removeClass("active")
.appendTo(lastActiveChan.find(".messages")); .find(".unread-marker")
.data("unread-id", 0)
.appendTo(lastActiveChan.find(".messages"));
render.trimMessageInChannel(lastActiveChan, 100);
}
var chan = $(target) var chan = $(target)
.addClass("active") .addClass("active")

View File

@ -26,6 +26,7 @@ module.exports = {
renderChannel, renderChannel,
renderChannelUsers, renderChannelUsers,
renderNetworks, renderNetworks,
trimMessageInChannel,
}; };
function buildChannelMessages(container, chanId, chanType, messages) { function buildChannelMessages(container, chanId, chanType, messages) {
@ -242,6 +243,25 @@ function renderNetworks(data, singleNetwork) {
} }
} }
function trimMessageInChannel(channel, messageLimit) {
const messages = channel.find(".messages .msg").slice(0, -messageLimit);
if (messages.length === 0) {
return;
}
messages.remove();
channel.find(".show-more").addClass("show");
// Remove date-separators that would otherwise be "stuck" at the top of the channel
channel.find(".date-marker-container").each(function() {
if ($(this).next().hasClass("date-marker-container")) {
$(this).remove();
}
});
}
function loadMoreHistory(entries) { function loadMoreHistory(entries) {
entries.forEach((entry) => { entries.forEach((entry) => {
if (!entry.isIntersecting) { if (!entry.isIntersecting) {

View File

@ -66,17 +66,18 @@ function processReceivedMessage(data) {
sidebar.find("[data-target='" + target + "'] .badge").removeClass("highlight").empty(); sidebar.find("[data-target='" + target + "'] .badge").removeClass("highlight").empty();
} }
// Message arrived in a non active channel, trim it to 100 messages let messageLimit = 0;
if (activeChannelId !== targetId && container.find(".msg").slice(0, -100).remove().length) {
channel.find(".show-more").addClass("show");
// Remove date-separators that would otherwise if (activeChannelId !== targetId) {
// be "stuck" at the top of the channel // If message arrives in non active channel, keep only 100 messages
channel.find(".date-marker-container").each(function() { messageLimit = 100;
if ($(this).next().hasClass("date-marker-container")) { } else if (container.isScrollBottom()) {
$(this).remove(); // If message arrives in active channel, keep 500 messages if scroll is currently at the bottom
} messageLimit = 500;
}); }
if (messageLimit > 0) {
render.trimMessageInChannel(channel, messageLimit);
} }
if ((data.msg.type === "message" || data.msg.type === "action" || data.msg.type === "notice") && channel.hasClass("channel")) { if ((data.msg.type === "message" || data.msg.type === "action" || data.msg.type === "notice") && channel.hasClass("channel")) {