ngx-debounce-click
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

ngx-debounce-click

A simple Angular Directive to easily debounce click events.

Installation

To install this library, run:

npm install ngx-debounce-click --save

and then from your Angular AppModule:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { NgxDebounceClickModule } from 'ngx-debounce-click';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    NgxDebounceClickModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Component

Once the library is imported, you can use the ngx-debounce-click directive.

import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms';
import { Observable } from 'rxjs/Observable';

@Component({
  selector: 'app-root',
  template: `
    <h1>ngx-debounce-click</h1>

    {{count}}

    <button (click)="count = count + 1">Regular Click</button>

    <button ngxDebounceClick (debouncedClick)="count = count + 1">Debounced Click</button>
  `
})
export class AppComponent {
  count = 0;
}

License

MIT © Cory Rylan

Readme

Keywords

none

Package Sidebar

Install

npm i ngx-debounce-click

Weekly Downloads

6

Version

0.0.1

License

MIT

Unpacked Size

28 kB

Total Files

15

Last publish

Collaborators

  • splintercode