Lzh on GitHub

精细控制 ref 及其响应性。

用法

refWithControl 使用 extendRef 提供两个额外的函数:getset,以便更好地控制何时追踪/触发响应性。

import { refWithControl } from '@vueuse/core'

const num = refWithControl(0)
const doubled = computed(() => num.value * 2)

// just like normal ref
num.value = 42
console.log(num.value) // 42
console.log(doubled.value) // 84

// set value without triggering the reactivity
num.set(30, false)
console.log(num.value) // 30
console.log(doubled.value) // 84 (doesn't update)

// get value without tracking the reactivity
watchEffect(() => {
  console.log(num.peek())
}) // 30

num.value = 50 // watch effect wouldn't be triggered since it collected nothing.
console.log(doubled.value) // 100 (updated again since it's a reactive set)

peek, lay, untrackedGet, silentSet

我们还提供了一些简写方法,用于在不追踪/触发响应式系统的情况下进行获取/设置。以下几行代码是等效的。

const foo = refWithControl('foo')
// getting
foo.get(false)
foo.untrackedGet()
foo.peek() // an alias for `untrackedGet`
// setting
foo.set('bar', false)
foo.silentSet('bar')
foo.lay('bar') // an alias for `silentSet`

配置

onBeforeChange()

onBeforeChange 选项让你能控制是否接受新值。例如:

const num = refWithControl(0, {
  onBeforeChange(value, oldValue) {
    // 禁止单次操作中超过 ±5 的改变
    if (Math.abs(value - oldValue) > 5)
      return false // 返回 `false` 以取消改变
  },
})

num.value += 1
console.log(num.value) // 1

num.value += 6
console.log(num.value) // 1 (改变已被取消)

onChanged()

onChanged 选项提供了与 Vue 的 watch 类似的功能,但与 watch 相比,它同步起来的开销更小。

const num = refWithControl(0, {
  onChanged(value, oldValue) {
    console.log(value)
  },
})

类型声明

export interface ControlledRefOptions<T> {
  /**
   * Callback function before the ref changing.
   *
   * Returning `false` to dismiss the change.
   */
  onBeforeChange?: (value: T, oldValue: T) => void | boolean
  /**
   * Callback function after the ref changed
   *
   * This happens synchronously, with less overhead compare to `watch`
   */
  onChanged?: (value: T, oldValue: T) => void
}
/**
 * Fine-grained controls over ref and its reactivity.
 */
export declare function refWithControl<T>(
  initial: T,
  options?: ControlledRefOptions<T>,
): ShallowUnwrapRef<{
  get: (tracking?: boolean) => T
  set: (value: T, triggering?: boolean) => void
  untrackedGet: () => T
  silentSet: (v: T) => void
  peek: () => T
  lay: (v: T) => void
}> &
  Ref<T, T>
/**
 * Alias for `refWithControl`
 */
export declare const controlledRef: typeof refWithControl