
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@pluritech/dialog-service
Advanced tools
This library abstracts the job bringing modals pre-componentized as alert, confirm and prompt. This is built based on [ng2-bootstrap-modal](https://github.com/ankosoftware/ng2-bootstrap-modal).
This library abstracts the job bringing modals pre-componentized as alert, confirm and prompt. This is built based on ng2-bootstrap-modal.
To install this library, run:
$ npm install @pluritech/dialog-service --save
$ npm install ng2-bootstrap-modal --save (Temporary)
$ npm install bootstrap --save (Optional)
You can also use your custom css, see the docs in ng2-bootstrap-modal
Import bootstrap css in Angular CLI.
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.css"
]
and then import it in your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import the library like the following:
import { DialogServiceModule } from '@pluritech/dialog-service';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Specify the library as an import
DialogServiceModule.forRoot()
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once your library is imported, you can use its components (dialogs) in your Angular application:
import { Component } from '@angular/core';
import { Validators } from '@angular/forms';
import { DialogModalService } from '@pluritech/dialog-service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
constructor(private dialogModalService:DialogModalService<any>) {}
public openModals() {
// Opennig Alert Modal
this.dialogModalService.openAlert({
message: 'Hi, im alert modal!',
btnClass: 'btn-primary'
}).subscribe((res) => console.log('openAlert response', res));
// Opennig Confirmation Modal
this.dialogModalService.openConfirm({
btnNo: 'Cancel',
btnYes: 'Ok',
message: 'Hi, im alert confirm modal!',
title: 'Confirm Modal Title',
btnNoClass: 'btn-danger',
btnYesClass: 'btn-primary',
positionBtnYes: 'right' // Default: Left
}).subscribe(res => console.log('openConfirm response', res));
// Opennig Prompt Modal
this.dialogModalService.openPrompt({
btnNo: 'Cancel',
btnYes: 'Signup',
title: 'Add Person',
fields: [
{
idField: 'name',
label: 'Name',
placeholder: 'John',
type: 'text',
validators: [],
valueDefault: ''
},
{
idField: 'age',
label: 'Age',
placeholder: '26',
type: 'number',
validators: [Validators.required],
valueDefault: ''
}
]
}).subscribe(res => console.log('openPrompt', res));
}
title = 'app';
}
Every modal returns a subscribe with receives the response data.
Modal | Type of response |
---|---|
Alert | boolean - always true, it is returned when modal goes closed |
Confirm | boolean - can be true or false |
Prompt | a object that represents the form value with keys being the idField and the respective value |
MIT © mduraes1994 and lucascco
FAQs
This library abstracts the job bringing modals pre-componentized as alert, confirm and prompt. This is built based on [ng2-bootstrap-modal](https://github.com/ankosoftware/ng2-bootstrap-modal).
The npm package @pluritech/dialog-service receives a total of 0 weekly downloads. As such, @pluritech/dialog-service popularity was classified as not popular.
We found that @pluritech/dialog-service demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.