It was my last day of work and I'm happy I finished my remaining tasks on time. And now, it's time for me to move on to my next journey. The only reason I took the job was for me to get enough experience to build my own app. So I already planned it that I will quit my job after 3 years since I signed the 3-year bond contract. Didn't know that it was tough having one source of income but I think I'm good since I'm still living with my parents... There are times that I compare my income and life to my coworkers, same age brackets and shit... which resulted for me to lose my focus and my mind shifted a lot of times, and I think it's a waste of time to repeat it again. But... at the end of the day... I'm just too lazy I guess and I think that a day job is not suited for me. I'm more of the build one app and make it rain type of guy... Don't even know what to do now!!! I guess I'll try playing stocks and multiplying my money while trying to build my ...
ReactJS vs Javascript vs JQuery
Here is the javascript:Here is the jquery:
And, most especially using ReactJS:
Code
So since my favorite is react let's break down the code one by one. And then
later on you'll realize it is so easy to create a toggle or use any condition
with react.
Of course before anything else we need a react template
where all the basic imports are already available to use. Since I'll be using
codepen here's my template just in case you want to create a react
pen: https://codepen.io/noobieprogrammer/pen/VwaRrJb
First we add a button:
![]() |
ReactJS Button | Noobie Programmer |
And some text inside a div that we wanted to hide:
but nothing is happening right? so let's add a state variable named show. What we want is to toggle it from true to false and vice versa everytime we click the button. So first let's initialize it to false in the constructor since we want the div to be hidden first once the page is loaded:
Then let's create a toggle method who will toggle the show variable everytime the function is called:
Let's pass it on the onClick property of the button. Also, let's change the text of the button so that it changes depending on the state of the show variable:
And one last thing is to add an if else condition on the div using the ternary operator. Show it if the show variable is true otherwise return null or basically nothing.
The only problem with JQuery is it's hard to maintain when the code or logic becomes bigger and more complex.
But, with ReactJS we could easily store and update the state variables however we want to. It's fast, easy to read, and most importantly beginner friendly.
but nothing is happening right? so let's add a state variable named show. What we want is to toggle it from true to false and vice versa everytime we click the button. So first let's initialize it to false in the constructor since we want the div to be hidden first once the page is loaded:
![]() |
React constructor - initialized show to false | Noobie Programmer |
Then let's create a toggle method who will toggle the show variable everytime the function is called:
![]() |
Toggle method | Noobie Programmer |
Let's pass it on the onClick property of the button. Also, let's change the text of the button so that it changes depending on the state of the show variable:
![]() |
Passing the onclick method | Noobie Programmer |
And one last thing is to add an if else condition on the div using the ternary operator. Show it if the show variable is true otherwise return null or basically nothing.
And we are done! and here's the final code:
Conclusion
As what you can see from the code above, it is easy to create a ReactJS toggle hide/show when compared to vanilla javascript. It's almost as easy as in JQuery.The only problem with JQuery is it's hard to maintain when the code or logic becomes bigger and more complex.
But, with ReactJS we could easily store and update the state variables however we want to. It's fast, easy to read, and most importantly beginner friendly.
Talk is cheap, show me the code. - Linus Torvalds
If you like to learn more, buy the best book for learning
ReactJS: https://amzn.to/33Z79Yl
Loving the article? Then please follow:
π Youtube
π Twitter
π Instagram
to keep you up to date with my new tutorials!!! πππ
Comments
Post a Comment