ng-custom-alert
v0.0.4
Published
Customizable alert library for Angular applications.
Downloads
60
Maintainers
Readme
CustomAlert
This library was generated with Angular CLI version 18.2.0.
This is a custom Angular library that provides alerts with support for auto-close, customizable alert types, and more.
Installation
You can install the library via npm:
npm install ng-custom-alert --save
Usage Example
import { AlertComponent } from 'ng-custom-alert'; import { NotificationService } from 'ng-custom-alert';
@Component({ .. standalone: true, imports: [AlertComponent] })
In HTML
<lib-alert *ngIf="alertMessage" [message]="alertMessage?.message" [type]="alertMessage?.type" [customConfig]="alertMessage?.customConfig" [globalConfig]="globalConfigValue"
In Component
globalConfigValue = { keepAfterRouteChange: false, position: 'top-right', animate: 'fade', showProgressBar: true, pauseOnHover: true, closeOnClick: true, pauseOnFocusLoss: true, height:'100px', width:'100px', autoClose: true, duration:5000 };
alertMessage: any = { message: '', type: 'success', customConfig: {} };
constructor(private notificationService: NotificationService) { this.notificationService.currentSource.subscribe(message => { this.alertMessage = message; }); }
showSuccess() { this.notificationService.showMessage('This is a success message', 'success', { position: 'top-center' }); }
Explaination
The above example demonstrates how to set the component and HTML, and how to pass values to utilize the ng-custom alert.
Default Configuration: When set, it applies to all alerts.
Custom Configuration: When set, it applies only to the particular alert.
In both default and custom configurations, JSON values can be customized as needed.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Publishing
After building your library with ng build custom-alert
, go to the dist folder cd dist/custom-alert
and run npm publish
.
Running unit tests
Run ng test custom-alert
to execute the unit tests via Karma.
Further help
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.