+2
-2
like_stats_page.js
+2
-2
like_stats_page.js
···
27
e.preventDefault();
28
29
if (!this.scanStartTime) {
30
-
this.findLikes();
31
} else {
32
this.stopScan();
33
}
···
228
tr.append(
229
$tag('td.no', { text: i + 1 }),
230
$tag('td.handle', {
231
-
html: `<img class="avatar" src="${user.avatar}"> ` +
232
`<a href="https://bsky.app/profile/${user.handle}" target="_blank">${user.handle}</a>`
233
}),
234
$tag('td.count', { text: user.count })
···
27
e.preventDefault();
28
29
if (!this.scanStartTime) {
30
+
this.findLikes();
31
} else {
32
this.stopScan();
33
}
···
228
tr.append(
229
$tag('td.no', { text: i + 1 }),
230
$tag('td.handle', {
231
+
html: `<img class="avatar" src="${user.avatar}"> ` +
232
`<a href="https://bsky.app/profile/${user.handle}" target="_blank">${user.handle}</a>`
233
}),
234
$tag('td.count', { text: user.count })
+5
-5
posting_stats_page.js
+5
-5
posting_stats_page.js
···
57
e.preventDefault();
58
59
if (!this.scanStartTime) {
60
-
this.scanPostingStats();
61
} else {
62
this.stopScan();
63
}
···
320
keepLastPage: true
321
});
322
323
-
this.updateResultsTable(posts, startTime, requestedDays, { showReposts: false });
324
} else if (scanType == 'users') {
325
let dids = Object.keys(this.selectedUsers);
326
···
375
let lastDate = feedPostTime(last);
376
let daysBack = (startTime - lastDate) / 86400 / 1000;
377
378
-
this.progressBar.value = daysBack;
379
}
380
381
/** @param {string[]} dids */
···
548
tr.append($tag('td.percent', { text: '' }));
549
}
550
551
-
this.tableBody.append(tr);
552
}
553
554
let sorted = Object.values(users).sort(this.sortUserRows);
···
560
tr.append(
561
$tag('td.no', { text: i + 1 }),
562
$tag('td.handle', {
563
-
html: `<img class="avatar" src="${user.avatar}"> ` +
564
`<a href="https://bsky.app/profile/${user.handle}" target="_blank">${user.handle}</a>`
565
}),
566
···
57
e.preventDefault();
58
59
if (!this.scanStartTime) {
60
+
this.scanPostingStats();
61
} else {
62
this.stopScan();
63
}
···
320
keepLastPage: true
321
});
322
323
+
this.updateResultsTable(posts, startTime, requestedDays, { showReposts: false });
324
} else if (scanType == 'users') {
325
let dids = Object.keys(this.selectedUsers);
326
···
375
let lastDate = feedPostTime(last);
376
let daysBack = (startTime - lastDate) / 86400 / 1000;
377
378
+
this.progressBar.value = daysBack;
379
}
380
381
/** @param {string[]} dids */
···
548
tr.append($tag('td.percent', { text: '' }));
549
}
550
551
+
this.tableBody.append(tr);
552
}
553
554
let sorted = Object.values(users).sort(this.sortUserRows);
···
560
tr.append(
561
$tag('td.no', { text: i + 1 }),
562
$tag('td.handle', {
563
+
html: `<img class="avatar" src="${user.avatar}"> ` +
564
`<a href="https://bsky.app/profile/${user.handle}" target="_blank">${user.handle}</a>`
565
}),
566
+2
-2
private_search_page.js
+2
-2
private_search_page.js
+2
-2
style.css
+2
-2
style.css
+1
-1
test/ts_test.js
+1
-1
test/ts_test.js