Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
solid-xmpp-chat
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Components
solid-xmpp-chat
Commits
ad56b4d2
Commit
ad56b4d2
authored
4 years ago
by
Emmanuel Vodor
Browse files
Options
Downloads
Plain Diff
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
!113
History, Reply to messages and RAI
,
!110
History loading
Pipeline
#10473
passed
4 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/plugins/sib-history-improved.js
+86
-0
86 additions, 0 deletions
src/plugins/sib-history-improved.js
src/solid-xmpp-chat.js
+2
-2
2 additions, 2 deletions
src/solid-xmpp-chat.js
with
88 additions
and
2 deletions
src/plugins/sib-
mam-
history.js
→
src/plugins/sib-history
-improved
.js
+
86
−
0
View file @
ad56b4d2
/**
* 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
'
],
});
...
...
This diff is collapsed.
Click to expand it.
src/solid-xmpp-chat.js
+
2
−
2
View file @
ad56b4d2
...
...
@@ -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
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment