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