<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>React programming &gt; Metasys Software Pvt Ltd.</title>
	<atom:link href="https://ikfstage.metasyssoftware.com/tag/react-programming/feed/" rel="self" type="application/rss+xml" />
	<link>https://ikfstage.metasyssoftware.com</link>
	<description></description>
	<lastBuildDate>Fri, 22 Jul 2022 12:16:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Our experience of using React Hooks and what you can learn from it!</title>
		<link>https://ikfstage.metasyssoftware.com/react-hooks-and-what-you-can-learn-from-it/</link>
					<comments>https://ikfstage.metasyssoftware.com/react-hooks-and-what-you-can-learn-from-it/#respond</comments>
		
		<dc:creator><![CDATA[meta_prasad]]></dc:creator>
		<pubDate>Fri, 24 Jul 2020 10:51:48 +0000</pubDate>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[React]]></category>
		<category><![CDATA[React programming]]></category>
		<category><![CDATA[React JS]]></category>
		<category><![CDATA[React developer]]></category>
		<category><![CDATA[React Native app development]]></category>
		<category><![CDATA[React native developer]]></category>
		<category><![CDATA[React mobile app development]]></category>
		<category><![CDATA[React Hooks]]></category>
		<guid isPermaLink="false">https://development.ikf.in/metasys1/?p=3131</guid>

					<description><![CDATA[<p>React JS is now a very popular programming language. React Hooks has unlocked new capabilities and allows you to create great applications. It allows one to write very compact code. We share our experience of how we have used React Hooks. We assume here that you have some React Programming knowledge. React Hooks are functions &#8230;</p>
<p class="read-more"> <a class="" href="https://ikfstage.metasyssoftware.com/react-hooks-and-what-you-can-learn-from-it/"> <span class="screen-reader-text">Our experience of using React Hooks and what you can learn from it!</span> Read More &#187;</a></p>
The post <a href="https://ikfstage.metasyssoftware.com/react-hooks-and-what-you-can-learn-from-it/">Our experience of using React Hooks and what you can learn from it!</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></description>
										<content:encoded><![CDATA[<p>React JS is now a very popular programming language. React Hooks has unlocked new capabilities and allows you to create great applications. It allows one to write very compact code. We share our experience of how we have used React Hooks. We assume here that you have some React Programming knowledge.</p>
<p>React Hooks are functions that allow you to hook into React lifecycle and state features. They primarily serve as an alternative for classes. They can help in keeping your components clean and perform better. Hooks are a recent  addition in React version 16.8.0.</p>
<p>In this article, we are going to show you how to convert a React class into a functional component using the useState Hook.</p>
<p>Hooks don’t work inside classes because they let you use React without classes. We will use the built-in hooks instead of React lifecycle methods. Eg. useState, useEffect, useRef etc.</p>
<p>We are covering useState, useEffect, useRef React hooks in this article. useState() is used to replace the constructor functions and state declarations. While useEffect() is used to replace componentDidMount() and componentDidUpdate(). You can use useEffect as many times as you need to in single component. And the last one, useRef has another cool usage besides DOM refs, it is also a generic container whose current property is mutable, it also can hold any value similar to an instance property of a class.</p>
<p><strong>Steps to convert a React class component into a functional component using React Hooks –</strong></p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-3132" src="https://development.ikf.in/metasys1/wp-content/uploads/2022/07/Our_experience_of_using_React_1.png" alt="React Hooks " width="655" height="512" /></p>
<p>Step 1. Change ‘class ComponentName extends Component’ With ‘function ComponentName(props)‘</p>
<p>Step 2. Remove “this.” And “this.state” from the entire component.</p>
<p>Step 3. import React, { useState } from ‘react’</p>
<p>Step 4. Remove the constructor. Add its logic as shown above in the image for initializing the state variables with the help of useState hook.</p>
<p><strong>Let’s understand conversion into useState, useEffect and useRef with examples –</strong></p>
<ul>
<li><strong>useState() Hook –</strong></li>
</ul>
<p>The parameter of the useState hook is the initial value of the state. This hook provides the array with two values – the first is the name of the state and the second is the function name which updates the value of that state.</p>
<p>Eg.</p>
<p>const [num, setNum] = useState(0); //declaration</p>
<p>setNum(10) //use</p>
<p>Here num is the state name, setCount is the function that you can use anywhere in the component to update that state.</p>
<p>Here are some examples of setting or initializing state variables for different data types –</p>
<p>//Set an Integer</p>
<p>const [num, setNum] = useState(0);</p>
<p>setNum(10);</p>
<p>&nbsp;</p>
<p>//Set a String</p>
<p>const [name, setUsername] = useState(‘John’);</p>
<p>setUsername(‘Smith’);</p>
<p>&nbsp;</p>
<p>//Set a Boolean</p>
<p>const [isValid, setIsValid] = useState(false);</p>
<p>setIsValid(true);</p>
<p>&nbsp;</p>
<p>//Set and Array</p>
<p>const [items, setItems] = useState([]);</p>
<p>setItems([0,1,2,3,4]);</p>
<p>setItems([{id:0, color:”red”},{id:1, color:”green”},{id:2, color:”blue”}]);</p>
<p>&nbsp;</p>
<p>//Set and Object</p>
<p>const [form, setValues] = useState({</p>
<p>id: 0,</p>
<p>firstName: ‘’,</p>
<p>lastName: ‘’,</p>
<p>subscribe: false</p>
<p>})</p>
<p>&nbsp;</p>
<p>setValues({</p>
<p>…form,</p>
<p>firstName: ‘Jamie’,</p>
<p>subscribe: true</p>
<p>})</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<ul>
<li><strong>Replace lifecycle methods (compentDidMount, componentWillUnmount,</strong></li>
</ul>
<p><strong> componentWillReceiveProps, componentDidUpdate) with useEffect</strong></p>
<p>&nbsp;</p>
<p>e.g.</p>
<p>const [items, setItems] = useState([]);</p>
<p>const [num, setNum] = useState(0);</p>
<p>&nbsp;</p>
<ol>
<li>compentDidMount</li>
</ol>
<p>&nbsp;</p>
<p>useEffect(()=&gt;{</p>
<p>setItems(items);</p>
<p>}, [])   // Here empty array indicates don&#8217;t look for any updates</p>
<p>&nbsp;</p>
<p>b.componentWillUnmount</p>
<p>&nbsp;</p>
<p>useEffect(()=&gt;{</p>
<p>return () =&gt; {console.log(‘unmounting the component’)}</p>
<p>},[])</p>
<p>&nbsp;</p>
<p>c. componentDidUpdate/componentWillReceiveProps</p>
<p>This will get executed when your ‘num’ state variable and ‘id’ props will get updated.</p>
<p>&nbsp;</p>
<p>useEffect(()=&gt;{</p>
<p>if (!isEmpty(num))</p>
<p>{</p>
<p>console.log(‘num changed = ’,num);</p>
<p>setItems(items);</p>
<p>}</p>
<p>&nbsp;</p>
<p>if(!isEmpty(props.id))</p>
<p>{</p>
<p>console.log(‘props.id changed = ’,props.id);</p>
<p>}</p>
<p>},[num, props.id])</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<ul>
<li><strong>Use of </strong><strong>useRef</strong></li>
</ul>
<p>&nbsp;</p>
<p>const [num, setNum] = useState(0);</p>
<p>const prevNumRef = useRef();</p>
<p>useEffect(()=&gt;{</p>
<p>prevNumRef.current = num;</p>
<p>})</p>
<p>const prevNum = prevNumRef.current;</p>
<p>return &lt;h1&gt;Current value : {num}, previous value = {prevNum}&lt;/h1&gt;</p>
<p>&nbsp;</p>
<p><strong>Advantages</strong></p>
<p>1.With React hooks, the component will be cleaner and easier to read (fewer lines of code). Hooks are easier to work with and to test.</p>
<p>2.It is easy to make code reusable. They don’t create another element in DOM like HOCs in React do.</p>
<p>3. useState &#8211; it allows to update different states with specific functions. The ability to move the state update logic as a separate hook.</p>
<p>&nbsp;</p>
<p><strong>Disadvantages </strong></p>
<p>1.useEffect hook allows to merge three lifecycle methods such as componentDidMount, componentWillUnmount and componentDidUpdate into one and the issue with useEffect is the second parameters ,i.e. the array that we need to pass to define this behaviour. It is not explicit enough.</p>
<p>2.React Hooks are new additions to React. So to convert and test a complex class can be a time-consuming task initially .</p>
<p>3.Since it is relatively a new addition it may not be compatible with all third party libraries. But this is rapidly changing .</p>
<p>This is all about React Hooks in a nutshell. If you are looking to build any a mobile or web application using React technology, then please <a href="https://development.ikf.in/metasys1/contact">contact us</a>.</p>
<p>Happy coding!</p>The post <a href="https://ikfstage.metasyssoftware.com/react-hooks-and-what-you-can-learn-from-it/">Our experience of using React Hooks and what you can learn from it!</a> appeared first on <a href="https://ikfstage.metasyssoftware.com">Metasys Software Pvt Ltd.</a>.]]></content:encoded>
					
					<wfw:commentRss>https://ikfstage.metasyssoftware.com/react-hooks-and-what-you-can-learn-from-it/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
