1. 目录
- redux简介
- 案例
- react-redux核心介绍
2. redux简介
-
redux是react全家桶的一员,它试图为 React 应用提供「可预测化的状态管理」机制。
-
Redux是将整个应用状态存储到到一个地方,称为store
-
里面保存一棵状态树(state tree)
-
组件可以派发(dispatch)行为(action)给store,而不是直接通知其它组件
-
其它组件可以通过订阅store中的状态(state)来刷新自己的视图
3. 安装
npm install --save redux
复制代码
4. redux核心
4.1 State
state是数据集合
可以理解为工厂加工商品所需的原材料
4.2 action
State的变化,会导致View的变化。但是,用户接触不到 State,只能接触到View 所以,State的变化必须是 View导致的。
action就是改变state的指令,有多少操作state的动作就会有多少action。
可以将action理解为描述发生了什么的指示器
4.3 reducer 加工函数
action发出命令后将state放入reucer加工函数中,返回新的state。 可以理解为加工的机器
4.4 store
store 可以理解为有多个加工机器的总工厂
let store = createStore(reducers);
复制代码
Store 就是把它们联系到一起的对象。Store 有以下职责:
维持应用的 state;
提供 getState() 方法获取 state;
提供 dispatch(action) 方法更新 state;
通过 subscribe(listener) 注册监听器;
通过 subscribe(listener) 返回的函数注销监听器。
复制代码
我们可以通过store.getState()来了解工厂中商品的状态, 使用store.dispatch发送action指令。
5. 经典案例
这是一个redux的经典案例
- 定义reducer函数根据action的类型改变state
- actions 定义指令
- 通过createStore创建store
- 调用store.dispatch()发出修改state的命令
import { createStore } from 'redux'
const reducer = (state = {count: 0}, action) => {
switch (action.type){
case 'INCREASE': return {count: state.count + 1};
case 'DECREASE': return {count: state.count - 1};
default: return state;
}
}
const actions = {
increase: () => ({type: 'INCREASE'}),
decrease: () => ({type: 'DECREASE'})
}
const store = createStore(reducer);
store.subscribe(() =>
console.log(store.getState())
);
store.dispatch(actions.increase()) // {count: 1}
store.dispatch(actions.increase()) // {count: 2}
store.dispatch(actions.increase()) // {count: 3}
复制代码
我们可以直接在react component上使用store.dispatch,但是这样不太方便,这个时候我们需要react-redux
class Todos extends Component {
render(){
return(
<div onCLick={()=>store.dispatch(actions.delTodo()) }>test</div>
)
}
}
复制代码
6. react-redux
Redux 官方提供的 React 绑定库。 具有高效且灵活的特性。
6.1 安装
npm install --save react-redux
复制代码
6.2 核心
- < Provider store>
- connect([mapStateToProps], [mapDispatchToProps], [mergeProps], [options])
Provider 内的任何一个组件(比如这里的 Comp),如果需要使用 state 中的数据,就必须是「被 connect 过的」组件——使用 connect 方法对「你编写的组件(MyComp)」进行包装后的产物。
这个函数允许我们将 store 中的数据作为 props 绑定到组件上。
简单的流程如下图所示:
react-redux中的connect方法将store上的getState 和 dispatch 包装成组件的props。
将之前直接在组件上dispatch的代码修改为如下:
index.js
import React, { Component } from 'react';
import store from '../store';
import actions from '../store/actions/list';
import {connect} from 'react-redux';
class Todos extends Component {
render(){
return(
<div onCLick={()=>this.props.del_todo() }>test</div>
)
}
}
export default connect(
state=>state,
actions
)(Todos);
复制代码
Provider 能拿到关键的store并传递给每个子组件
7. connect如何工作的?
connect() 接收四个参数,它们分别是 mapStateToProps , mapDispatchToProps, mergeProps 和 options 。
7.1 mapStateToProps这个函数允许我们将 store 中的数据作为 props 绑定到组件上。
reducer.js
export default function (state = { lists: [{text:'移动端计划'}],newType:'all'}, action) {
switch (action.type) {
case types.ADD_TODO:
return {...state,lists:[...state.lists,{text:action.text}]}
case types.TOGGLE_TODO:
return {...state,lists:state.lists.map((item,index)=>{
if(index == action.index){
item.completed = !item.completed
}
return item
})}
case types.DEL_TODO:
return {...state,lists:[...state.lists.slice(0,action.index),...state.lists.slice(action.index+1)]}
case types.SWITCH_TYPE:
console.log({...state,newType:action.newType})
return {...state,newType:action.newType}
default:
return state;
}
}
复制代码
在reducer.js中,定义了初始化的state,通过connect方法,我们就能使用this.props.lists拿到初始化的state。
import React, { Component } from 'react';
import store from '../store';
import actions from '../store/actions/list';
import {connect} from 'react-redux';
class Todos extends Component {
render(){
return(
{
+ <ul>
+ this.props.state.lists.map(list =>(
+ <li>{list.text}</li>
+ ))
+ </ul>
}
<div onCLick={()=>this.props.del_todo() }>test</div>
)
}
}
export default connect(
state=>state,
actions
)(Todos);
复制代码
当 state 变化,或者 ownProps 变化的时候,mapStateToProps 都会被调用,计算出一个新的 stateProps,(在与 ownProps merge 后)更新给 MyComp。
7.2 mapDispatchToProps(dispatch, ownProps): dispatchProps connect 的第二个参数是 mapDispatchToProps,它的功能是,将 action 作为 props 绑定到 MyComp 上。
action.js
import * as types from "../action-types";
export default{
add_todo(text){
return { type: types.ADD_TODO, text: text}
},
del_todo(idx){
return {type:types.DEL_TODO, index: idx}
},
toggle_todo(index){
return {type:types.TOGGLE_TODO, index}
},
del_todo(index){
return {type:types.DEL_TODO, index}
},
switch_type(newType){
return {type:types.SWITCH_TYPE, newType}
}
}
复制代码
我在action.js中定义的修改状态的命令,会通过connect 的 mapDispatchToProps方法变为props绑定在reac组件上。
我们可以方便得使用去调用
<div onCLick={()=>this.props.del_todo() }>test</div>
复制代码
8. 深入
了解到这里,我们会发现并没有使用store.dispatch方法去发出命令,但是state已经修改,view也变化了,那么到底发生了什么?
store.dispatch(actions.increase())
复制代码
关键的是connect()
connect原理简化版
import React,{Component} from 'react';
import {bindActionCreators} from 'redux';
import propTypes from 'prop-types';
export default function(mapStateToProps,mapDispatchToProps){
return function(WrapedComponent){
class ProxyComponent extends Component{
static contextTypes = {
store:propTypes.object
}
constructor(props,context){
super(props,context);
this.store = context.store;
this.state = mapStateToProps(this.store.getState());
}
componentWillMount(){
this.unsubscribe = this.store.subscribe(()=>{
this.setState(mapStateToProps(this.store.getState()));
});
}
componentWillUnmount(){
this.unsubscribe();
}
render(){
let actions= {};
if(typeof mapDispatchToProps == 'function'){
actions = mapDispatchToProps(this.store.disaptch);
}else if(typeof mapDispatchToProps == 'object'){
console.log('object', mapDispatchToProps)
actions = bindActionCreators(mapDispatchToProps,this.store.dispatch);
}
return <WrapedComponent {...this.state} {...actions}/>
}
}
return ProxyComponent;
}
}
复制代码
1.state的返回 connect中对于Provided父组件上传来的store,通过将状态返回
mapStateToProps(this.store.getState());
复制代码
通过 Redux 的辅助函数 bindActionCreators(),用dispatch监听每一个action。
bindActionCreators(mapDispatchToProps,this.store.dispatch);
复制代码
所以调用props上的方法时,会自动发起store.dispach(XXX)事件,发出命令
react-redux到这里分析结束,后面会继续写redux中间件的相关文章!
觉得好玩就关注一下~欢迎大家收藏写评论~~~
招聘贴
字节跳动招人啦!
职位描述:前端开发(高级)ToB方向—视频云(Base: 上海、北京)
1、负责音视频点播/直播/实时通信等多媒体服务产品化以及业务云平台建设;
2、负责多媒体质量体系、运维体系建设及系统开发工作;
3、擅长抽象设计、工程化思维,专注交互、打造极致用户体验。
职位要求
1、计算机、通信和电子信息科学等相关专业优先;
2、熟练掌握各种前端技术,包括 HTML/CSS/JavaScript/Node.js 等;
3、深入了解 JavaScript 语言,使用过 React 或 Vue.js 等主流开发框架;
4、熟悉 Node.js,了解 Express/KOA 等框架,有大型服务端程序开发经验者优先;
5、对用户体验、交互操作及用户需求分析等有一定了解,有产品或界面设计经验者优先;
6、有自己的技术产品、开源作品或活跃的开源社区贡献者优先。
职位亮点
视频云团队依托抖音、西瓜视频等产品的音视频技术积累和基础资源,为客户提供极致的一站式音视频多媒体服务,包括音视频点播、直播、实时通信、图片处理等。对内作为视频技术中台,服务内部业务;对外打造产品化的音视频多媒体服务解决方案,服务企业级用户。
团队具备规范的项目迭代流程、完善的项目角色配置;技术氛围浓厚,拥抱开源社区,定期分享,让大家能够伴随业务快速成长,用技术改变世界!
投递方式
可直接发送简历至:yuanyuan.wallace@bytedance.com
也可以扫描内推二维码在线投递,期待你的加入!~