深入理解:简单实现 redux 和 react-redux

深入理解: 简单实现 redux 和 react-redux

CodeSandbox:easy-redux-app - CodeSandbox

Redux 是一个基于单方向数据流的状态管理, react-redux 的作用帮助 Redux 和 React 建立链接

01 redux

GIF 2022-5-20 11-16-44

核心原理

createStore

createStore 是整个 redux 的核心原理,其主要的功能就是创建 store , 并暴露getState,dispatch,subscribe 方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
export function createStore(reducer) {
// 保存全局状态
let state = undefined
// 订阅列表
let listeners = []

// 初始化state
dispatch({ type: ActionTypes.INIT })

// 获取全局状态
function getState() {
return state
}

// dispatch 用于传递 action 触发 reducer
function dispatch(action) {
state = reducer(state, action)
// state 发生改变,发布(处理订阅,更新组件)
listeners.forEach((listener) => listener())
}

// 发布订阅:传入一个函数,这个函数会在每次 state 更新的时候被调用
function subscribe(listener) {
// 加入更新列表
listeners.push(listener)
return function unsubscribe() {
// 用于卸载组件时,取消订阅
listeners = listeners.filter((func) => func !== listener)
}
}

return {
getState,
dispatch,
subscribe,
}
}

中间件

applyMiddleware

applyMiddleware 用于扩展 Redux 添加中间件,Middleware 可以让你包装 storedispatch 方法来达到你想要的目的,其中 compose 方法,可以让多个 middleware 可以被组合到一起使用,形成 middleware 链。常见 middleware 比如说 日志收集器, 崩溃日志收集器等

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// applyMiddleware 扩展 Redux
export function applyMiddleware(...middleWares) {
return (createStore) => (reducer) => {
const store = createStore(reducer)
let dispatch = store.dispatch
const middlewareAPI = {
getState: store.getState,
dispatch,
}
const chain = middleWares.map((middleware) => middleware(middlewareAPI))
dispatch = compose(...chain)(dispatch)
return {
...store,
dispatch,
}
}
}

// compose 聚合函数
function compose(...funcs) {
if (funcs.length === 0) {
return (args) => args
}

if (funcs.length === 1) {
return funcs[0]
}
return funcs.reduce(
(a, b) =>
(...args) =>
a(b(...args))
)
}

合并 reducer 辅助函数

combineReducers

combineReducers 用于合并多个 reducer , 遇到复杂的应用我们需要拆分不同的 reducer ,拆分后的每个函数负责独立管理 state 的一部分。

1
2
3
4
5
6
7
8
9
export function combineReducers(reducers) {
let nextState = {}
return function combination(state, action) {
Object.entries(reducers).forEach(([key, reducers]) => {
nextState[key] = reducers(nextState[key], action)
})
return nextState
}
}

02 react-redux

image-20220520114557068

核心原理

Provider

Provider 用于上层组件注入 store ,其原理,就是通过 react createContext 方法,将 store 暴露到上下文 , 以便容器组件可以接收 store

1
2
3
4
5
6
7
8
9
10
11
12
13
import React, { createContext } from 'react'

// 创建一个 context
const ReactReduxContext = createContext()

export function Provider({ store, children }) {
return (
// 注入 store
<ReactReduxContext.Provider value={store}>
{children}
</ReactReduxContext.Provider>
)
}
connect

connect 创建容器组件,将接收到 store 通过 props 注入到 Component 组件中,其中 mapStateToPropsmapDispatchToProps 分别用于映射 state 和 dispatch 对应 action

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

export const connect = (mapStateToProps, mapDispatchToProps) => (Component) => {
return class extends React.Component {
// 接收 context 上下文
static contextType = ReactReduxContext;
constructor(props) {
super(props);
this.state = {}
}
componentDidMount() {
const { subscribe, getState,dispatch } = this.context;
// 挂载完毕后,初次渲染
this.setState({
// 返回一个纯对象,这个对象会与组件的 props 合并
...mapStateToProps(getState()),
// 函数中dispatch方法会将action creator的返回值作为参数执行。这些属性会被合并到组件的 props 中
...mapDispatchToProps(dispatch)
})
// 订阅更新
this.unsubscribe = subscribe(() => {
this.setState({
...mapStateToProps(getState()),
...mapDispatchToProps(dispatch)
})
})
}
componentWillUnmount() {
// 取消更新
this.unsubscribe();
}
render() {
return (
{// 通过 props 将 state 和 action 注入到 Component 组件中}
<Component
{...this.props}
{...this.state}
/>
)
}
}
}


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!