This commit is contained in:
derv 2024-01-03 09:43:38 -05:00
parent 8b00520d73
commit 7cfbba237c

View file

@ -5,7 +5,7 @@ let users = {};
let fetchData;
async function genTree(treeId) {
fetchData = await fetch(`https://scratch.mit.edu/projects/${treeId}/remixtree/bare`)
fetchData = fetchData || await fetch(`https://scratch.mit.edu/projects/${treeId}/remixtree/bare/`)
.then(x => x.json());
entries.push(treeId)
@ -21,10 +21,12 @@ async function genTree(treeId) {
return entry;
}
let doThings = false;
async function main() {
await genTree("946114669"); // latest project
await genTree("946309808"); // latest project
await genTree("654605857"); // tree bug here, unavoidable without jank
console.log(entries)
doThings = true;
document.querySelector('.contributors').textContent = Object.keys(users).join(', ');
}
@ -39,10 +41,11 @@ function sanitize(content) {
}
setInterval(function() {
if ((window.innerHeight + window.scrollY) >= document.body.scrollHeight) {
if (doThings && (window.innerHeight + window.scrollY) >= document.body.scrollHeight - 25) {
let h = '';
for (let j = 0; j < 35; j++) {
let entry = entries[i];
if (!entry || !(entry in fetchData)) break;
h += `<div class='proj'><a href="https://scratch.mit.edu/projects/${entry}"><img src='https://uploads.scratch.mit.edu/get_image/project/${entry}_1920x1080.png'>${sanitize(fetchData[entry].title)} [${entries.length - i }]</a></div>`;
i++;
}