Experiment to rebuild Diffuse using web applets.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: output loading

+5 -6
+1 -1
package-lock.json
··· 1837 1837 "node_modules/@web-applets/sdk": { 1838 1838 "version": "0.2.6", 1839 1839 "resolved": "https://gitpkg.vercel.app/unternet-co/web-applets/sdk?tokono.ma/experiment&scripts.postinstall=npm%20i%20%40types%2Fnode%20%26%26%20npx%20tsc", 1840 - "integrity": "sha512-aXG4XVRuiNm+HolucTHVQt7POcKaV/cYI+qqHDPb7zyJQGnBqm4EypHwl+c53LuOCRkw/+7E3078sECoJEJgEQ==", 1840 + "integrity": "sha512-AL1T69Yr2yA0MV+JaCWj+SufF83aSBfwLe3iPVh5WB7qH1nH4vu2cC7JJK1FYNBs8wEYmyh2SNHGQjKQyoFy4w==", 1841 1841 "hasInstallScript": true, 1842 1842 "license": "MIT" 1843 1843 },
+1 -1
src/pages/orchestrator/input-cache/_applet.astro
··· 83 83 }); 84 84 85 85 // Log 86 - console.log("🪵 PROCESSING COMPLETED"); 86 + console.log("🪵 Processing completed"); 87 87 } 88 88 89 89 ////////////////////////////////////////////
+3 -4
src/pages/orchestrator/output-management/_applet.astro
··· 24 24 }; 25 25 26 26 // Load tracks 27 - context.data = { 28 - ready: false, 29 - tracks: await loadTracks(), 30 - }; 27 + loadTracks().then((tracks) => { 28 + update({ tracks }); 29 + }); 31 30 32 31 // State helpers 33 32 function update(partial: Partial<State>): void {