ngx-bootstrap-growl
TypeScript icon, indicating that this package has built-in type declarations

0.0.7 • Public • Published

ng-bootstrap-growl - Angular >= 2 service to show Bootstrap 4 growl (alert)

Features

  • add custom growl alerts somewhere in your application
  • specify a maximum of alerts to show
  • specify a timeout for the alerts
  • display HTML in your alert
  • specify whether an alert should be dismissable or not
  • use all Bootstrap alert types

Demo

TBD

Dependencies

Installation

You need to install and configure the dependencies above, afterwards:

npm install --save ngx-bootstrap-growl

After installation, add the service and the component to your module:

import {BootstrapGrowlComponent, BootstrapGrowlService} from "ngx-bootstrap-growl";
@NgModule({
    imports: [
        // ...
        BootstrapGrowlModule
    ],
    // ...
})

Integration

Add the component somewhere in your root template:

<bootstrap-growl [alertCount]="3" [autoClose]="10000"></bootstrap-growl>

Parameters (optional)

  • alertCount: maximum number of alerts to show (defaults: 999)
  • autoClose: time in milliseconds (defaults: -1 - never closed)

Style

You can configure the display area of the alerts however you want. Just use the following selector:

bootstrap-growl{
  position:absolute;
  right:8px;
  top:8px;
  z-index:10;
}

Usage

export class AnyComponent{
  constructor(private bootstrapGrowlService: BootstrapGrowlService) {
  }
 
  addGrowlAlert(){
    //general usage
    this.bootstrapGrowlService.addAlert([message: string], [type: BootstrapAlertType], [dismissable?: boolean]);
    //examples
    this.bootstrapGrowlService.addAlert("any custom message", BootstrapAlertType.SUCCESS);
    this.bootstrapGrowlService.addAlert("any custom message <b>with</b> HTML", BootstrapAlertType.INFO);
    this.bootstrapGrowlService.addAlert("any custom message", BootstrapAlertType.WARNING);
    this.bootstrapGrowlService.addAlert("any custom message", BootstrapAlertType.DANGER, false);
  }
}

Package Sidebar

Install

npm i ngx-bootstrap-growl

Weekly Downloads

35

Version

0.0.7

License

MIT

Last publish

Collaborators

  • mbenzenhoefer