mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-24 20:14:53 +01:00
5579c018d1
Add initial stab at annotating common Add missing return types and semicolons
76 lines
1.9 KiB
TypeScript
76 lines
1.9 KiB
TypeScript
/*
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
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.
|
|
*/
|
|
|
|
export const STORE_NAMES: Readonly<string[]> = Object.freeze([
|
|
"session",
|
|
"roomState",
|
|
"roomSummary",
|
|
"archivedRoomSummary",
|
|
"invites",
|
|
"roomMembers",
|
|
"timelineEvents",
|
|
"timelineRelations",
|
|
"timelineFragments",
|
|
"pendingEvents",
|
|
"userIdentities",
|
|
"deviceIdentities",
|
|
"olmSessions",
|
|
"inboundGroupSessions",
|
|
"outboundGroupSessions",
|
|
"groupSessionDecryptions",
|
|
"operations",
|
|
"accountData",
|
|
]);
|
|
|
|
export const STORE_MAP: Readonly<{ [name : string]: string }> = Object.freeze(STORE_NAMES.reduce((nameMap, name) => {
|
|
nameMap[name] = name;
|
|
return nameMap;
|
|
}, {}));
|
|
|
|
export class StorageError extends Error {
|
|
errcode?: string;
|
|
cause?: Error;
|
|
|
|
constructor(message: string, cause?: Error) {
|
|
super(message);
|
|
if (cause) {
|
|
this.errcode = cause.name;
|
|
}
|
|
this.cause = cause;
|
|
}
|
|
|
|
get name(): string {
|
|
return "StorageError";
|
|
}
|
|
}
|
|
|
|
export const KeyLimits = {
|
|
get minStorageKey(): number {
|
|
// for indexeddb, we use unsigned 32 bit integers as keys
|
|
return 0;
|
|
},
|
|
|
|
get middleStorageKey(): number {
|
|
// for indexeddb, we use unsigned 32 bit integers as keys
|
|
return 0x7FFFFFFF;
|
|
},
|
|
|
|
get maxStorageKey(): number {
|
|
// for indexeddb, we use unsigned 32 bit integers as keys
|
|
return 0xFFFFFFFF;
|
|
}
|
|
}
|