alpha
Login
or
Join now
tokono.ma
/
diffuse-applets
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Experiment to rebuild Diffuse using web applets.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix: output loading
author
Steven Vandevelde
date
1 year ago
(May 23, 2025, 4:50 PM +0200)
commit
1a9fbb37
1a9fbb37bc33a3887dd2f291b56457b58ab8e58b
parent
b94f83b4
b94f83b43e8d94cea67b6372564a716ec9550766
+5
-6
3 changed files
Expand all
Collapse all
Unified
Split
package-lock.json
src
pages
orchestrator
input-cache
_applet.astro
output-management
_applet.astro
+1
-1
package-lock.json
Reviewed
···
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
1840
-
"integrity": "sha512-aXG4XVRuiNm+HolucTHVQt7POcKaV/cYI+qqHDPb7zyJQGnBqm4EypHwl+c53LuOCRkw/+7E3078sECoJEJgEQ==",
1840
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
Reviewed
···
83
83
});
84
84
85
85
// Log
86
86
-
console.log("🪵 PROCESSING COMPLETED");
86
86
+
console.log("🪵 Processing completed");
87
87
}
88
88
89
89
////////////////////////////////////////////
+3
-4
src/pages/orchestrator/output-management/_applet.astro
Reviewed
···
24
24
};
25
25
26
26
// Load tracks
27
27
-
context.data = {
28
28
-
ready: false,
29
29
-
tracks: await loadTracks(),
30
30
-
};
27
27
+
loadTracks().then((tracks) => {
28
28
+
update({ tracks });
29
29
+
});
31
30
32
31
// State helpers
33
32
function update(partial: Partial<State>): void {