React Redux

Redux的组成

Store

一个对象,用来存储application level的state,也携带了一些Redux相关的方法,虽然理论上可以支持创建多个,但应该遵序one application one store的原则。

Actions

Actions是plain objects,只用来形容发生了什么(type field),不会形容State如何更新。

Reducers

Reducers是pure function,接收旧state和action,重新计算application state。

React Hooks 与 Redux

createStore

接收三个参数reducer, initial state 和 enhancer middleware,返回一个包含dispatch,subscribe,getState,replaceReducer的对象,局部变量用来存放currentState, currentReducer, currentListeners, isDispatching

Provider

Provider就是一个HOC,本身没有任何试图内入,只展示children,它接收store, context, children, serverState, 返回 <Context.Provider value={contextValue}>{children}</Context.Provider>
其中contextValue来自:

const contextValue = useMemo(() => {
  const subscription = createSubscription(store)
    return {
      store,
      subscription,
      getServerState: serverState ? () => serverState : undefined,
    }
  }, [store, serverState])

store是createStore出来的, 由开发者传入
subscription由createSubscription工厂函数创建
getServerState是SSR相关,不做讲解
Provider还做了一件事:

const previousState = useMemo(() => store.getState(), [store]);

获取了一次最新 state 并命名为 previousState,只要 store 单例不发生变化,它是不会更新的。一般项目中也不太会改变 redux 单例。

useIsomorphicLayoutEffect(() => {
  const { subscription } = contextValue;
  subscription.onStateChange = subscription.notifyNestedSubs;
  subscription.trySubscribe();
  if (previousState !== store.getState()) {
    subscription.notifyNestedSubs();
  }
  return () => {
    subscription.tryUnsubscribe();
    subscription.onStateChange = undefined;
  };
}, [contextValue, previousState]);

useIsomorphicLayoutEffect

export const canUseDOM = !!(
  typeof window !== "undefined" &&
  typeof window.document !== "undefined" &&
  typeof window.document.createElement !== "undefined"
);

export const useIsomorphicLayoutEffect = canUseDOM
  ? useLayoutEffect
  : useEffect;

这个hook内容很简单,服务器端使用useEffect,客户端使用useLayoutEffectuseEffectuseLayoutEffect的区别在于前者不会阻塞渲染,异步执行,后者阻塞渲染,同步执行,因此useLayoutEffectcomponentDidMount是等价的。
为什么要放在useLayoutEffect/useEffect中来做,因为useEffect的调用时自下而上的,这是能确保子组件的渲染更新都已经发生了

useSelector

这里要提到一个概念叫组件外部状态(区别于组件内部状态以及局部内部状态),组件外部状态对象一般要实现的通用接口

interface ExternalStore<T> {
  getState(): T;
  subscribe(listener: () => void): () => void;
  dispatch(updater: T | ((prevState: T) => T)): void;
}

你会发现跟store很像,那么我们可以写一个hook用来监听它的变化

export const useCustomStore = <T>(store: ExternalStore<T>) => {
  const [state, setState] = useState(store.getState());

  useEffect(() => {
    const unsubscribe = store.subscribe(() => {
      setState(store.getState());
    });

    return () => { unsubscribe(); };
  }, []);

  return state;
};

通过useState创建状态机,并且通过getState方法赋予其初始值,最后通过subscribe函数监听state的变化,调用setState方法更新state值。至此,我们就实现了一个有缺陷的useSelector方法(无法返回state中的某个属性)。
当然,我们也可以将这件事交给React负责,使用useSyncExternalStore API:

export const useExternalStore = <T>(store: ExternalStore<T>) => {
  return useSyncExternalStore(
    store.subscribe,
    store.getState
  );
};

那么,真实的useSelector使用的是什么呢?它使用了React 额外提供了带 Selector 优化的useSyncExternalStoreWithSelector。假如不带selector,那么我们每次监听的state变化范围是整体,但如果带了selector,我们可以只关心局部的变化,这个API需要额外提供selector函数,也可以选择性提供isEqual函数。于是就产生了如下的代码:

let useSyncExternalStoreWithSelector = notInitialized as uSESWS
const refEquality: EqualityFn<any> = (a, b) => a === b
export function createSelectorHook(
  context = ReactReduxContext
): <TState = unknown, Selected = unknown>(
  selector: (state: TState) => Selected,
  equalityFn?: EqualityFn<Selected>
) => Selected {
  const useReduxContext =
    context === ReactReduxContext ? useDefaultReduxContext : () => useContext(context)
  return function useSelector<TState, Selected extends unknown>(
    selector: (state: TState) => Selected,
    equalityFn: EqualityFn<NoInfer<Selected>> = refEquality
  ): Selected {
    const { store, subscription, getServerState } = useReduxContext()!
    const selectedState = useSyncExternalStoreWithSelector(
      subscription.addNestedSub,
      store.getState,
      getServerState || store.getState,
      selector,
      equalityFn
    )
    useDebugValue(selectedState)
    return selectedState
  }
}
export const useSelector = createSelectorHook()

可以看出useSelector其实就是createSelectorHook的闭包,闭包的参数均由useDefaultReduxContext提供

useReduxContext

export function useReduxContext(): ReactReduxContextValue | null {
  const contextValue = useContext(ReactReduxContext)
  return contextValue
}
createContext<ReactReduxContextValue>(null as any)

useContext

Context的作用就是对它所包含的组件树提供全局数据共享。可以使用useContext跨域组件(爷孙,兄弟)之间传递变量,实现数据共享。

useDispatch

function createDispatchHook<S = RootStateOrAny, A extends Action = AnyAction>(
  context?: Context<ReactReduxContextValue<S, A>> = ReactReduxContext
) {
  const useStore =
    context === ReactReduxContext ? useDefaultStore : createStoreHook(context);
  return function useDispatch<
    AppDispatch extends Dispatch<A> = Dispatch<A>
  >(): AppDispatch {
    const store = useStore();
    return store.dispatch;
  };
}
export const useDispatch = createDispatchHook();

useDispatch非常简单,就是通过useStore()拿到 redux store,然后返回store.dispatch,用户就能使用这个dispatch派发action了。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,602评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,442评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,878评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,306评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,330评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,071评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,382评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,006评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,512评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,965评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,094评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,732评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,283评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,286评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,512评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,536评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,828评论 2 345

推荐阅读更多精彩内容