mirror of https://github.com/vuejs/core.git
179 lines
4.9 KiB
TypeScript
179 lines
4.9 KiB
TypeScript
import { type DebuggerOptions, ReactiveEffect } from './effect'
|
|
import { type Ref, trackRefValue, triggerRefValue } from './ref'
|
|
import { NOOP, hasChanged, isFunction } from '@vue/shared'
|
|
import { toRaw } from './reactive'
|
|
import type { Dep } from './dep'
|
|
import { DirtyLevels, ReactiveFlags } from './constants'
|
|
import { warn } from './warning'
|
|
|
|
declare const ComputedRefSymbol: unique symbol
|
|
|
|
export interface ComputedRef<T = any> extends WritableComputedRef<T> {
|
|
readonly value: T
|
|
[ComputedRefSymbol]: true
|
|
}
|
|
|
|
export interface WritableComputedRef<T> extends Ref<T> {
|
|
readonly effect: ReactiveEffect<T>
|
|
}
|
|
|
|
export type ComputedGetter<T> = (oldValue?: T) => T
|
|
export type ComputedSetter<T> = (newValue: T) => void
|
|
|
|
export interface WritableComputedOptions<T> {
|
|
get: ComputedGetter<T>
|
|
set: ComputedSetter<T>
|
|
}
|
|
|
|
export const COMPUTED_SIDE_EFFECT_WARN =
|
|
`Computed is still dirty after getter evaluation,` +
|
|
` likely because a computed is mutating its own dependency in its getter.` +
|
|
` State mutations in computed getters should be avoided. ` +
|
|
` Check the docs for more details: https://vuejs.org/guide/essentials/computed.html#getters-should-be-side-effect-free`
|
|
|
|
export class ComputedRefImpl<T> {
|
|
public dep?: Dep = undefined
|
|
|
|
private _value!: T
|
|
public readonly effect: ReactiveEffect<T>
|
|
|
|
public readonly __v_isRef = true
|
|
public readonly [ReactiveFlags.IS_READONLY]: boolean = false
|
|
|
|
public _cacheable: boolean
|
|
|
|
/**
|
|
* Dev only
|
|
*/
|
|
_warnRecursive?: boolean
|
|
|
|
constructor(
|
|
private getter: ComputedGetter<T>,
|
|
private readonly _setter: ComputedSetter<T>,
|
|
isReadonly: boolean,
|
|
isSSR: boolean,
|
|
) {
|
|
this.effect = new ReactiveEffect(
|
|
() => getter(this._value),
|
|
() =>
|
|
triggerRefValue(
|
|
this,
|
|
this.effect._dirtyLevel === DirtyLevels.MaybeDirty_ComputedSideEffect
|
|
? DirtyLevels.MaybeDirty_ComputedSideEffect
|
|
: DirtyLevels.MaybeDirty,
|
|
),
|
|
)
|
|
this.effect.computed = this
|
|
this.effect.active = this._cacheable = !isSSR
|
|
this[ReactiveFlags.IS_READONLY] = isReadonly
|
|
}
|
|
|
|
get value() {
|
|
// the computed ref may get wrapped by other proxies e.g. readonly() #3376
|
|
const self = toRaw(this)
|
|
if (
|
|
(!self._cacheable || self.effect.dirty) &&
|
|
hasChanged(self._value, (self._value = self.effect.run()!))
|
|
) {
|
|
triggerRefValue(self, DirtyLevels.Dirty)
|
|
}
|
|
trackRefValue(self)
|
|
if (
|
|
self.effect._dirtyLevel >=
|
|
DirtyLevels.MaybeDirty_ComputedSideEffect_Origin
|
|
) {
|
|
if (__DEV__ && (__TEST__ || this._warnRecursive)) {
|
|
warn(COMPUTED_SIDE_EFFECT_WARN, `\n\ngetter: `, this.getter)
|
|
}
|
|
triggerRefValue(self, DirtyLevels.MaybeDirty_ComputedSideEffect)
|
|
}
|
|
return self._value
|
|
}
|
|
|
|
set value(newValue: T) {
|
|
this._setter(newValue)
|
|
}
|
|
|
|
// #region polyfill _dirty for backward compatibility third party code for Vue <= 3.3.x
|
|
get _dirty() {
|
|
return this.effect.dirty
|
|
}
|
|
|
|
set _dirty(v) {
|
|
this.effect.dirty = v
|
|
}
|
|
// #endregion
|
|
}
|
|
|
|
/**
|
|
* Takes a getter function and returns a readonly reactive ref object for the
|
|
* returned value from the getter. It can also take an object with get and set
|
|
* functions to create a writable ref object.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* // Creating a readonly computed ref:
|
|
* const count = ref(1)
|
|
* const plusOne = computed(() => count.value + 1)
|
|
*
|
|
* console.log(plusOne.value) // 2
|
|
* plusOne.value++ // error
|
|
* ```
|
|
*
|
|
* ```js
|
|
* // Creating a writable computed ref:
|
|
* const count = ref(1)
|
|
* const plusOne = computed({
|
|
* get: () => count.value + 1,
|
|
* set: (val) => {
|
|
* count.value = val - 1
|
|
* }
|
|
* })
|
|
*
|
|
* plusOne.value = 1
|
|
* console.log(count.value) // 0
|
|
* ```
|
|
*
|
|
* @param getter - Function that produces the next value.
|
|
* @param debugOptions - For debugging. See {@link https://vuejs.org/guide/extras/reactivity-in-depth.html#computed-debugging}.
|
|
* @see {@link https://vuejs.org/api/reactivity-core.html#computed}
|
|
*/
|
|
export function computed<T>(
|
|
getter: ComputedGetter<T>,
|
|
debugOptions?: DebuggerOptions,
|
|
): ComputedRef<T>
|
|
export function computed<T>(
|
|
options: WritableComputedOptions<T>,
|
|
debugOptions?: DebuggerOptions,
|
|
): WritableComputedRef<T>
|
|
export function computed<T>(
|
|
getterOrOptions: ComputedGetter<T> | WritableComputedOptions<T>,
|
|
debugOptions?: DebuggerOptions,
|
|
isSSR = false,
|
|
) {
|
|
let getter: ComputedGetter<T>
|
|
let setter: ComputedSetter<T>
|
|
|
|
const onlyGetter = isFunction(getterOrOptions)
|
|
if (onlyGetter) {
|
|
getter = getterOrOptions
|
|
setter = __DEV__
|
|
? () => {
|
|
warn('Write operation failed: computed value is readonly')
|
|
}
|
|
: NOOP
|
|
} else {
|
|
getter = getterOrOptions.get
|
|
setter = getterOrOptions.set
|
|
}
|
|
|
|
const cRef = new ComputedRefImpl(getter, setter, onlyGetter || !setter, isSSR)
|
|
|
|
if (__DEV__ && debugOptions && !isSSR) {
|
|
cRef.effect.onTrack = debugOptions.onTrack
|
|
cRef.effect.onTrigger = debugOptions.onTrigger
|
|
}
|
|
|
|
return cRef as any
|
|
}
|