首頁  >  文章  >  web前端  >  React中高階元件的使用範例

React中高階元件的使用範例

不言
不言轉載
2018-11-15 17:23:492199瀏覽

這篇文章帶給大家的內容是關於React中高階元件的使用範例,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

Higher-Order Components

  • #HOC 不是React的標準API。

  • HOC 是一個函數。

  • HOC 回傳一個Component

範例:

const EnhancedComponent = higherOrderComponent(WrappedComponent);

使用場景

程式碼複用

類似React 0.15版本之前的mixin。

多個元件同用一段程式碼,或同樣的方法時,可以使用HOC。

範例:

import React, { PureComponent } from 'react';

const Common = (WrapComponent) => {
  return (
    <div>
      <h1>Title</h1>
      <WrapComponent />
    </div>
  );
};

const Header = () => <div>Header</div>;
const Footer = () => <div>Footer</div>;

export default class extends PureComponent {
  render() {
    return (
      <div>
        <div>
          <p>Header Component</p>
          {Common(Header)}
        </div>
        <hr />
        <div>
          <p>Footer Component</p>
          {Common(Footer)}
        </div>
      </div>
    );
  }
}

線上範例

#抽象state和更改props

可以透過WrappedComponent包裹的元件公共state抽象化。

可以透過WrappedComponent套件的元件傳遞修改、新增等的props.

範例:

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

    componentDidMount() {
      this.setState({name: WrappedComponent.displayName || WrappedComponent.name || 'Component';});
    }

    return <WrappedComponent name={this.state.name} {...this.props}/>
  }
}

。根據props或state條件傳回在渲染然的內容。

範例:

const HOComp = (WrappedComponent) => {
  return class Enhancer extends WrappedComponent {
    render() {
      if (this.props.loggedIn) {
        return super.render()
      } else {
        return null
      }
    }
  }
}

反向繼承

返回的高階元件類別(Enhancer)繼承了 WrappedComponent。

範例:

const EnchanceComponent = (WrappedCompopnent) => {
  return class extends WrappedCompopnent {
    constructor(props) {
      super(props);
      this.state = { error: '' };
    }
    componentDidMount() {
      /*do something*/
      super.componentDidMount();
    }
    render() {
      if (this.state.error) {
        return <p>{this.state.error}</p>;
      } else {
        return super.render();
      }
    }
  }
};

線上範例

#

以上是React中高階元件的使用範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除