New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@react-corekit/use-idle

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-corekit/use-idle

Detecting when the user becomes inactive (idle) or active

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

@react-corekit/use-idle

Detecting when the user becomes inactive (idle) or active.

NPM JavaScript Style Guide

Install

npm install --save @react-corekit/use-idle
yarn add @react-corekit/use-idle

Usage

import React from "react";

import { useIdle } from "@react-corekit/use-idle";

const Example = () => {
  const options = { timeToIdle: 1000 };
  const isIdle = useIdle(options);
  return <div>{isIdle ? "Are you still there?" : "Yes, you are here"}</div>;
};

mousemove event is ignored by default, to include it add the following line to the options object:

const options = { ignoredEventsWhenIdle: [] };

Advanced options

Activity detector allows you to configure some parameters:

  • timeToIdle: number of milliseconds of inactivity which makes activity detector transition to 'idle' (30000 by default)
  • activityEvents: the user events which make activity detector transition from 'idle' to 'active'. The default list of activityEvents is ['click', 'mousemove', 'keydown', 'DOMMouseScroll', 'mousewheel', 'mousedown', 'touchstart', 'touchmove', 'focus']
  • inactivityEvents: the list of events which make the activity detector transition from 'active' to 'idle' without waiting for timeToIdle timeout. By default: ['blur']
  • ignoredEventsWhenIdle: list of events to ignore in idle state. By default: ['mousemove']
  • initialState: can be "idle" or "active" ("active" by default)

Visit: https://react-corekit.github.io/use-idle/ for a minimalistic live demo (Including mousemove event).

Additional documentation

Activity Detector Reference

Standard events Reference

License

MIT © glongh

Keywords

React

FAQs

Package last updated on 16 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts