Skip to content
Snippets Groups Projects
Commit ad56b4d2 authored by Emmanuel Vodor's avatar Emmanuel Vodor
Browse files

Merge branch 'history_loading' into 'beta'

History loading

See merge request !110
parents 8e7d7327 3a5f5397
No related branches found
No related tags found
2 merge requests!113History, Reply to messages and RAI,!110History loading
Pipeline #10473 passed
/**
* Forces the loading of the real number of messages (or more)
* from the setting `archived_messages_page_size`.
* Updates the history behavior of chat boxes.
*/
converse.plugins.add('sib-mam-history', {
converse.plugins.add('sib-history-improved', {
dependencies: [
'converse-mam',
],
overrides: {
ChatRoomView: {
events: {
'wheel .chat-content__messages': 'onScrolledUp',
},
},
ChatBoxView: {
events: {
'wheel .chat-content__messages': 'onScrolledUp',
},
/**
* Fetch the old messages if there is no scroll available.
* @param {WheelEvent} ev
*/
onScrolledUp(ev) {
const { api } = this.__super__._converse;
const { utils } = converse.env;
const scrollable = this.msgs_container.clientHeight < this.msgs_container.scrollHeight;
if (ev.deltaY < 0 && !scrollable) {
api.trigger('chatBoxScrolledUp', this);
utils.safeSave(this.model, {
scrolled: true,
scrollTop: 0,
});
}
},
},
},
initialize() {
const { api } = this._converse;
const _converse = this._converse;
const { api } = _converse;
const { log } = converse.env;
let counter = 0;
// Forces the loading of the real number of messages (or more)
// from the setting `archived_messages_page_size`.
api.listen.on('MAMResult', async data => {
const max = +api.settings.get('archived_messages_page_size');
......@@ -22,22 +55,27 @@ converse.plugins.add('sib-mam-history', {
// Stop if there are less messages available than the page size
// Stop if the counter registers more messages than the max value
if (!max || messages.length < max || counter >= max) {
log.debug(`Chatbox has enough messages or cannot get more, count: ${counter}`);
counter = 0;
return;
}
log.debug(`Chatbox needs more messages, count: ${counter}`);
const is_groupchat = data.chatbox.get('type') === converse.CHATROOMS_TYPE;
const oldest_message = messages.pop();
if (oldest_message) {
const by_jid = is_groupchat ? data.chatbox.get('jid') : converse.bare_jid;
const by_jid = is_groupchat ? data.chatbox.get('jid') : _converse.bare_jid;
const stanza_id = oldest_message && oldest_message['stanza_id '.concat(by_jid)];
if (stanza_id) {
log.debug(`Loading messages before stanza: ${stanza_id}`);
await data.chatbox.fetchArchivedMessages({
'before': stanza_id,
});
} else {
log.debug(`Loading messages before time: ${oldest_message['time']}`);
await data.chatbox.fetchArchivedMessages({
'end': oldest_message['time'],
});
......
......@@ -9,7 +9,7 @@ import './plugins/converse-rai.js';
import './plugins/sib-chat-navigation.js';
import './plugins/sib-custom-hats.js';
import './plugins/sib-disconnected.js';
import './plugins/sib-mam-history.js';
import './plugins/sib-history-improved.js';
import './plugins/sib-mention-mobile.js';
import './plugins/sib-remove-notifications.js';
import './plugins/sib-reply-to-message.js';
......@@ -226,7 +226,7 @@ export const SolidXMPPChat = {
'sib-connected',
'sib-custom-hats',
'sib-disconnected',
'sib-mam-history',
'sib-history-improved',
'sib-mention-mobile',
'sib-remove-notifications',
'sib-reply-to-message',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment