自己動手實現(xiàn)一個react-redux
“專業(yè)、務(wù)實、高效、創(chuàng)新、把客戶的事當成自己的事”是我們每一個人一直以來堅持追求的企業(yè)文化。 創(chuàng)新互聯(lián)是您可以信賴的網(wǎng)站建設(shè)服務(wù)商、專業(yè)的互聯(lián)網(wǎng)服務(wù)提供商! 專注于成都做網(wǎng)站、成都網(wǎng)站建設(shè)、軟件開發(fā)、設(shè)計服務(wù)業(yè)務(wù)。我們始終堅持以客戶需求為導向,結(jié)合用戶體驗與視覺傳達,提供有針對性的項目解決方案,提供專業(yè)性的建議,創(chuàng)新互聯(lián)建站將不斷地超越自我,追逐市場,引領(lǐng)市場!
之前試過自己動手實現(xiàn)一個redux,這篇blog主要記錄動手實現(xiàn)一個react-redux的過程。
這個react-redux還有一點點小瑕疵,我以一個計數(shù)器作為例子來實現(xiàn)的。
這是目錄結(jié)構(gòu):
這里的connect.js文件就是react-redux。
├─component │ connect.js │ counter.js │ └─store index.js
index.js:
import React from "react"; import ReactDom,{render} from "react-dom"; import Couter from "./component/counter"; import {Provider} from "./component/connect" import store from "./store/index" ReactDom.render(,document.getElementById("root"));
./store/index.js:
import {createStore} from "redux"; function reducer(state={number:0},action) { switch (action.type){ case "add": return {number:state.number+action.count} default: return state; } } export default createStore(reducer);
./component/connect.js:
import React from "react"; import PropTypes from "prop-types"; //Provider是一個組件 接受一個store屬性 將其內(nèi)容掛載在上下文context //這樣后代才可以都有辦法拿到 class Provider extends React.Component{ static childContextTypes={ //設(shè)置上下文的類型是對象 store:PropTypes.object } getChildContext(){ //獲取并設(shè)置后代上下文的內(nèi)容 return {store:this.props.store} } render(){ return this.props.children } } let connect=(mapStateToProps,mapDispatchToProps)=>(comp)=>{ return class Proxy extends React.Component{ static contextTypes={ store:PropTypes.object } constructor(props,context){ super(props); //將參數(shù)mapStateToProps 的解構(gòu)賦值 代理組件的狀態(tài) this.setState=mapStateToProps(context.store.getState()) } componentDidMount(){ this.context.store.subscribe(()=>{ this.setState(mapStateToProps(this.context.store.getState())) }) } render(){ return} } } export {Provider,connect}
./component/counter.js:
import React from "react"; import {connect} from "./connect"; export default class Counter extends React.Component{ constructor(props){ super(props); } render(){ return ({this.props.n}) } } let mapStateToProps=(state)=>{ return {n:state.number} }; let mapDispatchToProps=(dispatch)=>{ return { add:(count)=>{ dispatch({type:"add",count:count}) } } } export default connect(mapStateToProps,mapDispatchToProps)(Counter)
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。