React Hook for set the page title when the user is shifting focus away from the current window.
To install the hook you can use npm:
npm i use-window-blur-change-title
or Yarn if you prefer:
yarn add use-window-blur-change-title
All you need is simple import the hook:
import { useWindowBlurChangeTitle } from 'use-window-blur-change-title';
And call the hook in the body function component:
useWindowBlurChangeTitle('Hey, please come back');
The hook takes one parameter - the new document title to appear in the blur time of the window. If the user returns to the window (focus), the title will be changed to the one before the change.
Full example:
import { useWindowBlurChangeTitle } from 'use-window-blur-change-title';
export const AppComponent = () => {
useWindowBlurChangeTitle('Hey, please come back');
return <div>Hello GitHub!</div>;
};