Skip to content

Commit 8a023fe

Browse files
Gianthard-cyhantfudelaneyb
authoredJul 17, 2024··
fix(until): cleanup at next tick to avoid memory leak (#4039)
Co-authored-by: Anthony Fu <github@antfu.me> Co-authored-by: delaneyb <delaneyb@users.noreply.github.com>
1 parent 06c6f37 commit 8a023fe

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed
 

‎packages/shared/until/index.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { WatchOptions, WatchSource } from 'vue-demi'
2-
import { isRef, watch } from 'vue-demi'
2+
import { isRef, nextTick, watch } from 'vue-demi'
33
import { toValue } from '../toValue'
44
import type { ElementOf, MaybeRefOrGetter, ShallowUnwrapRef } from '../utils'
55
import { promiseTimeout } from '../utils'
@@ -76,7 +76,10 @@ function createUntil<T>(r: any, isNot = false) {
7676
r,
7777
(v) => {
7878
if (condition(v) !== isNot) {
79-
stop?.()
79+
if (stop)
80+
stop()
81+
else
82+
nextTick(() => stop?.())
8083
resolve(v)
8184
}
8285
},
@@ -111,7 +114,10 @@ function createUntil<T>(r: any, isNot = false) {
111114
[r, value],
112115
([v1, v2]) => {
113116
if (isNot !== (v1 === v2)) {
114-
stop?.()
117+
if (stop)
118+
stop()
119+
else
120+
nextTick(() => stop?.())
115121
resolve(v1)
116122
}
117123
},

0 commit comments

Comments
 (0)
Please sign in to comment.