Monday 5 September 2022

A comprehensive guide on advanced React Component Patterns

 

A comprehensive guide on advanced React Component Patterns


What are React Patterns?

React Patterns means how react handle the flow of code, which type of criteria it followed and how to manage whole things, it’s all about its workflow life cycle.

Component patterns in react

Higher-Order Component

Once you create one component and that code will be used in your entire project more than one time that time you take the component as HO, C first you create a component in your project you can use multiple times in your project, that is a benefit you do not have to write a code more and more time its increase the higher performance of React its also increase the readability of React.

Example:

<xmp>
import React from &#39;react&#39;;// Take in a component as argument WrappedComponentconst higherOrderComponent = (WrappedComponent) => {// And return another component
class HOC extends React.Component {
render() {
return <wrappedcomponent />;
}
}
return HOC;};
</xmp>

Passing props:

React is unidirectional it decreases the complexity of code it makes it easier for developers. Data are passed from parent component to child components and the entire process of the props will be immutable it's just getting the direction from parent to a child not change the props value.

Reused Component: react is component-based, in react you can read any component in the other component its also increase the readability of React.

Spread and Rest operators :

The spread operator allows you to get elements out of an array (=> split the array into a list of its elements) or get the data out of an object.

Spread: used to split up array element or object properties:

Rest: used to merge a list of function arguments into an Array

Destructuring:

Array Destructing: easily extract array elements and store them in a variable.

<xmp>
[a,b] = [ &lsquo;add&rsquo; , &rsquo;sub&rsquo;]
Console.log (a );
// Print &ldquo;add&rdquo;
Console.log (b );
//print &ldquo;sub&rdquo;
Object Destructing:easily extract object element and strore them in variable.
{name} = { name: &rsquo;max&rsquo; , age:29 }
Console.log(name);
//print max
Console.log(age);
//print undefined
</xmp>
 

Conditioal Rendering

If-Else Condition operator :

<xmp>
if(a>b)
{
console.log(a);
}
else
{
console.log(b);
}
</xmp>

Ternary operator :

<xmp>
render() {
return (<div>
<warningbanner warn="{this.state.showWarning}" /><button onclick="{this.handleToggleClick}">
{this.state.showWarning ? &#39;Hide&#39; : &#39;Show&#39;}</button></div>
);
}
</xmp>

Array and list:

<xmp>
function NumberList(props) {
const numbers = props.numbers;
const listItems = numbers.map((number) =><li>{number}</li>
);
return (<ul><li>{listItems}</li></ul>
);
}
const numbers = [1, 34, 3, 4, 52];
ReactDOM.render(
<numberlist numbers="{numbers}" />,
document.getElementById(&#39;root&#39;)
);
</xmp>

Keys: is a uniquely identify the rows which data is deleted updated that time it's useful for apply unique id.

<xmp>
const numbers = [1, 34, 3, 4, 52];
const listItems = numbers.map((number) =><li key="{number.toString()}">
{number}</li>
);
</xmp>
contextAPI
[contextAPI]

Create the Provider

First, we have to create a provider which is defined in syntax and pass the value in the value tag after creating the provider you have to create a consumer and initialize and create the consumer creation. Which define all syntax in the below code and consider the one example you getting more easily thorough this code

<xmp><mycontext.provider value="{"></mycontext.provider></xmp>

Create the consumer

<xmp> < MyContext.Consumer>
{value => / create context value/}
</xmp>

Initializing Content:

<xmp>
export const ThemeContext = React.createContext({ theme: themes.dark, toggleTheme: () => {},});
</xmp>

Consumer Creation:

<xmp>
function Layout() {
return (<div> <sidebar /> <content /></div>
);}
// A component may consume multiple contextsfunction Content() {
return ( <themecontext.consumer>
{theme => ( <usercontext.consumer>
{user => ( <profilepage theme="{theme}" user="{user}" />
)} </usercontext.consumer> )}
</themecontext.consumer> );}
</xmp>

Looking to Hire React Developers ?
Your Search ends here.

 

Layout component:Layout Component work like that

As its name states - it defines the layout of the application. It simply accepts children as props and renders them to the DOM together or without other child components.

<xmp>
import React from &#39;react&#39;;
const Layout =({children}) =>{
return(
<><div>
<toolbar />
<sides />
<backdrop /></div>
<main>{children}</main>
</>
)}
export default Layout;
</xmp>

Hooks Component:

Hooks and their advanced features are established in ES6. Using the hooks component, we can set the state in the function component. We can even use componentDidMount and componentUnmount with hooks components to pass the context.

UseState:

It is a Hook (function) that allows you to have state variables in functional components.

Example:

<xmp>
import React, { useState } from &#39;react&#39;;
function Example() { // Declare a new state variable, which we&#39;ll call &quot;count&quot; const [count, setCount] = useState(0);
return (<div><p>You clicked {count} times</p><button onclick="{()"> setCount(count + 1)}> Click me</button></div>
);}
</xmp>

useEffect():

React has a built-in hook called the use effect. Hooks are used in functional components.

If using class components in that no have to build the use effect. Use effects only work for the Functional component

Three phases are supported in useEffect():

  • componentDidMount

  • componentDidUpdate

  • componentWillUnmount

<xmp>
useEffect(()=>{
console.log(&lsquo;render&rsquo;);
return()=>console.log(&lsquo;unmounting&rsquo;);
})
</xmp>

Here, you have to just pass some value in an empty array which is defined in a syntax that runs on the mount and on unmount time. It does not get any load time or refresh page time.

<xmp>
useEffect(()=>{
console.log(&lsquo;render&rsquo;);
return()=>console.log(&lsquo;unmounting&rsquo;);
})
</xmp>

useContext()

The current context value is considered by the value prop of the first above the calling component in the above tree.

The useContext( ) method accepts a context within a functional component and works with a . Provider and. Consumer component in one call.

<xmp>
Const value=useContext(MyContext);
const themes = {
light: {
foreground: &quot;#000000&quot;,
background: &quot;#eeeeee&quot;
},
dark: {
foreground: &quot;#ffffff&quot;,
background: &quot;#222222&quot;
}};
const ThemeContext = React.createContext(themes.light);
function App() {
return (
<themecontext.provider value="{themes.dark}"> <toolbar /> </themecontext.provider>
);}
function Toolbar(props) {
return (
<div> <themedbutton /></div>
);}
function ThemedButton() { const theme = useContext(ThemeContext); return (<button background:="" style="{{" theme.background=""> I am styled by theme context!</button> );}
</xmp>

Conclusion

React component patterns concept is all about the features and functionalities used in React platform. In this blog, we have gone through various kinds of libraries used in React.


No comments:

Post a Comment

Unleash the Power of Explainable AI in Banking Software Development

  What exactly is Explainable AI? Explainable AI (XAI) is a subfield of Artificial intelligence (AI) that focuses on developing algorithms a...