vue3-yuanma/packages/runtime-core/src/apiWatch.ts

215 lines
5.3 KiB
TypeScript
Raw Normal View History

2019-05-29 23:44:59 +08:00
import {
effect,
stop,
isRef,
Ref,
2019-05-29 23:44:59 +08:00
ReactiveEffectOptions
} from '@vue/reactivity'
2019-05-29 23:44:59 +08:00
import { queueJob, queuePostFlushCb } from './scheduler'
import { EMPTY_OBJ, isObject, isArray, isFunction } from '@vue/shared'
2019-08-20 21:38:00 +08:00
import { recordEffect } from './apiReactivity'
2019-09-01 04:36:36 +08:00
import { currentInstance } from './component'
import {
2019-08-31 03:15:23 +08:00
ErrorTypes,
callWithErrorHandling,
callWithAsyncErrorHandling
} from './errorHandling'
2019-05-29 23:44:59 +08:00
export interface WatchOptions {
lazy?: boolean
flush?: 'pre' | 'post' | 'sync'
deep?: boolean
onTrack?: ReactiveEffectOptions['onTrack']
onTrigger?: ReactiveEffectOptions['onTrigger']
}
2019-08-19 10:49:08 +08:00
type StopHandle = () => void
type WatcherSource<T = any> = Ref<T> | (() => T)
type MapSources<T> = {
[K in keyof T]: T[K] extends WatcherSource<infer V> ? V : never
}
type CleanupRegistrator = (invalidate: () => void) => void
type SimpleEffect = (onCleanup: CleanupRegistrator) => void
2019-05-29 23:44:59 +08:00
const invoke = (fn: Function) => fn()
2019-08-19 10:49:08 +08:00
export function watch(effect: SimpleEffect, options?: WatchOptions): StopHandle
2019-05-29 23:44:59 +08:00
export function watch<T>(
2019-08-19 10:49:08 +08:00
source: WatcherSource<T>,
cb: (newValue: T, oldValue: T, onCleanup: CleanupRegistrator) => any,
options?: WatchOptions
): StopHandle
export function watch<T extends WatcherSource<unknown>[]>(
sources: T,
cb: (
newValues: MapSources<T>,
oldValues: MapSources<T>,
onCleanup: CleanupRegistrator
) => any,
options?: WatchOptions
): StopHandle
// implementation
export function watch(
effectOrSource:
| WatcherSource<unknown>
| WatcherSource<unknown>[]
| SimpleEffect,
effectOrOptions?:
| ((value: any, oldValue: any, onCleanup: CleanupRegistrator) => any)
| WatchOptions,
options?: WatchOptions
): StopHandle {
if (isFunction(effectOrOptions)) {
2019-08-19 10:49:08 +08:00
// effect callback as 2nd argument - this is a source watcher
return doWatch(effectOrSource, effectOrOptions, options)
} else {
// 2nd argument is either missing or an options object
// - this is a simple effect watcher
return doWatch(effectOrSource, null, effectOrOptions)
}
}
function doWatch(
source: WatcherSource | WatcherSource[] | SimpleEffect,
cb:
| ((newValue: any, oldValue: any, onCleanup: CleanupRegistrator) => any)
| null,
{ lazy, deep, flush, onTrack, onTrigger }: WatchOptions = EMPTY_OBJ
): StopHandle {
2019-09-01 04:36:36 +08:00
const instance = currentInstance
2019-05-29 23:44:59 +08:00
let getter: Function
if (isArray(source)) {
getter = () =>
source.map(
s =>
isRef(s)
? s.value
2019-08-31 03:15:23 +08:00
: callWithErrorHandling(s, instance, ErrorTypes.WATCH_GETTER)
)
} else if (isRef(source)) {
getter = () => source.value
} else if (cb) {
// getter with cb
getter = () =>
2019-08-31 03:15:23 +08:00
callWithErrorHandling(source, instance, ErrorTypes.WATCH_GETTER)
} else {
// no cb -> simple effect
getter = () => {
if (cleanup) {
cleanup()
}
return callWithErrorHandling(
source,
instance,
2019-08-31 03:15:23 +08:00
ErrorTypes.WATCH_CALLBACK,
[registerCleanup]
)
}
}
if (deep) {
const baseGetter = getter
getter = () => traverse(baseGetter())
}
let cleanup: Function
2019-08-19 10:49:08 +08:00
const registerCleanup: CleanupRegistrator = (fn: () => void) => {
2019-06-06 15:19:04 +08:00
// TODO wrap the cleanup fn for error handling
cleanup = runner.onStop = () => {
2019-08-31 03:15:23 +08:00
callWithErrorHandling(fn, instance, ErrorTypes.WATCH_CLEANUP)
}
2019-06-06 15:19:04 +08:00
}
2019-08-27 10:47:38 +08:00
let oldValue = isArray(source) ? [] : undefined
2019-05-29 23:44:59 +08:00
const applyCb = cb
? () => {
const newValue = runner()
2019-06-06 15:19:04 +08:00
if (deep || newValue !== oldValue) {
// cleanup before running cb again
if (cleanup) {
cleanup()
2019-05-29 23:44:59 +08:00
}
2019-08-31 03:15:23 +08:00
callWithAsyncErrorHandling(cb, instance, ErrorTypes.WATCH_CALLBACK, [
newValue,
oldValue,
registerCleanup
])
2019-05-29 23:44:59 +08:00
oldValue = newValue
}
}
: void 0
2019-08-20 02:44:52 +08:00
const scheduler =
2019-08-27 23:35:22 +08:00
flush === 'sync'
? invoke
: flush === 'pre'
? (job: () => void) => {
if (!instance || instance.vnode.el != null) {
queueJob(job)
} else {
// with 'pre' option, the first call must happen before
// the component is mounted so it is called synchronously.
job()
}
}
: queuePostFlushCb
2019-08-20 02:44:52 +08:00
2019-05-29 23:44:59 +08:00
const runner = effect(getter, {
lazy: true,
// so it runs before component update effects in pre flush mode
computed: true,
2019-06-06 15:19:04 +08:00
onTrack,
onTrigger,
2019-08-20 02:44:52 +08:00
scheduler: applyCb ? () => scheduler(applyCb) : scheduler
2019-05-29 23:44:59 +08:00
})
2019-06-06 15:19:04 +08:00
if (!lazy) {
2019-08-20 02:44:52 +08:00
if (applyCb) {
scheduler(applyCb)
} else {
scheduler(runner)
}
2019-05-29 23:44:59 +08:00
} else {
oldValue = runner()
}
recordEffect(runner)
return () => {
stop(runner)
}
}
function traverse(value: any, seen: Set<any> = new Set()) {
if (!isObject(value) || seen.has(value)) {
return
}
seen.add(value)
if (isArray(value)) {
for (let i = 0; i < value.length; i++) {
traverse(value[i], seen)
}
2019-08-28 03:01:01 +08:00
} else if (value instanceof Map) {
;(value as any).forEach((v: any, key: any) => {
// to register mutation dep for existing keys
traverse(value.get(key), seen)
})
} else if (value instanceof Set) {
2019-05-29 23:44:59 +08:00
;(value as any).forEach((v: any) => {
traverse(v, seen)
})
} else {
for (const key in value) {
traverse(value[key], seen)
}
}
return value
}