artemsky / ng-snotify

Angular 2+ Notification Center
https://artemsky.github.io/ng-snotify/
MIT License
326 stars 71 forks source link

Get confirm/ prompt data through variable ? #116

Open lehoangphan opened 2 years ago

lehoangphan commented 2 years ago

Hi, I try to get data from confirm, is there any way to do this?

var result = this.snotifyService.confirm('do you wan to delete?', 'confirm', {
      ...config,
      buttons: [
        {
          text: 'Yes', action:
            (toast) => {
              this.snotifyService.remove(toast.id);
            }, bold: false
        },
        { text: 'No', action: (toast) => { 
          this.snotifyService.remove(toast.id) 

        } },
      ]
    })'

if(result === 'Yes'){
....do something 
}

thanks.