attempt to extrapolate what the extra remixes are

This commit is contained in:
onezplpl 2024-08-02 21:00:24 -04:00
parent b664acd1e2
commit 710d9d49c2
No known key found for this signature in database
GPG key ID: 7EC026A136F9EEC3

View file

@ -2,11 +2,8 @@ let area = document.querySelector('#area-main');
let entries = [];
let users = {};
let fetchData;
async function genTree(treeId, tree2) {
fetchData = fetchData || await fetch(`https://scratch.mit.edu/projects/${tree2}/remixtree/bare/`)
.then(x => x.json());
let fetchData;
async function genTree(treeId) {
entries.push(treeId)
let entry = fetchData[treeId];
@ -27,9 +24,18 @@ async function genTree(treeId, tree2) {
let doThings = false;
async function main() {
fetchData = await fetch(`https://scratch.mit.edu/projects/1052168454/remixtree/bare/`).then(x => x.json());
let latestData = await fetch("https://corsproxy.io/?https://api.scratch.mit.edu/studios/34493018/projects").then(x => x.json());
await genTree(latestData[0].id, "1052168454"); // latest project
await genTree("654605857", "1052168454"); // tree bug here, unavoidable without jank
let lid = latestData[0].id;
while (fetchData[lid].children.length > 0) {
let ch = fetchData[lid].children;
let ch2 = ch.filter(x => fetchData[x].children.length > 0);
lid = ch2[0] || ch[0];
}
await genTree(lid); // latest project
await genTree("654605857"); // tree bug here, unavoidable without jank
doThings = true;
document.querySelector('.contributors').innerHTML = Object.keys(users)
.sort((x, y) => users[y] - users[x])