Don't render anything until gateway connection

This commit is contained in:
hippoz 2022-08-28 20:52:34 +03:00
parent 71f3773488
commit fcf25320cb
Signed by: hippoz
GPG key ID: 7C52899193467641
2 changed files with 26 additions and 13 deletions

View file

@ -60,6 +60,7 @@ export default {
init(token) {
if (!token) {
log("no auth token, skipping connection");
this.dispatch(GatewayEventType.Close, GatewayErrors.BAD_AUTH);
this.dispatch(GatewayEventType.BadAuth, 0);
return false;
}

View file

@ -3,13 +3,11 @@ import { getItem } from './storage';
import { authWithToken, useAuthHandlers } from './auth';
import { initResponsiveHandlers } from './responsive';
import { useDebuggingApi } from './debuggingapi';
import gateway, { GatewayEventType } from './gateway';
useDebuggingApi();
function handleGatewaySettlement() {
initResponsiveHandlers();
useAuthHandlers();
authWithToken(getItem("auth:token"));
// Remove loading screen
const loadingElement = document.getElementById("pre--loading-screen");
if (loadingElement) {
loadingElement.parentElement.removeChild(loadingElement);
@ -20,4 +18,18 @@ const app = new Main({
});
window.__waffle.app = app;
export default app;
gateway.unsubscribe(GatewayEventType.Ready, handleGatewaySettlement);
gateway.unsubscribe(GatewayEventType.Close, handleGatewaySettlement);
}
function main() {
useDebuggingApi();
useAuthHandlers();
gateway.subscribe(GatewayEventType.Ready, handleGatewaySettlement);
gateway.subscribe(GatewayEventType.Close, handleGatewaySettlement);
authWithToken(getItem("auth:token"));
}
main();