
声明
本系列参考React Hooks 与 Immutable 数据流实战完成,每一章节都将整合:遇到的问题、个人思考、知识点汇总等。
在原有代码之上进行了修改。
目标
本系列目标
熟悉前端开发流程
熟练掌握一种框架目录结构,熟练使用 React+Router+Redux 相关插件
掌握Redux数据流及其相关,如immer
不打算掌握布局相关,因为实例不允许。。。
本文目标
构建项目、目录结构划分
router-config配置、react-thunk基本使用
、PureComponent+memo+Component相关
接入redux、immer使用
第一部分 初始化
代码会放在github上,以不同的分支来区分。
该部分不属于重点
构建项目以及目录结构
采用Create React App进行构建。
npx create-react-app my-app |
整理目录结构如下:
├─api // 网路请求代码、工具类函数和相关配置 |
该部分主要是采用了独立文件夹的方式存放文件、目录作用域划分等操作。属于习惯问题。
第二部分 让框架跑起来
该项目包含react+router+redux+dom等主要模块的引用,故,如何安排相应的模块以及配置是个问题。
router-config
首先配置路由,在浏览器中可以见到不同的URL对应不同的页面,在此主要贴代码。
|
react-router-config究竟做了什么?
// !源码 |
实例
// 实例 |
注意事项
renderRoutes只渲染一层,故包含子路由的需要,需要在【父】【component】中加 {renderRoutes(routes)}
哈希路由
#
, 是否重新获取资源?
Component VS PureComponent VS memo
整个部分涉及React优化性能内容
React核心开发团队一直都努力地让React变得更快。在React中可以用来优化组件性能的方法大概有以下几种:
- 组件懒加载(React.lazy(…)和
) - PureComponent
- shouldComponentUpdate(…){…} 生命周期函数
- React.memo()
Component VS PureComponent
- 默认Component遇到state Props 变化时,父子组件都更新。
- Component通过shouldComponentUpdate生命周期函数进行判断是否更新组件;
- PureComponent组件没有shouldComponentUpdate生命周期函数,组件内部自动判断时候需要更新。
if (this._compositeType === CompositeTypes.PureClass) { |
React源码中很容易看到:shadowEqual只会”浅”检查组件的props和state,这就意味着嵌套对象和数组是不会被比较的。
PureComponent适合用于5展示的组件。
PureComponent VS memo
函数组件没有state、shouldComponentUpdate,故无法采用 生命周期||自动浅比较的方式。
React v16.6 引入 React.memo()
|
PureComponent 🆚 VS 🆚 memo
- React.PureComponent是银
- React.memo(…)是金
- React.PureComponent是给ES6的类组件使用的
- React.memo(…)是给函数组件使用的
- React.PureComponent减少ES6的类组件的无用渲染
- React.memo(…)减少函数组件的无用渲染
redux-devtools-extension 调试工具
图片来源:https://blog.csdn.net/achenyuan/article/details/80884895
第三部分 数据链路
redux在之前的文章中已经有过学习,包含了主要的步骤以及概念。可以参考前几天的—-React系列-Redux<2>。
可以参考下册两个图,加以回忆。
按照之前的理解就可以直接上手,初始化
action -> dispatch -> reducer => new state => update UI.
其中有个问题,如何 高效 的处理state事关 性能优劣。前一节,对
react & redux & react-redux
三者之间的关系可以看下册官方说明
- React:负责组件的UI界面渲染;
- Redux:数据处理中心; redux 官网
- React-Redux:连接组件和数据中心,也就是把React和Redux联系起来。 react-redux 官网
React-Redux
Redux 本身和React没有关系,只是数据处理中心,是React-Redux让他们联系在一起。
React-Redux提供两个方法:
connect: connect连接React组件和Redux store。connect实际上是一个高阶函数,返回一个新的已与Redux store连接的容器组件。
Provider: 实现store的全局可访问,将store传给每个组件。原理:使用React的context,context可以实现跨组件之间的传递。
const VisibleTodoList = connect( |
复制代码TodoList是 UI 组件,VisibleTodoList就是由 react-redux 通过connect方法自动生成的容器组件。
- mapStateToProps:从Redux状态树中提取需要的部分作为props传递给当前的组件。
- mapDispatchToProps:将需要绑定的响应事件(action)作为props传递到组件上。
三者之间的关系
redux-thunk
redux-thunk
With a plain basic Redux store, you can only do simple synchronous updates by dispatching an action. Middleware extend the store’s abilities, and let you write async logic that interacts with the store.
Thunks are the recommended middleware for basic Redux side effects logic, including complex synchronous logic that needs access to the store, and simple async logic like AJAX requests.
学习 https://zhuanlan.zhihu.com/p/85403048
第四部分 注意事项⚠️
函数组件mapStateToProps
拿到的数据是整个state
普通组件mapStateToProps
拿到的数据是createRouter()中的reducer导出的默认值。