ensure manager entries load even if preceding ones failed

This commit is contained in:
Norbert de Langen 2022-12-15 11:57:06 +01:00
parent 67a0309a3b
commit 4f1c5cfa98
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -38,9 +38,20 @@
<script type="module">
import './sb-manager/runtime.mjs';
<% files.js.forEach(file => { %>
import './<%= file %>';
<% }); %>
const addons = [
<% files.js.forEach(file => { %>
'./<%= file %>',
<% }); %>
];
/* error handling of manager-addons being broken */
const results = await Promise.allSettled(addons.map(addon => import(addon))).then(results => {
results.forEach((result, index) => {
if(result.status =='rejected'){
console.error(`loading ${addons[index]} failed to load correctly`);
}
})
});
</script>
</body>
</html>