-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lazy load matrix-js-sdk when running as SPA (#2785)
- Loading branch information
Showing
2 changed files
with
69 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
Copyright 2024 New Vector Ltd. | ||
SPDX-License-Identifier: AGPL-3.0-only | ||
Please see LICENSE in the repository root for full details. | ||
*/ | ||
|
||
import { ICreateClientOpts } from "matrix-js-sdk/src/client"; | ||
import { MatrixError } from "matrix-js-sdk/src/http-api"; | ||
import { logger } from "matrix-js-sdk/src/logger"; | ||
|
||
import { Config } from "../config/Config"; | ||
import { fallbackICEServerAllowed, initClient } from "./matrix"; | ||
import type { InitResult, Session } from "../ClientContext"; | ||
|
||
export async function initSPA( | ||
loadSession: () => Session | undefined, | ||
clearSession: () => void, | ||
): Promise<InitResult | null> { | ||
// We're running as a standalone application | ||
try { | ||
const session = loadSession(); | ||
if (!session) { | ||
logger.log("No session stored; continuing without a client"); | ||
return null; | ||
} | ||
|
||
logger.log("Using a standalone client"); | ||
|
||
/* eslint-disable camelcase */ | ||
const { user_id, device_id, access_token, passwordlessUser } = session; | ||
const initClientParams: ICreateClientOpts = { | ||
baseUrl: Config.defaultHomeserverUrl()!, | ||
accessToken: access_token, | ||
userId: user_id, | ||
deviceId: device_id, | ||
fallbackICEServerAllowed, | ||
livekitServiceURL: Config.get().livekit?.livekit_service_url, | ||
}; | ||
|
||
try { | ||
const client = await initClient(initClientParams, true); | ||
return { | ||
widgetApi: null, | ||
client, | ||
passwordlessUser, | ||
}; | ||
} catch (err) { | ||
if (err instanceof MatrixError && err.errcode === "M_UNKNOWN_TOKEN") { | ||
// We can't use this session anymore, so let's log it out | ||
logger.log( | ||
"The session from local store is invalid; continuing without a client", | ||
); | ||
clearSession(); | ||
// returning null = "no client` pls register" (undefined = "loading" which is the current value when reaching this line) | ||
return null; | ||
} | ||
throw err; | ||
} | ||
} catch (err) { | ||
clearSession(); | ||
throw err; | ||
} | ||
} |