跳到主要内容

指南

以下是 VueUse 函数的指南。您也可以将它们作为编写自己的可组合函数或应用程序的参考。

您还可以找到这些设计决策的一些原因,以及 Anthony Fu 关于 VueUse 的演讲中有关编写可组合函数的一些技巧。

通用

  • "vue" 导入所有 Vue API
  • 尽可能使用 ref 而不是 reactive
  • 尽可能使用选项对象作为参数,以便将来扩展时更灵活。
  • 尽可能优先使用 shallowRef 而不是 ref
  • 在深度响应式的情况下,优先使用明确命名的 deepRef 而不是 ref
  • 使用 configurableWindow (等) 时,当使用 window 等全局变量时,要灵活处理多窗口、测试模拟和 SSR。
  • 当涉及尚未被浏览器广泛实现的 Web API 时,也输出 isSupported 标志
  • 在内部使用 watchwatchEffect 时,尽可能使 immediateflush 选项可配置
  • 使用 tryOnScopeDispose 优雅地清除副作用
  • 避免使用控制台日志
  • 当函数是异步时,返回一个 PromiseLike

另请阅读: 最佳实践

浅层引用 (ShallowRef)

当封装大量数据时,使用 shallowRef 而不是 ref

ts
export function useFetch<T>(url: MaybeRefOrGetter<string>) {
  // use `shallowRef` to prevent deep reactivity
  const data = shallowRef<T | undefined>()
  const error = shallowRef<Error | undefined>()

  fetch(toValue(url))
    .then(r => r.json())
    .then(r => data.value = r)
    .catch(e => error.value = e)

  /* ... */
}

可配置的全局变量 (Configurable Globals)

当使用 windowdocument 等全局变量时,在选项接口中支持 configurableWindowconfigurableDocument,以便在多窗口、测试模拟和 SSR 等场景下使函数更灵活。

了解更多关于实现: _configurable.ts

ts
import type { ConfigurableWindow } from '../_configurable'
import { defaultWindow } from '../_configurable'
import { useEventListener } from '../useEventListener'

export function useActiveElement<T extends HTMLElement>(
  options: ConfigurableWindow = {},
) {
  const {
    // defaultWindow = isClient ? window : undefined
    window = defaultWindow,
  } = options

  let el: T

  // skip when in Node.js environment (SSR)
  if (window) {
    useEventListener(window, 'blur', () => {
      el = window?.document.activeElement
    }, true)
  }

  /* ... */
}

使用示例

ts
// in iframe and bind to the parent window
useActiveElement({ window: window.parent })

监听选项 (Watch Options)

当在内部使用 watchwatchEffect 时,也要尽可能使 immediateflush 选项可配置。例如 watchDebounced

ts
import type { WatchOptions } from 'vue'

// extend the watch options
export interface WatchDebouncedOptions extends WatchOptions {
  debounce?: number
}

export function watchDebounced(
  source: any,
  cb: any,
  options: WatchDebouncedOptions = {},
): WatchHandle {
  return watch(
    source,
    () => { /* ... */ },
    options, // pass watch options
  )
}

控制 (Controls)

我们使用 controls 选项,允许用户在简单用法中使用单返回函数,同时在需要时能够拥有更多的控制和灵活性。阅读更多: #362

何时提供 controls 选项

ts
// common usage
const timestamp = useTimestamp()

// more controls for flexibility
const { timestamp, pause, resume } = useTimestamp({ controls: true })

请参阅 useTimestamp 的源代码,了解正确的 TypeScript 支持的实现。

何时 提供 controls 选项

ts
const { pause, resume } = useRafFn(() => {})

isSupported 标志

当涉及尚未被浏览器广泛实现的 Web API 时,也输出 isSupported 标志。

例如 useShare

ts
export function useShare(
  shareOptions: MaybeRef<ShareOptions> = {},
  options: ConfigurableNavigator = {},
) {
  const { navigator = defaultNavigator } = options
  const isSupported = useSupported(() => navigator && 'canShare' in navigator)

  const share = async (overrideOptions) => {
    if (isSupported.value) {
      /* ...implementation */
    }
  }

  return {
    isSupported,
    share,
  }
}

异步可组合项 (Asynchronous Composables)

当一个可组合项是异步的,例如 useFetch,最好从可组合项返回一个 PromiseLike 对象,这样用户就可以等待函数。这在 Vue 的 <Suspense> API 的情况下特别有用。

  • 使用 ref 来确定函数何时应该解决,例如 isFinished
  • 将返回状态存储在一个变量中,因为它必须返回两次,一次在返回中,一次在 Promise 中。
  • 返回类型应该是返回类型和 PromiseLike 之间的交集,例如 UseFetchReturn & PromiseLike<UseFetchReturn>
ts
export function useFetch<T>(url: MaybeRefOrGetter<string>): UseFetchReturn<T> & PromiseLike<UseFetchReturn<T>> {
  const data = shallowRef<T | undefined>()
  const error = shallowRef<Error | undefined>()
  const isFinished = ref(false)

  fetch(toValue(url))
    .then(r => r.json())
    .then(r => data.value = r)
    .catch(e => error.value = e)
    .finally(() => isFinished.value = true)

  // Store the return state in a variable
  const state: UseFetchReturn<T> = {
    data,
    error,
    isFinished,
  }

  return {
    ...state,
    // Adding `then` to an object allows it to be awaited.
    then(onFulfilled, onRejected) {
      return new Promise<UseFetchReturn<T>>((resolve, reject) => {
        until(isFinished)
          .toBeTruthy()
          .then(() => resolve(state))
          .then(() => reject(state))
      }).then(onFulfilled, onRejected)
    },
  }
}

无渲染组件 (Renderless Components)

  • 使用渲染函数而不是 Vue SFC
  • 将 props 包装在 reactive 中,以便轻松地将它们作为 props 传递给 slot
  • 优先使用函数选项作为 props 类型,而不是自己重新创建它们
  • 仅当函数需要绑定目标时才将 slot 包装在 HTML 元素中
ts
import type { MouseOptions } from '@vueuse/core'
import { useMouse } from '@vueuse/core'
import { defineComponent, reactive } from 'vue'

export const UseMouse = defineComponent<MouseOptions>({
  name: 'UseMouse',
  props: ['touch', 'resetOnTouchEnds', 'initialValue'] as unknown as undefined,
  setup(props, { slots }) {
    const data = reactive(useMouse(props))

    return () => {
      if (slots.default)
        return slots.default(data)
    }
  },
})

有时一个函数可能有多个参数,在这种情况下,您可能需要创建一个新接口来将所有接口合并到组件 props 的单个接口中。

ts
import type { TimeAgoOptions } from '@vueuse/core'
import { useTimeAgo } from '@vueuse/core'

interface UseTimeAgoComponentOptions extends Omit<TimeAgoOptions<true>, 'controls'> {
  time: MaybeRef<Date | number | string>
}

export const UseTimeAgo = defineComponent<UseTimeAgoComponentOptions>({ /* ... */ })

根据 MIT 许可证发布。