mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-24 20:14:53 +01:00
Add type annotations to Transaction
This commit is contained in:
parent
8c7e13f40f
commit
f390d21881
@ -17,6 +17,7 @@ limitations under the License.
|
|||||||
import {QueryTarget} from "./QueryTarget";
|
import {QueryTarget} from "./QueryTarget";
|
||||||
import {IDBRequestAttemptError} from "./error";
|
import {IDBRequestAttemptError} from "./error";
|
||||||
import {reqAsPromise} from "./utils"
|
import {reqAsPromise} from "./utils"
|
||||||
|
import {Transaction} from "./Transaction"
|
||||||
|
|
||||||
const LOG_REQUESTS = false;
|
const LOG_REQUESTS = false;
|
||||||
|
|
||||||
@ -128,9 +129,9 @@ class QueryTargetWrapper<T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class Store<T> extends QueryTarget<T> {
|
export class Store<T> extends QueryTarget<T> {
|
||||||
private _transaction: IDBTransaction
|
private _transaction: Transaction
|
||||||
|
|
||||||
constructor(idbStore: IDBObjectStore, transaction: IDBTransaction) {
|
constructor(idbStore: IDBObjectStore, transaction: Transaction) {
|
||||||
super(new QueryTargetWrapper<T>(idbStore));
|
super(new QueryTargetWrapper<T>(idbStore));
|
||||||
this._transaction = transaction;
|
this._transaction = transaction;
|
||||||
}
|
}
|
||||||
|
@ -36,14 +36,19 @@ import {OperationStore} from "./stores/OperationStore";
|
|||||||
import {AccountDataStore} from "./stores/AccountDataStore";
|
import {AccountDataStore} from "./stores/AccountDataStore";
|
||||||
|
|
||||||
export class Transaction {
|
export class Transaction {
|
||||||
constructor(txn, allowedStoreNames, IDBKeyRange) {
|
private _txn: IDBTransaction
|
||||||
|
private _allowedStoreNames: string[]
|
||||||
|
private _stores: { [storeName : string] : any }
|
||||||
|
|
||||||
|
constructor(txn: IDBTransaction, allowedStoreNames: string[], IDBKeyRange) {
|
||||||
this._txn = txn;
|
this._txn = txn;
|
||||||
this._allowedStoreNames = allowedStoreNames;
|
this._allowedStoreNames = allowedStoreNames;
|
||||||
this._stores = {};
|
this._stores = {};
|
||||||
|
// @ts-ignore
|
||||||
this.IDBKeyRange = IDBKeyRange;
|
this.IDBKeyRange = IDBKeyRange;
|
||||||
}
|
}
|
||||||
|
|
||||||
_idbStore(name) {
|
_idbStore(name: string): Store<any> {
|
||||||
if (!this._allowedStoreNames.includes(name)) {
|
if (!this._allowedStoreNames.includes(name)) {
|
||||||
// more specific error? this is a bug, so maybe not ...
|
// more specific error? this is a bug, so maybe not ...
|
||||||
throw new StorageError(`Invalid store for transaction: ${name}, only ${this._allowedStoreNames.join(", ")} are allowed.`);
|
throw new StorageError(`Invalid store for transaction: ${name}, only ${this._allowedStoreNames.join(", ")} are allowed.`);
|
||||||
@ -51,7 +56,7 @@ export class Transaction {
|
|||||||
return new Store(this._txn.objectStore(name), this);
|
return new Store(this._txn.objectStore(name), this);
|
||||||
}
|
}
|
||||||
|
|
||||||
_store(name, mapStore) {
|
_store<R>(name: string, mapStore: (idbStore: Store<any>) => R): R {
|
||||||
if (!this._stores[name]) {
|
if (!this._stores[name]) {
|
||||||
const idbStore = this._idbStore(name);
|
const idbStore = this._idbStore(name);
|
||||||
this._stores[name] = mapStore(idbStore);
|
this._stores[name] = mapStore(idbStore);
|
||||||
@ -59,75 +64,75 @@ export class Transaction {
|
|||||||
return this._stores[name];
|
return this._stores[name];
|
||||||
}
|
}
|
||||||
|
|
||||||
get session() {
|
get session(): SessionStore {
|
||||||
return this._store("session", idbStore => new SessionStore(idbStore));
|
return this._store("session", idbStore => new SessionStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get roomSummary() {
|
get roomSummary(): RoomSummaryStore {
|
||||||
return this._store("roomSummary", idbStore => new RoomSummaryStore(idbStore));
|
return this._store("roomSummary", idbStore => new RoomSummaryStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get archivedRoomSummary() {
|
get archivedRoomSummary(): RoomSummaryStore {
|
||||||
return this._store("archivedRoomSummary", idbStore => new RoomSummaryStore(idbStore));
|
return this._store("archivedRoomSummary", idbStore => new RoomSummaryStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get invites() {
|
get invites(): InviteStore {
|
||||||
return this._store("invites", idbStore => new InviteStore(idbStore));
|
return this._store("invites", idbStore => new InviteStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get timelineFragments() {
|
get timelineFragments(): TimelineFragmentStore {
|
||||||
return this._store("timelineFragments", idbStore => new TimelineFragmentStore(idbStore));
|
return this._store("timelineFragments", idbStore => new TimelineFragmentStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get timelineEvents() {
|
get timelineEvents(): TimelineEventStore {
|
||||||
return this._store("timelineEvents", idbStore => new TimelineEventStore(idbStore));
|
return this._store("timelineEvents", idbStore => new TimelineEventStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get timelineRelations() {
|
get timelineRelations(): TimelineRelationStore {
|
||||||
return this._store("timelineRelations", idbStore => new TimelineRelationStore(idbStore));
|
return this._store("timelineRelations", idbStore => new TimelineRelationStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get roomState() {
|
get roomState(): RoomStateStore {
|
||||||
return this._store("roomState", idbStore => new RoomStateStore(idbStore));
|
return this._store("roomState", idbStore => new RoomStateStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get roomMembers() {
|
get roomMembers(): RoomMemberStore {
|
||||||
return this._store("roomMembers", idbStore => new RoomMemberStore(idbStore));
|
return this._store("roomMembers", idbStore => new RoomMemberStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get pendingEvents() {
|
get pendingEvents(): PendingEventStore {
|
||||||
return this._store("pendingEvents", idbStore => new PendingEventStore(idbStore));
|
return this._store("pendingEvents", idbStore => new PendingEventStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get userIdentities() {
|
get userIdentities(): UserIdentityStore {
|
||||||
return this._store("userIdentities", idbStore => new UserIdentityStore(idbStore));
|
return this._store("userIdentities", idbStore => new UserIdentityStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get deviceIdentities() {
|
get deviceIdentities(): DeviceIdentityStore {
|
||||||
return this._store("deviceIdentities", idbStore => new DeviceIdentityStore(idbStore));
|
return this._store("deviceIdentities", idbStore => new DeviceIdentityStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get olmSessions() {
|
get olmSessions(): OlmSessionStore {
|
||||||
return this._store("olmSessions", idbStore => new OlmSessionStore(idbStore));
|
return this._store("olmSessions", idbStore => new OlmSessionStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get inboundGroupSessions() {
|
get inboundGroupSessions(): InboundGroupSessionStore {
|
||||||
return this._store("inboundGroupSessions", idbStore => new InboundGroupSessionStore(idbStore));
|
return this._store("inboundGroupSessions", idbStore => new InboundGroupSessionStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get outboundGroupSessions() {
|
get outboundGroupSessions(): OutboundGroupSessionStore {
|
||||||
return this._store("outboundGroupSessions", idbStore => new OutboundGroupSessionStore(idbStore));
|
return this._store("outboundGroupSessions", idbStore => new OutboundGroupSessionStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get groupSessionDecryptions() {
|
get groupSessionDecryptions(): GroupSessionDecryptionStore {
|
||||||
return this._store("groupSessionDecryptions", idbStore => new GroupSessionDecryptionStore(idbStore));
|
return this._store("groupSessionDecryptions", idbStore => new GroupSessionDecryptionStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get operations() {
|
get operations(): OperationStore {
|
||||||
return this._store("operations", idbStore => new OperationStore(idbStore));
|
return this._store("operations", idbStore => new OperationStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
get accountData() {
|
get accountData(): AccountDataStore {
|
||||||
return this._store("accountData", idbStore => new AccountDataStore(idbStore));
|
return this._store("accountData", idbStore => new AccountDataStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user