diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-08-14 04:16:12 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-08-14 04:16:12 +0200 |
commit | d5bba630a35fff72b11273fb5e62c2208f9e1f5b (patch) | |
tree | 3397a580d663161be1ba7c46df368ac10d566cdc /src/query.ts | |
parent | 419a05e801da688a1d0917a6bf16d468e6362a3d (diff) |
implement returning coins to user's account
Diffstat (limited to 'src/query.ts')
-rw-r--r-- | src/query.ts | 40 |
1 files changed, 24 insertions, 16 deletions
diff --git a/src/query.ts b/src/query.ts index 24db4de56..9a6162807 100644 --- a/src/query.ts +++ b/src/query.ts @@ -130,7 +130,11 @@ export interface QueryStream<T> { */ first(): QueryValue<T>; - then(onfulfill: any, onreject: any): any; + /** + * Run the query without returning a result. + * Useful for queries with side effects. + */ + run(): Promise<void>; } @@ -225,7 +229,7 @@ export const AbortTransaction = Symbol("abort_transaction"); * function. */ export function openPromise<T>(): any { - let resolve: ((value?: T | PromiseLike<T>) => void) | null = null; + let resolve: ((x?: any) => void) | null = null; let reject: ((reason?: any) => void) | null = null; const promise = new Promise<T>((res, rej) => { resolve = res; @@ -239,7 +243,7 @@ export function openPromise<T>(): any { } -abstract class QueryStreamBase<T> implements QueryStream<T>, PromiseLike<void> { +abstract class QueryStreamBase<T> implements QueryStream<T> { abstract subscribe(f: (isDone: boolean, value: any, tx: IDBTransaction) => void): void; @@ -250,11 +254,6 @@ abstract class QueryStreamBase<T> implements QueryStream<T>, PromiseLike<void> { return new FirstQueryValue(this); } - then<R>(onfulfilled: (value: void) => R | PromiseLike<R>, - onrejected: (reason: any) => R | PromiseLike<R>): PromiseLike<R> { - return this.root.then(onfulfilled, onrejected); - } - flatMap<S>(f: (x: T) => S[]): QueryStream<S> { return new QueryStreamFlatMap<T, S>(this, f); } @@ -279,8 +278,7 @@ abstract class QueryStreamBase<T> implements QueryStream<T>, PromiseLike<void> { keyFn: (obj: T) => I): QueryStream<JoinResult<T, S>> { this.root.addStoreAccess(store.name, false); return new QueryStreamKeyJoin<T, S>(this, store.name, keyFn); - } - + } filter(f: (x: any) => boolean): QueryStream<T> { return new QueryStreamFilter(this, f); } @@ -318,6 +316,21 @@ abstract class QueryStreamBase<T> implements QueryStream<T>, PromiseLike<void> { .then(() => this.root.finish()) .then(() => promise); } + + run(): Promise<void> { + const {resolve, promise} = openPromise(); + + this.subscribe((isDone, value) => { + if (isDone) { + resolve(); + return; + } + }); + + return Promise.resolve() + .then(() => this.root.finish()) + .then(() => promise); + } } type FilterFn = (e: any) => boolean; @@ -519,7 +532,7 @@ class IterQueryStream<T> extends QueryStreamBase<T> { /** * Root wrapper around an IndexedDB for queries with a fluent interface. */ -export class QueryRoot implements PromiseLike<void> { +export class QueryRoot { private work: Array<((t: IDBTransaction) => void)> = []; private stores = new Set(); private kickoffPromise: Promise<void>; @@ -537,11 +550,6 @@ export class QueryRoot implements PromiseLike<void> { constructor(public db: IDBDatabase) { } - then<R>(onfulfilled: (value: void) => R | PromiseLike<R>, - onrejected: (reason: any) => R | PromiseLike<R>): PromiseLike<R> { - return this.finish().then(onfulfilled, onrejected); - } - private checkFinished() { if (this.finished) { throw Error("Can't add work to query after it was started"); |