Thread viewer for Bluesky

show info if loaded less than requested days

+2
index.html
··· 109 109 </p> 110 110 </form> 111 111 112 + <p class="scan-info"></p> 113 + 112 114 <table class="scan-result"> 113 115 <thead> 114 116 <tr>
+8
skythread.js
··· 501 501 let minTime = now; 502 502 let daysBack = 0; 503 503 504 + let scanInfo = $(postingStatsPage.querySelector('.scan-info')); 505 + scanInfo.style.display = 'none'; 506 + 504 507 accountAPI.loadTimeline(days, { 505 508 onPageLoad: (data) => { 506 509 if (window.scanStartTime != now) { ··· 569 572 ); 570 573 571 574 tbody.append(tr); 575 + } 576 + 577 + if (Math.ceil(daysBack) < days) { 578 + scanInfo.innerText = `🕓 Showing data from ${Math.round(daysBack)} days:`; 579 + scanInfo.style.display = 'block'; 572 580 } 573 581 574 582 table.style.display = 'table';
+7
style.css
··· 753 753 display: none; 754 754 } 755 755 756 + #posting_stats_page .scan-info { 757 + display: none; 758 + font-weight: 600; 759 + line-height: 125%; 760 + margin: 20px 0px; 761 + } 762 + 756 763 #posting_stats_page .scan-result { 757 764 border: 1px solid #333; 758 765 border-collapse: collapse;