1.0.1 • Published 7 years ago

ngx-inactivity v1.0.1

Weekly downloads
102
License
MIT
Repository
github
Last release
7 years ago

ngx-inactivity

Angular (4.x+) directive to handle user inactivity. Very helpful especially in validated projects.

Installation

Using NPM:

npm install ngx-inactivity --save

Requirements

Usage

In your app.module file:

import { NgxInactivity } from 'ngx-inactivity';

@NgModule({
  ...
  imports: [
    NgxInactivity
  ]
  ...
})

In your app.component.html file:

<div class="app" (ngxInactivityCallback)="handleInactivityCallback()">

In your app.component.ts file

export class AppComponent {

  /**
   * Handle inactivity callback
   */
  public handleInactivityCallback() {
    // Sign out current user or display specific message regarding inactivity
  }
}

Options

  • ngxInactivity - inactivity timeout in minutes (15 minutes by defualt)
  • (ngxInactivityInterval) - inactivity time interval in mili seconds (1000 ms by default)
  • ngxInactivityCallback - event emitter to handle inactivity callback

Examples

  • Add callback "handleUserInactivity" after 10 minutes of user's inactivity (no mouse moves, clicks or keypresses):
<div
  [ngxInactivity]="10"
  (ngxInactivityCallback)="handleUserInactivity()">
  Application template..
</div>