2021-07-09 05:09:23 +08:00
|
|
|
import { DebuggerOptions, ReactiveEffect } from './effect'
|
2021-06-24 05:22:21 +08:00
|
|
|
import { Ref, trackRefValue, triggerRefValue } from './ref'
|
2019-10-10 00:22:08 +08:00
|
|
|
import { isFunction, NOOP } from '@vue/shared'
|
2020-08-22 01:47:41 +08:00
|
|
|
import { ReactiveFlags, toRaw } from './reactive'
|
2021-07-08 02:37:28 +08:00
|
|
|
import { Dep } from './dep'
|
2018-09-19 23:35:38 +08:00
|
|
|
|
2021-11-03 03:19:39 +08:00
|
|
|
declare const ComputedRefSymbol: unique symbol
|
2021-09-05 04:42:39 +08:00
|
|
|
|
2019-11-02 10:54:01 +08:00
|
|
|
export interface ComputedRef<T = any> extends WritableComputedRef<T> {
|
2020-02-26 08:44:06 +08:00
|
|
|
readonly value: T
|
2021-11-03 03:19:39 +08:00
|
|
|
[ComputedRefSymbol]: true
|
2018-09-19 23:35:38 +08:00
|
|
|
}
|
|
|
|
|
2019-10-05 22:10:37 +08:00
|
|
|
export interface WritableComputedRef<T> extends Ref<T> {
|
2019-10-14 23:02:49 +08:00
|
|
|
readonly effect: ReactiveEffect<T>
|
2019-09-06 06:32:19 +08:00
|
|
|
}
|
|
|
|
|
2021-08-02 21:18:35 +08:00
|
|
|
export type ComputedGetter<T> = (...args: any[]) => T
|
2019-10-22 01:57:20 +08:00
|
|
|
export type ComputedSetter<T> = (v: T) => void
|
|
|
|
|
2019-09-06 06:32:19 +08:00
|
|
|
export interface WritableComputedOptions<T> {
|
2019-10-22 01:57:20 +08:00
|
|
|
get: ComputedGetter<T>
|
|
|
|
set: ComputedSetter<T>
|
2019-08-20 21:45:28 +08:00
|
|
|
}
|
|
|
|
|
2020-08-22 01:47:41 +08:00
|
|
|
class ComputedRefImpl<T> {
|
2021-07-08 02:13:23 +08:00
|
|
|
public dep?: Dep = undefined
|
2021-06-24 05:22:21 +08:00
|
|
|
|
2020-08-22 01:47:41 +08:00
|
|
|
private _value!: T
|
|
|
|
private _dirty = true
|
|
|
|
public readonly effect: ReactiveEffect<T>
|
|
|
|
|
2021-07-20 06:24:18 +08:00
|
|
|
public readonly __v_isRef = true
|
2020-08-22 01:47:41 +08:00
|
|
|
public readonly [ReactiveFlags.IS_READONLY]: boolean
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
getter: ComputedGetter<T>,
|
|
|
|
private readonly _setter: ComputedSetter<T>,
|
|
|
|
isReadonly: boolean
|
|
|
|
) {
|
2021-07-21 04:20:38 +08:00
|
|
|
this.effect = new ReactiveEffect(getter, () => {
|
2021-07-09 01:41:38 +08:00
|
|
|
if (!this._dirty) {
|
|
|
|
this._dirty = true
|
2021-07-21 04:20:38 +08:00
|
|
|
triggerRefValue(this)
|
2021-07-09 01:41:38 +08:00
|
|
|
}
|
2020-08-22 01:47:41 +08:00
|
|
|
})
|
|
|
|
this[ReactiveFlags.IS_READONLY] = isReadonly
|
|
|
|
}
|
|
|
|
|
|
|
|
get value() {
|
2021-03-25 23:23:26 +08:00
|
|
|
// the computed ref may get wrapped by other proxies e.g. readonly() #3376
|
2021-07-21 04:20:38 +08:00
|
|
|
const self = toRaw(this)
|
|
|
|
trackRefValue(self)
|
|
|
|
if (self._dirty) {
|
|
|
|
self._dirty = false
|
|
|
|
self._value = self.effect.run()!
|
|
|
|
}
|
|
|
|
return self._value
|
2020-08-22 01:47:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
set value(newValue: T) {
|
|
|
|
this._setter(newValue)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-06 12:35:49 +08:00
|
|
|
export function computed<T>(
|
2021-07-09 05:09:23 +08:00
|
|
|
getter: ComputedGetter<T>,
|
|
|
|
debugOptions?: DebuggerOptions
|
|
|
|
): ComputedRef<T>
|
|
|
|
export function computed<T>(
|
|
|
|
options: WritableComputedOptions<T>,
|
|
|
|
debugOptions?: DebuggerOptions
|
2019-09-06 06:32:19 +08:00
|
|
|
): WritableComputedRef<T>
|
|
|
|
export function computed<T>(
|
2021-07-09 05:09:23 +08:00
|
|
|
getterOrOptions: ComputedGetter<T> | WritableComputedOptions<T>,
|
|
|
|
debugOptions?: DebuggerOptions
|
2019-10-22 23:26:48 +08:00
|
|
|
) {
|
2019-10-24 23:37:52 +08:00
|
|
|
let getter: ComputedGetter<T>
|
|
|
|
let setter: ComputedSetter<T>
|
|
|
|
|
2021-09-22 01:03:09 +08:00
|
|
|
const onlyGetter = isFunction(getterOrOptions)
|
|
|
|
if (onlyGetter) {
|
2019-10-24 23:37:52 +08:00
|
|
|
getter = getterOrOptions
|
|
|
|
setter = __DEV__
|
2019-10-10 00:22:08 +08:00
|
|
|
? () => {
|
2019-10-10 00:20:53 +08:00
|
|
|
console.warn('Write operation failed: computed value is readonly')
|
|
|
|
}
|
2019-10-10 00:22:08 +08:00
|
|
|
: NOOP
|
2019-10-24 23:37:52 +08:00
|
|
|
} else {
|
|
|
|
getter = getterOrOptions.get
|
|
|
|
setter = getterOrOptions.set
|
|
|
|
}
|
2019-08-20 21:45:28 +08:00
|
|
|
|
2021-09-22 01:03:09 +08:00
|
|
|
const cRef = new ComputedRefImpl(getter, setter, onlyGetter || !setter)
|
2021-07-09 05:09:23 +08:00
|
|
|
|
|
|
|
if (__DEV__ && debugOptions) {
|
|
|
|
cRef.effect.onTrack = debugOptions.onTrack
|
|
|
|
cRef.effect.onTrigger = debugOptions.onTrigger
|
|
|
|
}
|
|
|
|
|
|
|
|
return cRef as any
|
2018-09-19 23:35:38 +08:00
|
|
|
}
|