Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 28, 2020 05:45 pm GMT

All the use cases of useState I use in my projects.

In this post I will discuss the ways in which I use useState in my projects.

1. To get API data from backend and store it in state.

const [data,setdata]=useState([])useEffect(()=>{const getdata = async () =>{const res = await axios.get(apiurl)setdata([{...res.data}]}getdata()},[])
Enter fullscreen mode Exit fullscreen mode

As I use MongoDB most of the time, the data which comes from the backend is in object/JSON form.

So to send the data from

  • The frontend in forms and
  • To get the data from the backend,

I initialize a null or an empty state and get that backend data or the frontend data and push it to the useState variable and display it with map function.

I use map function because I initialized an empty array and inserted object data into it as map function works only for arrays.

Spread operator [...] is used here because when we want to get data from an API we will not require all the data present inn it and want only a select few.

So to persist the existing data in the array we use spread operator.

I have added spread operator here just to show there is an use case for it in useState as well.

2. For True or false values.

const[open,setopen] = useState(false){{open && <div>If I Click a button or any other condition I wish or have show this div </div>}}
Enter fullscreen mode Exit fullscreen mode

Literally the most used use case of useState in workflow.

Whenever the logic permits to have a boolean condition such as show something when I click a button, I just plugin this condition to get the job done!

3. Regular State management and to pass as props

const [data,setdata] = useState('2')<Component data={data}/>
Enter fullscreen mode Exit fullscreen mode

This one is the most basic one which all of React developers use, but just to aid beginners I have mentioned it here.

Like the first use case I mentioned above, I can just pass data into an empty array and pass it as props to another component and use my data there.

This will be very useful if you want to create a card like component with map function and output it in the frontend which I do all the time.

And that's some of my most used useState use cases I have mentioned here.

There are a lot more ones which more experienced senior react.js developers may use which I do not know.

If you know any other cases than the mentioned ones here, please mention it in the comments.

Thank you for reading!!

Check out my portfolio: Gautham's portfolio

Check out my blog: coding-magnified.tech

My Other Articles:


Original Link: https://dev.to/gautham495/all-the-use-cases-of-usestate-i-use-in-my-projects-22o7

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To