improve error handling of client boot

This commit is contained in:
syuilo 2022-07-14 20:41:17 +09:00
parent 61e26696aa
commit cb00786f1e

View file

@ -59,6 +59,7 @@
import(`/assets/${CLIENT_ENTRY}`)
.catch(async e => {
await checkUpdate();
console.error(e);
renderError('APP_FETCH_FAILED', e);
})
//#endregion
@ -271,7 +272,7 @@
// eslint-disable-next-line no-inner-declarations
async function checkUpdate() {
// TODO: サーバーが落ちている場合などのエラーハンドリング
try {
const res = await fetch('/api/meta', {
method: 'POST',
cache: 'no-cache'
@ -283,6 +284,11 @@
localStorage.setItem('v', meta.version);
refresh();
}
} catch (e) {
console.error(e);
renderError('UPDATE_CHECK_FAILED', e);
throw e;
}
}
// eslint-disable-next-line no-inner-declarations