use-window-blur-change-title
v1.0.6
Published
React Hook for set the page title when the user is shifting focus away from the current window.
Downloads
5
Maintainers
Readme
use-window-blur-change-title
React Hook for set the page title when the user is shifting focus away from the current window.
Installation
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
Usage
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>;
};