diff options
author | Mario <mario@mariovavti.com> | 2024-12-19 18:49:07 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-12-19 18:49:07 +0000 |
commit | a2dde34b1be35282618035652f919c39199beea1 (patch) | |
tree | 128d7fb247fc463cc5dc403da8ecc1928c138c29 /view/js | |
parent | fb5824417e12710572b8786f1db2e75457819447 (diff) | |
download | volse-hubzilla-a2dde34b1be35282618035652f919c39199beea1.tar.gz volse-hubzilla-a2dde34b1be35282618035652f919c39199beea1.tar.bz2 volse-hubzilla-a2dde34b1be35282618035652f919c39199beea1.zip |
refactor notifications widget and updateConvItems() to not require jquery
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 295 |
1 files changed, 151 insertions, 144 deletions
diff --git a/view/js/main.js b/view/js/main.js index 2eb126b6f..8b8b5d918 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -626,175 +626,182 @@ function updatePageItems(mode, data) { collapseHeight(); } +function updateConvItems(mode, data) { + let scroll_position = window.scrollY; + let b64mids = []; -function updateConvItems(mode,data) { - let scroll_position = $(window).scrollTop(); - let b64mids = []; + // Parse the data string into a DOM object + let parser = new DOMParser(); + let doc = parser.parseFromString(data, 'text/html'); - if(mode !== 'update') - $(document).trigger('hz:updateConvItems'); - - if(mode === 'update' || mode === 'replace') { - prev = 'threads-begin'; - } - if(mode === 'append') { - next = 'threads-end'; - } - - $('.thread-wrapper', data).each(function() { - if(this.classList.contains('toplevel_item')) { - let ident = this.id; - let convId = ident.replace('thread-wrapper-',''); - let commentWrap = $('#'+ident+' .collapsed-comments').attr('id'); - - let itmId = 0; - let isVisible = false; - - // figure out the comment state - if(typeof commentWrap !== 'undefined') - itmId = commentWrap.replace('collapsed-comments-',''); - - if($('#collapsed-comments-'+itmId).is(':visible')) - isVisible = true; - - // insert the content according to the mode and first_page - // and whether or not the content exists already (overwrite it) - - if($('#' + ident).length == 0) { - if((mode === 'update' || mode === 'replace') && profile_page == 1) { - $('#' + prev).after($(this)); - prev = ident; - } - if(mode === 'append') { - $('#' + next).before($(this)); - } - } - else { - $('#' + ident).replaceWith($(this)); - } - - // set the comment state to the state we discovered earlier - - if(isVisible) - showHideComments(itmId); + if (mode !== 'update') { + document.dispatchEvent(new Event('hz:updateConvItems')); + } - let commentBody = localStorage.getItem("comment_body-" + convId); + let prev, next; + if (mode === 'update' || mode === 'replace') { + prev = document.getElementById('threads-begin'); + } + if (mode === 'append') { + next = document.getElementById('threads-end'); + } - if(commentBody) { - var commentElm = $('#comment-edit-text-' + convId); - if(auto_save_draft) { - if($(commentElm).val() === '') { - $('#comment-edit-form-' + convId).show(); - $(commentElm).addClass("expanded"); - openMenu("comment-tools-" + convId); - $(commentElm).val(commentBody); - } - } else { - localStorage.removeItem("comment_body-" + convId); - } - } + doc.querySelectorAll('.thread-wrapper').forEach(function (elem) { + if (elem.classList.contains('toplevel_item')) { + let ident = elem.id; + let convId = ident.replace('thread-wrapper-', ''); + let commentWrap = elem.querySelector('.collapsed-comments')?.id; - // trigger the autotime function on all newly created content + let itmId = 0; + let isVisible = false; - if((mode === 'append' || mode === 'replace') && (loadingPage)) { - loadingPage = false; - } + // figure out the comment state + if (commentWrap !== undefined) { + itmId = commentWrap.replace('collapsed-comments-', ''); + } - // if single thread view and the item has a title, display it in the title bar + let collapsedComment = document.getElementById('collapsed-comments-' + itmId); + if (collapsedComment && collapsedComment.style.display !== 'none') { + isVisible = true; + } - if(mode === 'replace') { - if (window.location.search.indexOf("mid=") != -1 || window.location.pathname.indexOf("display") != -1) { - let title = $(".wall-item-title").text(); - title.replace(/^\s+/, ''); - title.replace(/\s+$/, ''); - if (title) { - savedTitle = title + " " + savedTitle; - document.title = title; - } - } - } - } + // insert the content according to the mode and first_page + // and whether or not the content exists already (overwrite it) + let existingElem = document.getElementById(ident); + if (!existingElem) { + if ((mode === 'update' || mode === 'replace') && profile_page == 1) { + if (prev) { + prev.after(elem); + prev = elem; + } + } + if (mode === 'append') { + if (next) { + next.before(elem); + } + } + } else { + existingElem.replaceWith(elem); + } - $(this).data('b64mids').forEach((b64mid) => { - b64mids.push(b64mid); - }); + // set the comment state to the state we discovered earlier + if (isVisible) { + showHideComments(itmId); + } - }); + let commentBody = localStorage.getItem("comment_body-" + convId); + if (commentBody) { + let commentElm = document.getElementById('comment-edit-text-' + convId); + if (auto_save_draft && commentElm) { + if (commentElm.value === '') { + let commentForm = document.getElementById('comment-edit-form-' + convId); + if (commentForm) { + commentForm.style.display = 'block'; + } + commentElm.classList.add("expanded"); + openMenu("comment-tools-" + convId); + commentElm.value = commentBody; + } + } else { + localStorage.removeItem("comment_body-" + convId); + } + } - $(document).trigger('hz:sse_setNotificationsStatus', [b64mids]); + if ((mode === 'append' || mode === 'replace') && loadingPage) { + loadingPage = false; + } - $(window).scrollTop(scroll_position); + // if single thread view and the item has a title, display it in the title bar + if (mode === 'replace') { + if (window.location.search.includes("mid=") || window.location.pathname.includes("display")) { + let titleElem = document.querySelector(".wall-item-title"); + if (titleElem) { + let title = titleElem.textContent.trim(); + if (title) { + savedTitle = title + ' ' + savedTitle; + document.title = title; + } + } + } + } + } - if(followUpPageLoad) { - $(document).trigger('hz:sse_bs_counts'); - } - else { - $(document).trigger('hz:sse_bs_init'); - } + b64mids.push(...JSON.parse(elem.dataset.b64mids)); + }); - if(commentBusy) { - commentBusy = false; - $('body').css('cursor', 'auto'); - } + document.dispatchEvent(new CustomEvent('hz:sse_setNotificationsStatus', { detail: b64mids })); - // Setup to determine if the media player is playing. This affects - // some content loading decisions. + window.scrollTo(0, scroll_position); - $('video').off('playing'); - $('video').off('pause'); - $('audio').off('playing'); - $('audio').off('pause'); + if (followUpPageLoad) { + document.dispatchEvent(new Event('hz:sse_bs_counts')); + } else { + console.log('got here0'); - $('video').on('playing', function() { - mediaPlaying = true; - }); - $('video').on('pause', function() { - mediaPlaying = false; - }); - $('audio').on('playing', function() { - mediaPlaying = true; - }); - $('audio').on('pause', function() { - mediaPlaying = false; - }); + document.dispatchEvent(new Event('hz:sse_bs_init')); + } - if(! preloadImages) { - $('.wall-item-body, .wall-photo-item').imagesLoaded() - .always( function( instance ) { - //console.log('all images loaded'); - collapseHeight(); + if (commentBusy) { + commentBusy = false; + document.body.style.cursor = 'auto'; + } - if(bParam_mid && mode === 'replace') - scrollToItem(); + // Setup to determine if the media player is playing. This affects some content loading decisions. + ['playing', 'pause'].forEach(event => { + document.querySelectorAll('video, audio').forEach(media => { + media.removeEventListener(event, mediaHandler); + media.addEventListener(event, mediaHandler); + }); + }); - }) - .done( function( instance ) { - //console.log('all images successfully loaded'); - }) - .fail( function() { - //console.log('all images loaded, at least one is broken'); - }) - .progress( function( instance, image ) { - //var result = image.isLoaded ? 'loaded' : 'broken'; - //console.log( 'image is ' + result + ' for ' + image.img.src ); - }); - } - else { - collapseHeight(); + function mediaHandler(event) { + mediaPlaying = event.type === 'playing'; + } - if(bParam_mid && mode === 'replace') - scrollToItem(); - } + if (!preloadImages) { + imagesLoaded(document.querySelectorAll('.wall-item-body, .wall-photo-item'), function () { + collapseHeight(); + if (bParam_mid && mode === 'replace') { + scrollToItem(); + } + }); + } else { + collapseHeight(); + if (bParam_mid && mode === 'replace') { + scrollToItem(); + } + } - // reset rotators and cursors we may have set before reaching this place + // reset rotators and cursors we may have set before reaching this place + let pageSpinner = document.getElementById("page-spinner"); + if (pageSpinner) { + pageSpinner.style.display = 'none'; + } + let profileJotTextLoading = document.getElementById("profile-jot-text-loading"); + if (profileJotTextLoading) { + profileJotTextLoading.style.display = 'none'; + } - $("#page-spinner").hide(); - $("#profile-jot-text-loading").hide(); + followUpPageLoad = true; - followUpPageLoad = true; + updateRelativeTime('.autotime'); +} - updateRelativeTime('.autotime'); +// Helper function for images loaded +function imagesLoaded(elements, callback) { + let loaded = 0; + let count = elements.length; + elements.forEach(element => { + let img = new Image(); + img.onload = img.onerror = function () { + loaded++; + if (loaded === count) { + callback(); + } + }; + img.src = element.src; + }); } function updateRelativeTime(selector) { @@ -934,7 +941,7 @@ function updateInit() { liveUpdate(); } else { - $(document).trigger('hz:sse_bs_init'); + document.dispatchEvent(new Event('hz:sse_bs_init')); } if($('#live-photos').length || $('#live-cards').length || $('#live-articles').length ) { |