高階組件(HOC)

React官方定義高階組件的概念是:

A higher-order component is a function that takes a component and returns a new component.

通常情況下郑象,實現(xiàn)高階組件的方式有以下兩種:
屬性代理(Props Proxy)
反向繼承(Inheritance Inversion)

屬性代理

實質上是通過包裹原來的組件來操作props梗摇,舉個簡單的例子:

import React, { Component } from 'React';
//高階組件定義
const HOC = (WrappedComponent) =>
  class WrapperComponent extends Component {
    render() {
      return <WrappedComponent {...this.props} />;
    }
}
//普通的組件
class WrappedComponent extends Component{
    render(){
        //....
    }
}

//高階組件使用
export default HOC(WrappedComponent)

我們可以看見函數(shù)HOC返回了新的組件(WrapperComponent),這個組件原封不動的返回作為參數(shù)的組件(也就是被包裹的組件:WrappedComponent)荒吏,并將傳給它的參數(shù)(props)全部傳遞給被包裹的組件(WrappedComponent)闭树。這么看起來好像并沒有什么作用朴爬,其實屬性代理的作用還是非常強大的。

操作props

我們看到之前要傳遞給被包裹組件WrappedComponent的屬性首先傳遞給了高階組件返回的組件(WrapperComponent)惰帽,這樣我們就獲得了props的控制權(這也就是為什么這種方法叫做屬性代理)憨降。我們可以按照需要對傳入的props進行增加、刪除善茎、修改(當然修改帶來的風險需要你自己來控制)券册,舉個例子:

const HOC = (WrappedComponent) =>
    class WrapperComponent extends Component {
        render() {
            const newProps = {
                name: 'HOC'
            }
            return <WrappedComponent
                {...this.props}
                {...newProps}
            />;
        }
    }

在上面的例子中,我們?yōu)楸话M件(WrappedComponent)新增加了固定的name屬性垂涯,因此WrappedComponent組件中就會多一個name的屬性烁焙。

抽象state

屬性代理的情況下,我們可以將被包裹組件(WrappedComponent)中的狀態(tài)提到包裹組件中耕赘,一個常見的例子就是實現(xiàn)不受控組件到受控的組件的轉變

class WrappedComponent extends Component {
    render() {
        return <input name="name" {...this.props.name} />;
    }
}

const HOC = (WrappedComponent) =>
    class extends Component {
        constructor(props) {
            super(props);
            this.state = {
                name: '',
            };

            this.onNameChange = this.onNameChange.bind(this);
        }

        onNameChange(event) {
            this.setState({
                name: event.target.value,
            })
        }

        render() {
            const newProps = {
                name: {
                    value: this.state.name,
                    onChange: this.onNameChange,
                },
            }
            return <WrappedComponent {...this.props} {...newProps} />;
        }
    }

上面的例子中通過高階組件骄蝇,我們將不受控組件(WrappedComponent)成功的轉變?yōu)槭芸亟M件.

用其他元素包裹組件

    render(){
        <div>
            <WrappedComponent {...this.props} />
        </div>
    }

這種方式將被包裹組件包裹起來,來實現(xiàn)布局或者是樣式的目的操骡。

在屬性代理這種方式實現(xiàn)的高階組件九火,以上述為例赚窃,組件的渲染順序是: 先WrappedComponent再WrapperComponent(執(zhí)行ComponentDidMount的時間)。而卸載的順序是先WrapperComponent再WrappedComponent(執(zhí)行ComponentWillUnmount的時間)岔激。

高階組件的用法勒极,其實就是封裝個函數(shù)將傳入的組件添加上數(shù)據(jù),直接導出即可虑鼎,我們常用的react-redux 中的 connect(Children) 一個道理辱匿,封裝完將數(shù)據(jù)導入到組件當中,組件相應的具有數(shù)據(jù)炫彩,以及具有了dispatch方法匾七,就是這么個封裝。
話不多說直接上個小栗子:

class Parents extends Component {
  constructor(props) {
    super(props);
      this.state = {
         parentsSourse: '我是父組件數(shù)據(jù)'
      }
  }
  render() {
    <>
      <Children />
      這是父組件江兢,相當于我們的外層組件
    </>  
  }    
}    
class Children  extends Component {
   render() {
      <>
         這是子組件昨忆,我們展示組件
      </>  
   }    
}

我們假如我們想讓父組件包含的組件都具有一個屬性值,這個值是 newType: true, 此時我們可以直接向下級 Childlren 傳遞杉允,那么我們也可以封裝下父組件導出個高階組件,那么這個方法可以這么寫:

const Hoc_component = (HocCompoent) =>  {
   return  class NewComponent extends React.Component{
      constructor(props){
         super(props);
         this.state={}
      }
    
       render() {
            const  props = { newType: true } 
            return <HocCompoent {...this.props}  {...props}/>
       }
   }
}    

// 此時所有的組件只要使用

Hoc_component(Children);   // 此時的子組件就具有了這個方法包裝的 newType屬性邑贴,我們可以去打印看下。

下面的例子夺颤,我們把兩個組件相似的生命周期方法提取出來痢缎,通過包裝胁勺,能夠節(jié)省非常多的重復代碼世澜。

