aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/main.js
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2019-11-29 15:30:58 +0000
committerMario <mario@mariovavti.com>2019-11-29 15:30:58 +0000
commit1c6796f9075ace75d5cc615ebb1463bdac1dd763 (patch)
tree13630359fb2f60b2c0008d01ab0d2bb4fd028873 /view/js/main.js
parentf2c73c0f45787a361f9fd57831a00c34e660fbd9 (diff)
downloadvolse-hubzilla-1c6796f9075ace75d5cc615ebb1463bdac1dd763.tar.gz
volse-hubzilla-1c6796f9075ace75d5cc615ebb1463bdac1dd763.tar.bz2
volse-hubzilla-1c6796f9075ace75d5cc615ebb1463bdac1dd763.zip
sse: possible fix for race condition and fix notification count if we loaded unseen items but their notifications were not yet loaded
Diffstat (limited to 'view/js/main.js')
-rw-r--r--view/js/main.js34
1 files changed, 25 insertions, 9 deletions
diff --git a/view/js/main.js b/view/js/main.js
index a528658e1..401a41a4a 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -23,7 +23,7 @@ var mediaPlaying = false;
var contentHeightDiff = 0;
var liveRecurse = 0;
var savedTitle = '';
-var initialLoad = true;
+var followUpPageLoad = false;
var window_needs_alert = true;
var sse_bs_active = false;
@@ -124,8 +124,6 @@ $(document).ready(function() {
myWorker.port.start();
}
- sse_bs_init();
-
$('.notification-link').on('click', { replace: true, followup: false }, sse_bs_notifications);
$('.notification-filter').on('keypress', function(e) {
@@ -219,8 +217,6 @@ $(document).ready(function() {
if(e)
pageHasMoreContent = false;
- initialLoad = false;
-
});
function getConversationSettings() {
@@ -718,6 +714,14 @@ function updateConvItems(mode,data) {
});
+ // We are actually dealing with counts in sse_updateNotifications()
+ // for notifications which are already visible. For the case where
+ // unseen items were loaded but their notifications are not yet visible
+ // we need to bootstrap counts here to stay in sync with the DB after
+ // the first page load.
+
+ if(followUpPageLoad)
+ sse_bs_counts();
// reset rotators and cursors we may have set before reaching this place
@@ -773,6 +777,8 @@ function updateConvItems(mode,data) {
$(document.body).trigger("sticky_kit:recalc");
}
+ followUpPageLoad = true;
+
}
function scrollToItem() {
@@ -864,6 +870,7 @@ function updateInit() {
if(src) {
liveUpdate();
}
+ sse_bs_init();
if($('#live-photos').length || $('#live-cards').length || $('#live-articles').length ) {
if(liking) {
@@ -1594,15 +1601,22 @@ function sse_bs_init() {
sse_bs_notifications(sse_type, true, false);
}
else {
- $.get('/sse_bs',function(obj) {
- console.log(obj);
- sse_handleNotifications(obj, true, false);
- });
+ sse_bs_counts();
}
}
+function sse_bs_counts() {
+ console.log('sse_bs_counts');
+ $.get('/sse_bs',function(obj) {
+ console.log(obj);
+ sse_handleNotifications(obj, true, false);
+ });
+}
+
function sse_bs_notifications(e, replace, followup) {
+ console.log('sse_bs_notifications');
+
sse_bs_active = true;
var manual = false;
@@ -1668,10 +1682,12 @@ function sse_handleNotifications(obj, replace, followup) {
all_notifications.forEach(function(type, index) {
if(obj[type] && obj[type].count) {
$('.' + type + '-button').fadeIn();
+
if(replace || followup)
$('.' + type + '-update').html(Number(obj[type].count));
else
$('.' + type + '-update').html(Number(obj[type].count) + Number($('.' + type + '-update').html()));
+
}
if(obj[type] && obj[type].notifications.length)
sse_handleNotificationsItems(type, obj[type].notifications, replace, followup);