Advertisement
Guest User

Untitled

a guest
Mar 16th, 2025
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (active_page == 'index' && (""+document.location).match(/\/(index\.html)?(\?|$|#)/))
  2.     +function() {
  3.       $.fn.reverse = [].reverse;
  4.    
  5.       var board_name = (""+document.location).match(/\/([^\/]+)\/[^/]*$/)[1];
  6.       var fetch_new_threads_debounce;
  7.      
  8.       var fetch_new_threads_throttled = function() {
  9.         if (fetch_new_threads_debounce) return;
  10.         fetch_new_threads();
  11.         fetch_new_threads_debounce = true;
  12.         setTimeout(() => fetch_new_threads_debounce = false, 500);
  13.       }
  14.  
  15.       var handle_one_thread = function() {
  16.         var $this = $(this);
  17.         if ($this.find(".new-posts").length <= 0) {
  18.           $this.find("br.clear").before("<div class='new-posts'>"+_("No new posts.")+"</div>");
  19.         }
  20.       };
  21.  
  22.       $(function() {
  23.         $("hr:first").before("<hr /><div class='new-threads'>"+_("No new threads.")+"</div>");
  24.         $('div[id^="thread_"]').each(handle_one_thread);
  25.         setInterval(fetchNewPosts, 3000);
  26.         setInterval(refreshThreadList, 5000);
  27.       });
  28.  
  29.       $(document).on("new_post", function(e, post) {
  30.         if (!$(post).hasClass("reply")) {
  31.           handle_one_thread.call(post);
  32.         }
  33.       });
  34.  
  35.       function fetchNewPosts() {
  36.         $.getJSON(configRoot + board_name + "/0.json", function(j) {
  37.           j.threads.forEach(function(t) {
  38.             var s_thread = $("#thread_" + t.posts[0].no);
  39.             if (s_thread.length) {
  40.               var existingPosts = s_thread.find(".post.reply").length;
  41.               var omitted = s_thread.find(".omitted").text().match(/\d+/);
  42.               var omittedCount = omitted ? parseInt(omitted[0]) : 0;
  43.               var totalReplies = t.posts[0].replies;
  44.               var newPostsCount = totalReplies - (existingPosts + omittedCount);
  45.  
  46.               if (newPostsCount > 0) {
  47.                 loadNewPosts(t.posts[0].no, newPostsCount);
  48.               }
  49.             }
  50.           });
  51.         });
  52.       }
  53.  
  54.       function loadNewPosts(threadId, count) {
  55.         $.getJSON(`${configRoot}${board_name}/res/${threadId}.json`, function(j) {
  56.             var threadContainer = $("#thread_" + threadId);
  57.             if (!threadContainer.length) return;
  58.  
  59.             var newPostsDiv = threadContainer.find(".new-posts");
  60.             if (!newPostsDiv.length) {
  61.                 threadContainer.append("<div class='new-posts'>" + _("No new posts.") + "</div>");
  62.                 newPostsDiv = threadContainer.find(".new-posts");
  63.             }
  64.  
  65.             var existingReplies = threadContainer.find(".post.reply").map(function() {
  66.                 return this.id.replace("reply_", "");
  67.             }).get();
  68.  
  69.             let newReplies = [];
  70.             j.posts.slice(-count).forEach(function(post) {
  71.                 if (!existingReplies.includes(post.no.toString())) {
  72.                     var postHtml = makePostHtml(post);
  73.                     newPostsDiv.before(postHtml);
  74.                     newReplies.push(postHtml);
  75.                 }
  76.             });
  77.  
  78.             var replies = threadContainer.find(".post.reply");
  79.             while (replies.length > 3) {
  80.                 replies.first().remove();
  81.                 replies = threadContainer.find(".post.reply");
  82.             }
  83.  
  84.             if (newReplies.length > 0) {
  85.                 threadContainer.prependTo("#postcontrols");
  86.             }
  87.  
  88.             $(document).trigger("dyn_update", [threadContainer.find(".post").slice(-count)]);
  89.         });
  90.       }
  91.  
  92.       function makePostHtml(post) {
  93.         let imageHtml = post.file ? `
  94.           <div class="file">
  95.             <p class="fileinfo">File: <a href="/${board_name}/src/${post.tim}${post.ext}">${post.tim}${post.ext}</a>
  96.               <span class="unimportant"> (${(post.fsize / 1024).toFixed(1)} KB, ${post.w}x${post.h},
  97.                 <a download="${post.filename}${post.ext}" href="/${board_name}/src/${post.tim}${post.ext}"
  98.                    title="Save as original filename (${post.filename}${post.ext})">
  99.                   ${post.filename}${post.ext}
  100.                 </a>)
  101.               </span>
  102.             </p>
  103.             <a href="/${board_name}/src/${post.tim}${post.ext}" target="_blank">
  104.               <img class="post-image" src="/${board_name}/src/${post.tim}${post.ext}" style="width:${post.tn_w}px;height:${post.tn_h}px" alt="">
  105.             </a>
  106.           </div>` : '';
  107.  
  108.         return `<div class='post reply' id='reply_${post.no}'>
  109.                   <p class="intro">
  110.                     <input type="checkbox" class="delete" name="delete_${post.no}" id="delete_${post.no}">
  111.                     <label for="delete_${post.no}">
  112.                       <span class="name">${post.name || "Anonymous"}</span>
  113.                       <time datetime="${post.time ? new Date(post.time * 1000).toISOString() : ''}"
  114.                             data-local="true"
  115.                             title="${post.time ? new Date(post.time * 1000).toLocaleString() : 'Unknown'}">
  116.                         ${post.time ? new Date(post.time * 1000).toLocaleTimeString() : 'Unknown'}
  117.                       </time>
  118.                     </label>
  119.                     <a class="post_no" id="post_no_${post.no}" onclick="highlightReply(${post.no})"
  120.                        href="/${board_name}/res/${post.resto || post.no}.html#${post.no}">No.</a>
  121.                     <a class="post_no" onclick="citeReply(${post.no})"
  122.                        href="/${board_name}/res/${post.resto || post.no}.html#q${post.no}">${post.no}</a>
  123.                   </p>
  124.                   <div class="files">${imageHtml}</div>
  125.                   <div class="body">${post.com || ''}</div>
  126.                 </div><br class='clear'>`;
  127.       }
  128.  
  129.       function refreshThreadList() {
  130.         $.getJSON(configRoot + board_name + "/0.json", function(j) {
  131.             var sortedThreads = j.threads.sort((a, b) => b.posts[0].last_modified - a.posts[0].last_modified);
  132.             var $threadList = $("form[name='postcontrols']");
  133.            
  134.             var threadMap = {};
  135.             $threadList.children("div[id^='thread_']").each(function() {
  136.               var threadId = $(this).attr("id");
  137.               threadMap[threadId] = $(this);
  138.             });
  139.            
  140.             $threadList.empty();
  141.    
  142.             sortedThreads.forEach(thread => {
  143.               var threadId = "thread_" + thread.posts[0].no;
  144.               if (threadMap[threadId]) {
  145.                 $threadList.append(threadMap[threadId]);
  146.                 updateThreadContent(thread.posts[0].no);
  147.               }
  148.             });
  149.         });
  150.       }
  151.  
  152.       function updateThreadContent(threadId) {
  153.         $.getJSON(`${configRoot}${board_name}/res/${threadId}.json`, function(j) {
  154.           var threadContainer = $("#thread_" + threadId);
  155.           var newPostsHtml = j.posts.slice(1).map(post => makePostHtml(post)).join('');
  156.           threadContainer.find(".thread-replies").html(newPostsHtml);
  157.         });
  158.       }
  159.  
  160.     }();
  161.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement