


This article brings you a detailed explanation of function subcomponents and high-order components in React. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
After coming into contact with React projects, most people should have already understood or used HOC (High-Order-Components) and FaCC (Functions as Child Components), because these two patterns are widely used It exists in most react open source libraries. For example, withRouter in react-router is a typical high-order component, which accepts one component and returns another enhanced component. Motion in react-motion is a typical FaCC application.
HOC and FaCC do very similar things, both are similar to the decorator pattern in the design pattern. All functions are enhanced on the original instances or units.
Of course, it is not only used in some open source libraries, but also in daily code writing, there are many places where it is suitable to use HOC and FaCC to encapsulate some logic. For example, data burying points, toggle of new features, obtaining conversion data, etc. Very useful for enhancing code readability and logic reuse.
HOC
We have all used high-order functions, which accept a function and return an encapsulated function:
const plus = first => second => (first + second) plus(1)(2) // 3
And high-order components are the concept of high-order functions. Applied to higher-order components:
const withClassName = ComposedComponent => props => ( <composedcomponent></composedcomponent> ) // 使用 const Header = text => (<header>{text}</header>) const headerWitheClass = withClassName(Header)
Accepts a component and returns a wrapped new component. The withRouter
we often use is to add properties such as localtion
to the original component props
. In addition to adding props, high-order components can also do:
Do some things before and after actually calling the component, such as burying data, etc.
Determine whether the component should be rendered, or should render other things, such as rendering the error page after an error
Pass props and add new props
Instead of rendering the component, do some other things, such as rendering an external dom
The first three points above are relatively easy to understand. Please explain the fourth point. For example, after rendering a page, you need to change the title of the page. This is a common requirement for single-page applications. Usually you can use hooks in a specific router library to achieve this. Of course, it can also be achieved through HOC:
const withTitleChange = ComposedComponent => { return class extends React.Component { componentDidMount () { const { title } = this.props document.title = title } render () { const props = this.props return <composedcomponent></composedcomponent> } } }
FaCC
Similarly, FaCC is also a mode used to enhance the capabilities of original components. Its main function is realized by react's props.children can be Anything, including functions. We can take the above class example and implement it again with FaCC:
const ClassNameWrapper = ({ children }) => children('demo-class') // 使用 const HeadWithClass = (props) => ( <classnamewrapper> {(class) => <header></header>} </classnamewrapper> )
In FaCC, you can also do many things in the life cycle like HOC to encapsulate the original components. Basically, HOC can do FaCC can do it too. The project I was working on used to use HOC on a large scale. After some discussions, it began to transform into FaCC on a large scale.
Difference
Both are used to enhance the original components. Which one should be used? Which is the correct model? There are a lot of discussions about this in the community. For example, some people say that FaCC is an anti-pattern: Function as Child Components Are an Anti-Pattern. The reason he gave is that children are not semantic and will cause confusion. Then he proposed the Component Injection
model, which interested students can read.
Let’s make a comparison from several aspects:
combination stage
The combination stage means HOC, FaCC and When combining enhanced components. It can be clearly found that FaCC displays more dependency information on the docking of front and rear components, which is relatively easier to understand. As for HOC, how to bridge each other, you have to go deep into the HOC and read the code to know what this HOC does.
// HOC example import View from './View' const DetailPage = withServerData(withNavigator(View))
// FaCC example import View from './View' const DetailPage = props => ( <fetchserverdata> { data => ( <navigator> <view></view> </navigator> ) } </fetchserverdata> )
If you add 2 more HOCs on top, the above combination process will become very ugly. Relatively speaking, with FaCC, how it is encapsulated, where the data source comes from, and what data the component receives are all more conspicuous.
Performance Optimization
In HOC we can receive props from the host, because props are passed down from HOC, so we also have For the complete life cycle, we can use shouldComponentUpdate optimization. This is not the case with FaCC. Props cannot be compared internally. Props cannot be compared unless an external component is packaged during combination.
Flexibility
FaCC is more flexible than HOC in the combination phase. It does not stipulate how the enhanced component uses the attributes it passes. . The HOC is basically finalized after it is written.
In addition, FaCC will not create a new Component, while HOC will create a new Component and pass props to it.
Summary
Many open source libraries in the community have used the two modes, and there are many articles comparing them. There was also a lot of heated discussion, and of course both models were good for finally solving the problem. Due to different considerations, the choice may be different.
Related recommendations:
React high-order component instance analysis
Instances of controlled components and uncontrolled components in React Detailed explanation
The above is the detailed content of Detailed explanation of functional subcomponents and higher-order components in React. For more information, please follow other related articles on the PHP Chinese website!

调用方法:1、类组件中的调用可以利用React.createRef()、ref的函数式声明或props自定义onRef属性来实现;2、函数组件、Hook组件中的调用可以利用useImperativeHandle或forwardRef抛出子组件ref来实现。

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

怎么调试React源码?下面本篇文章带大家聊聊多种工具下的调试React源码的方法,介绍一下在贡献者、create-react-app、vite项目中如何debugger React的真实源码,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 Mac version
God-level code editing software (SublimeText3)

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment
