DEV Community

Cover image for ⚖️ 5 Useful and Modern Custom Hooks for your React App 🌟
Victor de la Fouchardière
Victor de la Fouchardière

Posted on • Updated on

⚖️ 5 Useful and Modern Custom Hooks for your React App 🌟

Hey guys 😃

Since the introduction of Hooks in React, you may have used the same repetitive and redundant state logic inside several components. But with the Hooks, we can do it in a much simpler and cleaner way, thanks to Custom React Hooks.

The different hooks shared in this article are simple and avoid code repetition.

5 Custom hooks for you !

You will find below several custom Hooks without the need to download packages on npm or yarn.

Meme Studio React Hooks

Created with meme-studio.io

This will allow you to modify them as you wish.

A custom Hook is a JavaScript function whose name starts with use and that may call other Hooks. For example, useTheme below is our first custom Hook.

Your version of React must be at least 16.8.

useTheme:

Let's start with a simple custom React Hook to help you implement a "light/dark mode" component for your application. The user setting persists to localStorage and the default value is the prefers-color-schema value if this one is supported.

This hook makes it easy to dynamically change the appearance of your app using CSS variables.

The hook:

And for the CSS, just use the data-theme attribute and the power of CSS variables to create our themes.


useViewport:

The hook will allow you to easily manage the viewport of the user's device. You will be able to retrieve the width of the screen but also to know if the screen size corresponds to a mobile, a tablet or a desktop.

The hook

How to use it:

Your components may be different depending on the width of the screen, but here is an idea of how to use this custom React hook.

React useViewport


useClipboardApi:

Do you want to copy a text or an image and read the content from the clipboard ? Well here is a custom Hook using the new Clipboard API.

Feel free to read this article How to Copy an Image or a Text to Clipboard in Javascript I wrote to understand how this API works and the browsers that support it.

In this hook, two important things:

  • Reading and writing to the clipboard are asynchronous.
  • 2 permissions are required to use the read and write methods of the clipboard.

The hook:

How to use it:

A very popular feature on websites is the ability to copy an element to your clipboard by a single click to a button. Let's copy a dynamic text value!

React useClipboardAPI


usePageVisibility :

Have you ever wondered if the tabs/windows are using precious CPU time? Thanks to the Page Visibility API, we can detect when users are not viewing or interacting with our website, saving them valuable resources.

The visibility API allows a developer to know when a page has lost the focus. The API sends a visibilitychange event of the visibility of the page.

So it can be used for things like:

  • Pause a video when the page has lost user focus.
  • Change the page title.
  • Stop an HTML5 canvas animation when a user is not on the page.
  • Display a notification to the user only when the page is active.
  • Stop the movement of a carousel.

The hook:

How to use it:

Let's change the title of the page if the user is not viewing the page.

React usePageVisibility


useScroll:

With this hook, you'll be able to control the scroll y of the page and to go back to the top/bottom with a smooth scroll. This can allow you to create an infinity scroll (fetch() when isAtBottom is true).

The hook:

How to use it:

Let's show a newsletter popup if the user has scrolled to the bottom of the page.

React useScroll

Voilaaa !

Feel free to use these modern hooks ! The links to the gists associated with this article can be found below:

Cheers !

Top comments (3)

Collapse
 
c_v_ya profile image
Constantine

Man, this is golden! At least for me, since I don't know much about React 😅 Thank you! Yet, I started wondering about performance issues as pointed in a comment by Federico.

Collapse
 
mmcshinsky profile image
Michael McShinsky

These are great! useIsMounted is one my favorites as of late too.

Collapse
 
adrianmarkperea profile image
Adrian Perea

Very practical. Thanks!