91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

until封裝watch常用邏輯簡化代碼怎么寫

發布時間:2022-07-12 09:55:59 來源:億速云 閱讀:142 作者:iii 欄目:開發技術

這篇文章主要介紹“until封裝watch常用邏輯簡化代碼怎么寫”,在日常操作中,相信很多人在until封裝watch常用邏輯簡化代碼怎么寫問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”until封裝watch常用邏輯簡化代碼怎么寫”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

1.示例

結合文檔的介紹,筆者寫了如下的demo代碼:

<script setup lang="ts">
import { until , invoke } from '@vueuse/core'
import {ref} from 'vue'
const source = ref(0)
invoke(async () => {
  await until(source).toBe(4)
  console.log('滿足條件了')
}) 
const clickedFn = () => {
  source.value ++
}
</script>
<template>
 <div>{{source}}</div>
  <button @click="clickedFn">
    點擊按鈕
  </button>
</template>

如上代碼所示,規定了當source的值為4的時候觸發執行watch回調函數。這里使用到了invoke方法,我們之前接觸過,源碼如下

export function invoke<T>(fn: () => T): T {
  return fn()
}

給定參數fn為一個函數,invoke返回函數的執行結果。代碼運行效果如下圖所示:

until封裝watch常用邏輯簡化代碼怎么寫

當點擊次數達到4次時,打印了相應的信息。

2.源碼

until代碼較多,先看兩張預覽圖,了解一下其大概實現:

until封裝watch常用邏輯簡化代碼怎么寫

until封裝watch常用邏輯簡化代碼怎么寫

通過以上兩張圖片我們看到until內部定義了很多的用于判斷條件是否滿足的方法,最后返回的instance也是包含這些方法的對象。下面我們對這些方法逐個分析。

2.1 toMatch

function toMatch(
    condition: (v: any) => boolean,
    { flush = 'sync', deep = false, timeout, throwOnTimeout }: UntilToMatchOptions = {},
  ): Promise<T> {
    let stop: Function | null = null
    const watcher = new Promise<T>((resolve) => {
      stop = watch(
        r,
        (v) => {
          if (condition(v) !== isNot) {
            stop?.()
            resolve(v)
          }
        },
        {
          flush,
          deep,
          immediate: true,
        },
      )
    })
    const promises = [watcher]
    if (timeout != null) {
      promises.push(
        promiseTimeout(timeout, throwOnTimeout)
          .then(() => unref(r))
          .finally(() => stop?.()),
      )
    }
    return Promise.race(promises)
  }

在promise構造函數的參數函數中調用watch API來監聽數據源r 。當數據源r的新值代入到條件condition中,使得condition為true時則調用stop停止監聽數據源,并將promise狀態變為成功。

promise放入promises數組中,如果用戶傳了timeout選項則promises放入調用promiseTimeout返回的promise實例。最后返回的是Promise.race的結果。看一下promiseTimeout的代碼:

export function promiseTimeout(
  ms: number,
  throwOnTimeout = false,
  reason = 'Timeout',
): Promise<void> {
  return new Promise((resolve, reject) => {
    if (throwOnTimeout)
      setTimeout(() => reject(reason), ms)
    else
      setTimeout(resolve, ms)
  })
}

promiseTimeout返回了一個promise, 如果throwOnTimeout為true則過ms毫秒之后則將promise變為失敗狀態,否則經過ms毫秒后調用resolve,使promise變為成功狀態。

2.2 toBe

function toBe<P>(value: MaybeRef<P | T>, options?: UntilToMatchOptions) {
    if (!isRef(value))
      return toMatch(v => v === value, options)
    const { flush = 'sync', deep = false, timeout, throwOnTimeout } = options ?? {}
    let stop: Function | null = null
    const watcher = new Promise<T>((resolve) => {
      stop = watch(
        [r, value],
        ([v1, v2]) => {
          if (isNot !== (v1 === v2)) {
            stop?.()
            resolve(v1)
          }
        },
        {
          flush,
          deep,
          immediate: true,
        },
      )
    })
     // 和toMatch相同部分省略
  }

toBe方法體大部分和toMatch相同,只是watch回調函數不同。這里對數據源r和toBe的參數value進行監聽,當r的值和value的值相同時,使promise狀態為成功。注意這里的watch使用的是偵聽多個源的情況。

2.3 toBeTruthy、toBeNull、toBeUndefined、toBeNaN

