摘要:介紹是一個針對應(yīng)用的可預(yù)測的狀態(tài)管理器。中的設(shè)計模式裝飾者模式定義裝飾者模式用于給對象動態(tài)地增加職責(zé)。連接操作不會改變原來的組件類,而是返回一個新的已與連接的組件類。的這行代碼表示它對的數(shù)據(jù)進行訂閱。
redux介紹
redux是一個針對JavaScript應(yīng)用的可預(yù)測的狀態(tài)管理器。
redux中的設(shè)計模式 裝飾者模式定義:裝飾者模式用于給對象動態(tài)地增加職責(zé)。
我們來看看redux最早期(v0.2.0)的github代碼:
//Counter.js import React from "react"; import { performs, observes } from "redux"; @performs("increment", "decrement","double") @observes("CounterStore") export default class Counter { render() { const { increment, decrement } = this.props; return (Clicked: {this.props.counter} times {" "} {" "} {" "}
); } }
經(jīng)過observes的包裝后,react組件可以訪問Redux store里的couter數(shù)據(jù);經(jīng)過performs的包裝后,react組件可以發(fā)起increment、decrement和double這3個Action。
我們來看看performs是怎么包裝react組件的:
//performs.js import React, { Component, PropTypes } from "react"; import pick from "lodash/object/pick"; import identity from "lodash/utility/identity"; const contextTypes = { getActions: PropTypes.func.isRequired }; export default function performs(...actionKeys) { let mapActions = identity; return function (DecoratedComponent) { const wrappedDisplayName = DecoratedComponent.name; return class extends Component { static displayName = `ReduxPerforms(${wrappedDisplayName})`; static contextTypes = contextTypes; constructor(props, context) { super(props, context); this.updateActions(props); } updateActions(props) { this.actions = mapActions( pick(this.context.getActions(), actionKeys), props ); } render() { return (); } }; }; }
很簡單對不對,performs實質(zhì)上是一個高階函數(shù),接收一個react組件類型的參數(shù)DecoratedComponent,然后返回一個高階組件,該組件包裝了傳遞進來的react組件,并向該組件傳遞了action相關(guān)的props.
通過可以看上面的圖可以看出,Counter組件被Observes包裝后,又被performs包裝,形成了一條包裝鏈。
redux提供的API中,有一個重要的方法connect,用于連接 React 組件與 Redux store。連接操作不會改變原來的組件類,而是返回一個新的已與 Redux store 連接的組件類。典型的裝飾者模式有木有?
觀察者模式定義:觀察者模式又叫發(fā)布-訂閱模式,它定義對象間的一種一對多的依賴關(guān)系,當(dāng)一個對象的狀態(tài)發(fā)生改變時,所有依賴它的對象都將得到通知。
@observes("CounterStore")
counter.js的這行代碼表示它對Redux的CounterStore數(shù)據(jù)進行訂閱。我們來看看objserves的實現(xiàn):
//observes.js import React, { Component, PropTypes } from "react"; import pick from "lodash/object/pick"; const contextTypes = { observeStores: PropTypes.func.isRequired }; export default function connect(...storeKeys) { return function (DecoratedComponent) { const wrappedDisplayName = DecoratedComponent.name; return class extends Component { static displayName = `ReduxObserves(${wrappedDisplayName})`; static contextTypes = contextTypes; constructor(props, context) { super(props, context); this.handleChange = this.handleChange.bind(this); this.unobserve = this.context.observeStores(storeKeys , this.handleChange); //訂閱store數(shù)據(jù) } handleChange(stateFromStores) { this.currentStateFromStores = pick(stateFromStores, storeKeys); this.updateState(stateFromStores); } updateState(stateFromStores, props) { stateFromStores = stateFromStores[storeKeys[0]]; const state = stateFromStores; this.setState(state);//通過setState進行組件更新 } componentWillUnmount() { this.unobserve();//退訂 } render() { return (); } }; }; }
當(dāng)數(shù)據(jù)變化時,通過調(diào)用setState方法,進而對Counter組件進行UI更新。
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/86901.html
摘要:調(diào)用鏈中最后一個會接受真實的的方法作為參數(shù),并借此結(jié)束調(diào)用鏈。總結(jié)我們常用的一般是除了和之外的方法,那個理解明白了,對于以后出現(xiàn)的問題會有很大幫助,本文只是針對最基礎(chǔ)的進行解析,之后有機會繼續(xù)解析對他的封裝 前言 雖然一直使用redux+react-redux,但是并沒有真正去講redux最基礎(chǔ)的部分理解透徹,我覺得理解明白redux會對react-redux有一個透徹的理解。 其實,...
摘要:的返回值是函數(shù),這個函數(shù)經(jīng)調(diào)用,傳入?yún)?shù),之后會在中間件鏈上進行傳遞,只要保證每個中間件的參數(shù)是并且將傳遞給下一個中間件。 了解了Redux原理之后,我很好奇Redux中間件是怎么運作的,于是選了最常用的redux-thunk進行源碼分析。 此次分析用的redux-thunk源碼版本是2.2.0,redux源碼版本是3.7.2。并且需要了解Redux原理 redux中間件都是由redu...
摘要:最近練手開發(fā)了一個項目,是一個聊天室應(yīng)用。由于我們的項目是一個單頁面應(yīng)用,因此只需要統(tǒng)一打包出一個和一個。而就是基于實現(xiàn)的一套基于事件訂閱與發(fā)布的通信庫。比如說,某一個端口了,而如果端口訂閱了,那么在端,對應(yīng)的回調(diào)函數(shù)就會被執(zhí)行。 最近練手開發(fā)了一個項目,是一個聊天室應(yīng)用。項目雖不大,但是使用到了react, react-router, redux, socket.io,后端開發(fā)使用了...
閱讀 3563·2021-11-22 15:11
閱讀 4643·2021-11-18 13:15
閱讀 2710·2019-08-29 14:08
閱讀 3583·2019-08-26 13:49
閱讀 3100·2019-08-26 12:17
閱讀 3295·2019-08-26 11:54
閱讀 3119·2019-08-26 10:58
閱讀 2039·2019-08-26 10:21