wip: restructure api + support watch multiple sources
This commit is contained in:
parent
d3fe492d7e
commit
07403c9aba
46
packages/runtime-core/src/apiState.ts
Normal file
46
packages/runtime-core/src/apiState.ts
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
export {
|
||||||
|
value,
|
||||||
|
isValue,
|
||||||
|
observable,
|
||||||
|
immutable,
|
||||||
|
isObservable,
|
||||||
|
isImmutable,
|
||||||
|
unwrap,
|
||||||
|
markImmutable,
|
||||||
|
markNonReactive,
|
||||||
|
effect,
|
||||||
|
// types
|
||||||
|
ReactiveEffect,
|
||||||
|
ReactiveEffectOptions,
|
||||||
|
DebuggerEvent,
|
||||||
|
OperationTypes,
|
||||||
|
Value,
|
||||||
|
ComputedValue,
|
||||||
|
UnwrapValue
|
||||||
|
} from '@vue/observer'
|
||||||
|
|
||||||
|
import {
|
||||||
|
computed as _computed,
|
||||||
|
ComputedValue,
|
||||||
|
ReactiveEffect
|
||||||
|
} from '@vue/observer'
|
||||||
|
|
||||||
|
import { currentInstance } from './component'
|
||||||
|
|
||||||
|
// record effects created during a component's setup() so that they can be
|
||||||
|
// stopped when the component unmounts
|
||||||
|
export function recordEffect(effect: ReactiveEffect) {
|
||||||
|
if (currentInstance) {
|
||||||
|
;(currentInstance.effects || (currentInstance.effects = [])).push(effect)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// a wrapped version of raw computed to tear it down at component unmount
|
||||||
|
export function computed<T, C = null>(
|
||||||
|
getter: () => T,
|
||||||
|
setter?: (v: T) => void
|
||||||
|
): ComputedValue<T> {
|
||||||
|
const c = _computed(getter, setter)
|
||||||
|
recordEffect(c.effect)
|
||||||
|
return c
|
||||||
|
}
|
@ -1,55 +1,13 @@
|
|||||||
export {
|
|
||||||
value,
|
|
||||||
isValue,
|
|
||||||
observable,
|
|
||||||
immutable,
|
|
||||||
isObservable,
|
|
||||||
isImmutable,
|
|
||||||
unwrap,
|
|
||||||
markImmutable,
|
|
||||||
markNonReactive,
|
|
||||||
effect,
|
|
||||||
// types
|
|
||||||
ReactiveEffect,
|
|
||||||
ReactiveEffectOptions,
|
|
||||||
DebuggerEvent,
|
|
||||||
OperationTypes,
|
|
||||||
Value,
|
|
||||||
ComputedValue,
|
|
||||||
UnwrapValue
|
|
||||||
} from '@vue/observer'
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
effect,
|
effect,
|
||||||
stop,
|
stop,
|
||||||
computed as _computed,
|
|
||||||
isValue,
|
isValue,
|
||||||
Value,
|
Value,
|
||||||
ComputedValue,
|
|
||||||
ReactiveEffect,
|
|
||||||
ReactiveEffectOptions
|
ReactiveEffectOptions
|
||||||
} from '@vue/observer'
|
} from '@vue/observer'
|
||||||
import { currentInstance } from './component'
|
|
||||||
import { queueJob, queuePostFlushCb } from './scheduler'
|
import { queueJob, queuePostFlushCb } from './scheduler'
|
||||||
import { EMPTY_OBJ, isObject, isArray } from '@vue/shared'
|
import { EMPTY_OBJ, isObject, isArray } from '@vue/shared'
|
||||||
|
import { recordEffect } from './apiState'
|
||||||
// record effects created during a component's setup() so that they can be
|
|
||||||
// stopped when the component unmounts
|
|
||||||
function recordEffect(effect: ReactiveEffect) {
|
|
||||||
if (currentInstance) {
|
|
||||||
;(currentInstance.effects || (currentInstance.effects = [])).push(effect)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// a wrapped version of raw computed to tear it down at component unmount
|
|
||||||
export function computed<T, C = null>(
|
|
||||||
getter: () => T,
|
|
||||||
setter?: (v: T) => void
|
|
||||||
): ComputedValue<T> {
|
|
||||||
const c = _computed(getter, setter)
|
|
||||||
recordEffect(c.effect)
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface WatchOptions {
|
export interface WatchOptions {
|
||||||
lazy?: boolean
|
lazy?: boolean
|
||||||
@ -59,10 +17,12 @@ export interface WatchOptions {
|
|||||||
onTrigger?: ReactiveEffectOptions['onTrigger']
|
onTrigger?: ReactiveEffectOptions['onTrigger']
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type WatcherSource<T> = Value<T> | (() => T)
|
||||||
|
|
||||||
const invoke = (fn: Function) => fn()
|
const invoke = (fn: Function) => fn()
|
||||||
|
|
||||||
export function watch<T>(
|
export function watch<T>(
|
||||||
source: Value<T> | (() => T),
|
source: WatcherSource<T> | WatcherSource<T>[],
|
||||||
cb?: <V extends T>(
|
cb?: <V extends T>(
|
||||||
newValue: V,
|
newValue: V,
|
||||||
oldValue: V,
|
oldValue: V,
|
||||||
@ -73,7 +33,11 @@ export function watch<T>(
|
|||||||
const scheduler =
|
const scheduler =
|
||||||
flush === 'sync' ? invoke : flush === 'pre' ? queueJob : queuePostFlushCb
|
flush === 'sync' ? invoke : flush === 'pre' ? queueJob : queuePostFlushCb
|
||||||
|
|
||||||
const baseGetter = isValue(source) ? () => source.value : source
|
const baseGetter = isArray(source)
|
||||||
|
? () => source.map(s => (isValue(s) ? s.value : s()))
|
||||||
|
: isValue(source)
|
||||||
|
? () => source.value
|
||||||
|
: source
|
||||||
const getter = deep ? () => traverse(baseGetter()) : baseGetter
|
const getter = deep ? () => traverse(baseGetter()) : baseGetter
|
||||||
|
|
||||||
let cleanup: any
|
let cleanup: any
|
@ -15,7 +15,8 @@ export { createRenderer, RendererOptions } from './createRenderer'
|
|||||||
export { Slot, Slots } from './componentSlots'
|
export { Slot, Slots } from './componentSlots'
|
||||||
export { PropType, ComponentPropsOptions } from './componentProps'
|
export { PropType, ComponentPropsOptions } from './componentProps'
|
||||||
|
|
||||||
export * from './reactivity'
|
export * from './apiState'
|
||||||
export * from './componentLifecycle'
|
export * from './apiWatch'
|
||||||
|
export * from './apiLifecycle'
|
||||||
export * from './patchFlags'
|
export * from './patchFlags'
|
||||||
export * from './typeFlags'
|
export * from './typeFlags'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user