You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

angular-sweetalert-service

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-sweetalert-service

Angular wrapper for SweetAlert2

2.0.2
latest
Source
npmnpm
Version published
Weekly downloads
197
143.21%
Maintainers
1
Weekly downloads
 
Created
Source

Angular wrapper for SweetAlert2

This is a simple wrapper to use SweetAlert in Angular projects, it works with angular-cli also

Install

npm install --save angular-sweetalert-service

or if you prefer Yarn

yarn add angular-sweetalert-service

Include in your app

In your app.module just include the service

...
import { SweetAlertService } from 'angular-sweetalert-service';
...

Then add the service as a provider

@NgModule({
  declarations: [
    ...
  ],
  imports: [
    ...
  ],
  providers: [
    ...
    SweetAlertService,
    ...
  ],
  bootstrap: [
    ...
  ]
})

Now you have the service available across the application. Now you need to call the service in your component and that's it.

// myComponent.ts

...
import { SweetAlertService } from 'angular-sweetalert';

@Component({
  selector: 'app-foobar',
  styles: [],
  templateUrl: './foobar.html'
})
export class MyDummyClass {
  constructor(
    private alertService: SweetAlertService
  ) {}
  ...

Available methods

SweetAlert.confirm SweetAlert.prompt SweetAlert.alert SweetAlert.question SweetAlert.success SweetAlert.warning SweetAlert.error

You can extend the default options by just passing a configuration object into the method, like this:

const options = {
  title: 'Are you sure?',
  text: "You won't be able to revert this!",
  type: 'warning',
  showCancelButton: true,
  confirmButtonColor: '#3085d6',
  cancelButtonColor: '#d33',
  confirmButtonText: 'Yes, delete it!'
};
SweetAlert.confirm(options);

Chaining & Promises

    this.alertService.confirm({
      title: 'Delete account?'
    })
    .then(() => {
      this.alertService.success({
        title: 'Account deleted'
      });
    })
    .catch(() => console.log('canceled'));

Typescript

If you use Typescript, if you don't use it you should, you can access the types since the service has the d.ts file available.

export declare class SweetAlertService {
    constructor();
    swal(): any;
    confirm(options: any): any;
    prompt(options: any): any;
    alert(options: any): any;
    question(options: any): any;
    success(options: any): any;
    warning(options: any): any;
    error(options: any): any;
    info(options: any): any;
}

Keywords

typescript

FAQs

Package last updated on 23 Apr 2017

Did you know?

Socket

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.

Install

Related posts