React — mouse button press and hold example

Dirask React
2 min readApr 12, 2021

--

Hi there! 👋😊

In this article, I would like to show you mouse button press and hold example in React.

Before we start, I would highly recommend you to check out the runnable example for the solution on our website:
React — mouse button press and hold example

In the beginning, I wanted to tell you that unfortunately there is no press and hold mouse button event in React. 😥
However, I will show you how to perform some logic when the mouse button is pressed and held, and how to break this logic when we stop pressing the button or when our cursor leaves the button field.

Final result:

Press and hold — growing circle div
Press and hold — growing circle div

Below example presents how to create a counter which increments on button press and hold every 0.1s. As the counter increases, the height and width of my element also increase, as they depend precisely on the counter.

In the example I’ve used:

  • useState hook - to manage the counter as App component's state,
  • useRef hook - to create a reference that will help us to set and clear the interval,
  • onMouseDown event - to start incrementing the counter,
  • onMouseUp / onMouseLeave events - to stop incrementing the counter,
  • useEffect hook - to stop the counter when App component is destroyed.

Practical example:

You can run this example here

That’s my version of handling mouse press and hold event in React.
Let me know what you think in the comments. 💬
Maybe you have a better solution? I would be glad if you share it with me! 😊

Thanks for your time and see you in the next posts! 🔥

Write to us! ✉

If you have any problem to solve or questions that no one can answer related to a React or JavaScript topic, or you’re looking for a mentoring write to us on dirask.com -> Questions

You can also join our facebook group where we share coding tips and tricks with others! 🔥

--

--

Dirask React

We share coding tips and tricks in React❤️ 💻 🙂. We help to solve React problems at http://dirask.com