mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 14:44:58 +08:00
71 lines
2.3 KiB
TypeScript
71 lines
2.3 KiB
TypeScript
/*
|
|
Copyright 2017 - 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// @ts-ignore - `.ts` is needed here to make TS happy
|
|
import IndexedDBWorker from "../workers/indexeddb.worker.ts";
|
|
import { createClient, ICreateClientOpts } from "matrix-js-sdk/src/matrix";
|
|
import { IndexedDBCryptoStore } from "matrix-js-sdk/src/crypto/store/indexeddb-crypto-store";
|
|
import { WebStorageSessionStore } from "matrix-js-sdk/src/store/session/webstorage";
|
|
import { IndexedDBStore } from "matrix-js-sdk/src/store/indexeddb";
|
|
|
|
const localStorage = window.localStorage;
|
|
|
|
// just *accessing* indexedDB throws an exception in firefox with
|
|
// indexeddb disabled.
|
|
let indexedDB;
|
|
try {
|
|
indexedDB = window.indexedDB;
|
|
} catch (e) {}
|
|
|
|
/**
|
|
* Create a new matrix client, with the persistent stores set up appropriately
|
|
* (using localstorage/indexeddb, etc)
|
|
*
|
|
* @param {Object} opts options to pass to Matrix.createClient. This will be
|
|
* extended with `sessionStore` and `store` members.
|
|
*
|
|
* @returns {MatrixClient} the newly-created MatrixClient
|
|
*/
|
|
export default function createMatrixClient(opts: ICreateClientOpts) {
|
|
const storeOpts: Partial<ICreateClientOpts> = {
|
|
useAuthorizationHeader: true,
|
|
};
|
|
|
|
if (indexedDB && localStorage) {
|
|
storeOpts.store = new IndexedDBStore({
|
|
indexedDB: indexedDB,
|
|
dbName: "riot-web-sync",
|
|
localStorage: localStorage,
|
|
workerFactory: () => new IndexedDBWorker(),
|
|
});
|
|
}
|
|
|
|
if (localStorage) {
|
|
storeOpts.sessionStore = new WebStorageSessionStore(localStorage);
|
|
}
|
|
|
|
if (indexedDB) {
|
|
storeOpts.cryptoStore = new IndexedDBCryptoStore(
|
|
indexedDB, "matrix-js-sdk:crypto",
|
|
);
|
|
}
|
|
|
|
return createClient({
|
|
...storeOpts,
|
|
...opts,
|
|
});
|
|
}
|