function toBeTruthy(options?: UntilToMatchOptions) {
  return toMatch(v => Boolean(v), options)
}
function toBeNull(options?: UntilToMatchOptions) {
  return toBe<null>(null, options)
}
function toBeUndefined(options?: UntilToMatchOptions) {
  return toBe<undefined>(undefined, options)
}
function toBeNaN(options?: UntilToMatchOptions) {
  return toMatch(Number.isNaN, options)
}

toBeTruthy和toBeNaN是對toMatch的封裝,toBeNull和toBeUndefined是對toBe的封裝。toBeTruthy判斷是否為真值,方法是使用Boolean構造函數后判斷參數v是否為真值。

toBeNaN判斷是否為NAN, 使用的是Number的isNaN作為判斷條件,注意toBeNaN的實現不能使用toBe, 因為tobe在做比較的時候使用的是 &lsquo;===&rsquo;這對于NaN是不成立的:

until封裝watch常用邏輯簡化代碼怎么寫

toBeNull用于判斷是否為null,toBeUndefined用于判斷是否為undefined。

2.4 toContains

function toContains(
value: any,
 options?: UntilToMatchOptions,
) {
  return toMatch((v) => {
    const array = Array.from(v as any)
    return array.includes(value) || array.includes(unref(value))
  }, options)
}

判斷數據源v中是否有value,Array.from把v轉換為數組,然后使用includes方法判斷array中是否包含value。

2.5 changed和changedTimes

function changed(options?: UntilToMatchOptions) {
  return changedTimes(1, options)
}
function changedTimes(n = 1, options?: UntilToMatchOptions) {
  let count = -1 // skip the immediate check
  return toMatch(() => {
    count += 1
    return count >= n
  }, options)
}

changed用于判斷是否改變,通過調用changedTimes和固定第一參數n為1實現的。changedTimes的第一個參數為監聽的數據源改變的次數,也是通過調用toMatch實現的,傳給toMatch的條件是一個函數,此函數會在數據源改變時調用。每調用一次外層作用域定義的count就會累加一次 ,注意外層作用域count變量聲明為-1, 因為時立即監聽的。

至此,until源碼內定義的函數全部分析完畢,下圖總結了這些函數之前的調用關系:

until封裝watch常用邏輯簡化代碼怎么寫

源碼中最后的返回值也值得我們說一說。

2.6 until返回值&mdash;&mdash;instance

until的返回值分為兩種情況:當監聽的源數據是數組時和不是數組時,代碼如下圖所示:

if (Array.isArray(unref(r))) {
  const instance: UntilArrayInstance<T> = {
    toMatch,
    toContains,
    changed,
    changedTimes,
    get not() {
      isNot = !isNot
      return this
    },
  }
  return instance
}
else {
  const instance: UntilValueInstance<T, boolean> = {
    toMatch,
    toBe,
    toBeTruthy: toBeTruthy as any,
    toBeNull: toBeNull as any,
    toBeNaN,
    toBeUndefined: toBeUndefined as any,
    changed,
    changedTimes,
    get not() {
      isNot = !isNot
      return this
    },
  }
  return instance
}

我們看到數據源時數組時返回的方法中沒有toBeTruthy,toBeNull,toBeNaN,toBeUndefined這些用于判斷基本類型值的方法。另外需要注意的是返回的instance里面有一個get not(){// ...}這是使用getters, 用于獲取特定的屬性(這里是not)。在getter里面對isNot取反,isNot返回值為this也就是instance本身,所以讀取完not屬性后可以鏈式調用其他方法,如下所示:

await until(ref).not.toBeNull()
await until(ref).not.toBeTruthy()

到此,關于“until封裝watch常用邏輯簡化代碼怎么寫”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

遵化市| 昌都县| 庆安县| 乐山市| 清水河县| 丰台区| 陵川县| 溆浦县| 繁峙县| 江都市| 襄汾县| 洞头县| 胶南市| 扬中市| 长宁区| 绥德县| 安平县| 南郑县| 浦县| 宁国市| 赣州市| 景宁| 宝鸡市| 南平市| 中西区| 庆安县| 绿春县| 阿巴嘎旗| 米易县| 丹寨县| 凌源市| 霍城县| 巩义市| 无极县| 霍邱县| 西华县| 基隆市| 鹤岗市| 高淳县| 伊金霍洛旗| 营口市|