|
| 1 | +import { Computed } from '../computed.js'; |
| 2 | +import { nextTrackId } from '../effect.js'; |
| 3 | +import { Dependency, endTrack, link, shallowPropagate, startTrack, SubscriberFlags } from '../system.js'; |
| 4 | +import { asyncCheckDirty } from './asyncSystem.js'; |
| 5 | + |
| 6 | +export function asyncComputed<T>(getter: (cachedValue?: T) => AsyncGenerator<Dependency, T>): AsyncComputed<T> { |
| 7 | + return new AsyncComputed<T>(getter); |
| 8 | +} |
| 9 | + |
| 10 | +export class AsyncComputed<T = any> extends Computed { |
| 11 | + |
| 12 | + async get(): Promise<T> { |
| 13 | + const flags = this.flags; |
| 14 | + if (flags & SubscriberFlags.Dirty) { |
| 15 | + if (await this.update()) { |
| 16 | + const subs = this.subs; |
| 17 | + if (subs !== undefined) { |
| 18 | + shallowPropagate(subs); |
| 19 | + } |
| 20 | + } |
| 21 | + } else if (flags & SubscriberFlags.ToCheckDirty) { |
| 22 | + if (await asyncCheckDirty(this.deps!)) { |
| 23 | + if (await this.update()) { |
| 24 | + const subs = this.subs; |
| 25 | + if (subs !== undefined) { |
| 26 | + shallowPropagate(subs); |
| 27 | + } |
| 28 | + } |
| 29 | + } else { |
| 30 | + this.flags = flags & ~SubscriberFlags.ToCheckDirty; |
| 31 | + } |
| 32 | + } |
| 33 | + return this.currentValue!; |
| 34 | + } |
| 35 | + |
| 36 | + // @ts-expect-error |
| 37 | + async update(): Promise<boolean> { |
| 38 | + try { |
| 39 | + startTrack(this); |
| 40 | + const trackId = nextTrackId(); |
| 41 | + const oldValue = this.currentValue; |
| 42 | + const generator = this.getter(oldValue); |
| 43 | + let current = await generator.next(); |
| 44 | + while (!current.done) { |
| 45 | + const dep = current.value; |
| 46 | + if (dep.lastTrackedId !== trackId) { |
| 47 | + dep.lastTrackedId = trackId; |
| 48 | + link(dep, this); |
| 49 | + } |
| 50 | + current = await generator.next(); |
| 51 | + |
| 52 | + // if (this.flags & SubscriberFlags.Recursed) { |
| 53 | + // return await this.get() !== oldValue; |
| 54 | + // } |
| 55 | + } |
| 56 | + const newValue = await current.value; |
| 57 | + if (oldValue !== newValue) { |
| 58 | + this.currentValue = newValue; |
| 59 | + return true; |
| 60 | + } |
| 61 | + return false; |
| 62 | + } finally { |
| 63 | + endTrack(this); |
| 64 | + } |
| 65 | + } |
| 66 | +} |
0 commit comments