// CommentList
class CommentList extends React.Component {
  constructor(props) {
    super(props);
    this.handleChange = this.handleChange.bind(this);
    this.state = {
      // "DataSource" is some global data source
      comments: DataSource.getComments()
    };
  }

  componentDidMount() {
    // Subscribe to changes
    DataSource.addChangeListener(this.handleChange);
  }

  componentWillUnmount() {
    // Clean up listener
    DataSource.removeChangeListener(this.handleChange);
  }

  handleChange() {
    // Update component state whenever the data source changes
    this.setState({
      comments: DataSource.getComments()
    });
  }

  render() {
    return (
      <div>
        {this.state.comments.map((comment) => (
          <Comment comment={comment} key={comment.id} />
        ))}
      </div>
    );
  }
}
// BlogPost
class BlogPost extends React.Component {
  constructor(props) {
    super(props);
    this.handleChange = this.handleChange.bind(this);
    this.state = {
      blogPost: DataSource.getBlogPost(props.id)
    };
  }

  componentDidMount() {
    DataSource.addChangeListener(this.handleChange);
  }

  componentWillUnmount() {
    DataSource.removeChangeListener(this.handleChange);
  }

  handleChange() {
    this.setState({
      blogPost: DataSource.getBlogPost(this.props.id)
    });
  }

  render() {
    return <TextBlock text={this.state.blogPost} />;
  }
}

他們雖然是兩個不同的組件,對DataSource的需求也不同署穗,但是他們有很多的內容是相似的:

  • 在組件渲染之后監(jiān)聽DataSource
  • 在監(jiān)聽器里面調用setState
  • 在unmout的時候刪除監(jiān)聽器

在大型的工程開發(fā)里面寥裂,這種相似的代碼會經常出現(xiàn),那么如果有辦法把這些相似代碼提取并復用案疲,對工程的可維護性和開發(fā)效率可以帶來明顯的提升封恰。
使用HOC我們可以提供一個方法,并接受不了組件和一些組件間的區(qū)別配置作為參數(shù)褐啡,然后返回一個包裝過的組件作為結果诺舔。

function withSubscription(WrappedComponent, selectData) {
  // ...and returns another component...
  return class extends React.Component {
    constructor(props) {
      super(props);
      this.handleChange = this.handleChange.bind(this);
      this.state = {
        data: selectData(DataSource, props)
      };
    }

    componentDidMount() {
      // ... that takes care of the subscription...
      DataSource.addChangeListener(this.handleChange);
    }

    componentWillUnmount() {
      DataSource.removeChangeListener(this.handleChange);
    }

    handleChange() {
      this.setState({
        data: selectData(DataSource, this.props)
      });
    }

    render() {
      // ... and renders the wrapped component with the fresh data!
      // Notice that we pass through any additional props
      return <WrappedComponent data={this.state.data} {...this.props} />;
    }
  };
}

然后我們就可以通過簡單的調用該方法來包裝組件:

const CommentListWithSubscription = withSubscription(
  CommentList,
  (DataSource) => DataSource.getComments()
);

const BlogPostWithSubscription = withSubscription(
  BlogPost,
  (DataSource, props) => DataSource.getBlogPost(props.id)
);

注意:在HOC中我們并沒有修改輸入的組件,也沒有通過繼承來擴展組件备畦。HOC是通過組合的方式來達到擴展組件的目的低飒,一個HOC應該是一個沒有副作用的方法。

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末懂盐,一起剝皮案震驚了整個濱河市褥赊,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌莉恼,老刑警劉巖拌喉,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件速那,死亡現(xiàn)場離奇詭異,居然都是意外死亡尿背,警方通過查閱死者的電腦和手機端仰,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來田藐,“玉大人榆俺,你說我怎么就攤上這事∥牖矗” “怎么了茴晋?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長回窘。 經常有香客問我诺擅,道長,這世上最難降的妖魔是什么啡直? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任烁涌,我火速辦了婚禮,結果婚禮上酒觅,老公的妹妹穿的比我還像新娘撮执。我一直安慰自己,他們只是感情好舷丹,可當我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布抒钱。 她就那樣靜靜地躺著,像睡著了一般颜凯。 火紅的嫁衣襯著肌膚如雪谋币。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天症概,我揣著相機與錄音蕾额,去河邊找鬼。 笑死彼城,一個胖子當著我的面吹牛诅蝶,可吹牛的內容都是我干的。 我是一名探鬼主播募壕,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼调炬,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了司抱?” 一聲冷哼從身側響起筐眷,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎习柠,沒想到半個月后匀谣,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體照棋,經...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年武翎,在試婚紗的時候發(fā)現(xiàn)自己被綠了烈炭。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡宝恶,死狀恐怖符隙,靈堂內的尸體忽然破棺而出,到底是詐尸還是另有隱情垫毙,我是刑警寧澤霹疫,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布,位于F島的核電站综芥,受9級特大地震影響丽蝎,放射性物質發(fā)生泄漏。R本人自食惡果不足惜膀藐,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一屠阻、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧额各,春花似錦国觉、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至缸逃,卻和暖如春针饥,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背需频。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留筷凤,地道東北人昭殉。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像藐守,于是被迫代替她去往敵國和親挪丢。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 43,724評論 2 351