thelounge/client/js/socket-events/more.js

34 lines
807 B
JavaScript
Raw Normal View History

2017-05-18 22:08:54 +02:00
"use strict";
const $ = require("jquery");
const socket = require("../socket");
2018-07-08 15:42:54 +02:00
const {vueApp, findChannel} = require("../vue");
2017-05-18 22:08:54 +02:00
socket.on("more", function(data) {
2018-07-08 15:42:54 +02:00
let chan = $("#chat #chan-" + data.chan);
chan = chan.find(".messages");
2017-05-18 22:08:54 +02:00
// get the scrollable wrapper around messages
const scrollable = chan.closest(".chat");
const heightOld = chan.height() - scrollable.scrollTop();
2017-05-18 22:08:54 +02:00
const channel = findChannel(data.chan);
if (!channel) {
return;
2017-05-18 22:08:54 +02:00
}
channel.channel.messages.unshift(...data.messages);
2018-07-08 15:42:54 +02:00
channel.channel.historyLoading = false;
2018-07-08 15:42:54 +02:00
vueApp.$nextTick(() => {
// restore scroll position
const position = chan.height() - heightOld;
scrollable.finish().scrollTop(position);
});
if (data.messages.length !== 100) {
scrollable.find(".show-more").removeClass("show");
}
2017-05-18 22:08:54 +02:00
});