React HooksPrefaceIn the previous three years of work, I have been using classes to write front-end functional pages. In fact, I have been exposed to hooks for some time. The first time I came into contact with it was when I was watching a course about electron+react projects. At that time, I was mainly looking at electron, so I didn't pay special attention to hooks. It may also be because of my long-term familiarity with classes, and at that time I had some resistance to the functional writing style of hooks. However, due to the industry's positive reviews of hooks, I once wanted to use hooks to start a project. However, due to the project cycle at the time and the existing technology stack, I never had the opportunity to put it into practice. Because I have been using react hooks+ts for new projects recently. So, we have to start using hooks. In fact, as far as functional development is concerned, there is nothing wrong with just copying others. However, since there has been no systematic and in-depth understanding of hooks, in many cases, it is not clear why to use them in this way. So recently I found "React Hooks Core Principles and Practice" to study. Re-examine the use of hooks and why they should be used at the usage and reason level. Further thinking is done on the benefits of functional writing. In fact, to a certain extent, I have only scratched the surface. Here I am just recording what I have learned during this period. Why Hooks?A big highlight of Hooks is that business logic can be reused. This is especially evident in hooks. For example, if you want to monitor changes in window size in a normal class, you have to add a monitoring event in the component after mounting. However, if this window size monitoring function is needed in another place, this logic code cannot be reused and can only be rewritten in that component. However, in hooks, we can encapsulate this part of the monitoring logic code in hooks mode, and fully achieve logical reuse. For Class
For FunctionOne of the core of React is to realize a binding from State data to View level. Using functions is actually a better way to solve the mapping problem from State to View. However, using functions as the carrier of React will cause two problems: the preservation of state in the function and the life cycle methods .
Illustration: An execution process (Execution), such as the function component itself, can be bound to (hooked into) the traditional State, or URL, or even the size of the window. In this way, when the State, URL, or window size changes, a function will be re-executed to produce updated results. Classes vs Hooks
//High-level components in Class implement resize method reuse //1. Declaration of high-level components const withWindowSize = Component => { // Generate a high-level component WrappedComponent, which only contains the logic of monitoring window size class WrappedComponent extends React.PureComponent { constructor(props) { super(props); this.state = { size: this.getSize() }; } componentDidMount() { window.addEventListener("resize", this.handleResize); } componentWillUnmount() { window.removeEventListener("resize", this.handleResize); } getSize() { return window.innerWidth > 1000 ? "large" : "small"; } handleResize = () => { const currentSize = this.getSize(); this.setState({ size: this.getSize() }); } render() { // Pass the window size to the real business logic component return <Component size={this.state.size} />; } } return WrappedComponent; }; //2. Component MyComponent uses the resize function in the high-order component class MyComponent extends React.Component{ render() { const { size } = this.props; if (size === "small") return <SmallComponent />; else return <LargeComponent />; } } // Use withWindowSize to generate a high-order component to generate the size attribute and pass it to the real business component export default withWindowSize(MyComponent);
//Hooks uses the hooks method to reuse the resize logic //Define the useWindowSize hook const getSize = () => { return window.innerWidth > 1000 ? "large" : "small"; } const useWindowSize = () => { const [size, setSize] = useState(getSize()); useEffect(() => { const handler = () => { setSize(getSize()) }; window.addEventListener('resize', handler); return () => { window.removeEventListener('resize', handler); }; }, []); return size; }; //Use this hook in the function component const Demo = () => { const size = useWindowSize(); if (size === "small") return <SmallComponent />; else return <LargeComponent />; };
Hooks can aggregate the code for the same business logic as much as possible. In the Class component, the same business logic code has to be scattered in different life cycle methods of the class component. Illustration: The left side is the Class component, and the right side is the function component combined with Hooks. Blue and yellow represent different business functions How do Hooks save component state and use lifecycle? React provides a total of 10 1. useState: Allow functions to maintain stateOne principle we should follow is that the state should never store values that can be calculated, for example:
2. useEffect: Execute side effects A side effect is a piece of code that has no effect on the outcome of the current execution. For example, if you want to modify a variable outside a function, you need to initiate a request. Format: Points to note when using useEffect: If there are no dependencies, it will be re-executed after each render useEffect(()=>{ console.log('re-render') //Execute every time render is completed})
useEffect(()=>{ console.log('did mount') //equivalent to componentDidMount },[])
const [size,setResize] = useState({}) useEffect(()=>{ const handler = () => { setResize() } window.addEventListener('resize',handler) return ()=>{ window.removeEventListener('resize',handler) } },[]) Summarize
This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to build DockerHub yourself
>>: MySQL data operation-use of DML statements
By default, PHP on CentOS 7 runs as apache or nob...
Preface: Use watermark effect in vue project, you...
1. Add MySQL Yum repository MySQL official websit...
Demand background The project is made using Vue, ...
frame: Style=”border-style:solid;border-width:5px;...
Mysql installation, configuration, and optimizati...
"Development is more than just writing code&q...
Table of contents Overview Same Origin Policy (SO...
<br />Web Design and Production Test Part I ...
The META tag, commonly referred to as the tag, is...
The project requirements are: select date and tim...
The display effects on IE, Fir...
Table of contents 1. Example 2. Create 100 soldie...
tar backup system sudo tar cvpzf backup.tgz --exc...
Today, my colleague encountered a very strange pr...