在本文中,我們將了解 Zustand 如何在其[原始碼]中使用 useSyncExternalStoreExports。
useSyncExternalStoreExports 是從 use-sync-external-store/shim/with-selector 匯入的。 use-sync-external-store 是 React.useSyncExternalStore 的向後相容墊片,可與任何支援 Hooks 的 React 搭配使用。
讀到上面這句話,你可能會想知道什麼是useSyncExternalStore。
useSyncExternalStore 是一個 React Hook,可讓您訂閱外部儲存。
const snapshot = useSyncExternalStore(subscribe, getSnapshot, getServerSnapshot?)
使用 useSyncExternalStore 從外部儲存讀取一個值,該值可以是:
在 React 之外保存狀態的第三方狀態管理庫。
公開可變值和事件以訂閱其更改的瀏覽器 API。
import { useSyncExternalStore } from 'react'; import { todosStore } from './todoStore.js'; function TodosApp() { const todos = useSyncExternalStore(todosStore.subscribe, todosStore.getSnapshot); // ... }
上面的範例摘自React文件。
Zustand 在 src/traditional.ts 中使用 useSyncExternalStore。
import ReactExports from 'react' // eslint-disable-next-line import/extensions import useSyncExternalStoreExports from 'use-sync-external-store/shim/with-selector' import { createStore } from './vanilla.ts' import type { Mutate, StateCreator, StoreApi, StoreMutatorIdentifier, } from './vanilla.ts' const { useDebugValue } = ReactExports const { useSyncExternalStoreWithSelector } = useSyncExternalStoreExports
useSyncExternalStoreWithSelector 是從 useSyncExternalStoreExports 解構而來,並在 useStoreWithEqualityFn 中使用。
export function useStoreWithEqualityFn<TState, StateSlice>( api: ReadonlyStoreApi<TState>, selector: (state: TState) => StateSlice = identity as any, equalityFn?: (a: StateSlice, b: StateSlice) => boolean, ) { const slice = useSyncExternalStoreWithSelector( api.subscribe, api.getState, api.getInitialState, selector, equalityFn, ) useDebugValue(slice) return slice }
useSyncExternalStoreWithSelector 有 api.subscribe、api.getState、api.getInitialState、selector 和 equalFn。
在 Think Throo,我們的使命是教授受開源專案啟發的最佳實踐。
透過在 Next.js/React 中練習高階架構概念,將您的編碼技能提高 10 倍,學習最佳實踐並建立生產級專案。
我們是開源的 — https://github.com/thinkthroo/thinkthroo (請給我們一顆星!)
透過我們基於程式碼庫架構的高階課程來提升您的團隊的技能。請透過 hello@thinkthroo.com 與我們聯繫以了解更多資訊!
https://github.com/pmndrs/zustand/blob/main/src/traditional.ts#L44
https://www.npmjs.com/package/use-sync-external-store
https://legacy.reactjs.org/docs/hooks-reference.html#usesyncexternalstore
https://react.dev/reference/react/useSyncExternalStore
https://github.com/reactwg/react-18/discussions/86
以上是useSyncExternalStoreExports在狀態原始碼中有解釋。的詳細內容。更多資訊請關注PHP中文網其他相關文章!