Example #1
0
 onConfirm: (value)=> {
     if (typeof value == 'string' && value.length > 0) {
         this.alertService.swal({title: 'Nice!', text: 'You wrote: ' + value + '', type: 'success'});
     } else {
         this.alertService.showInputError('You need to write something!');
     }
 }
Example #2
0
 onCancel: ()=> {
     this.alertService.swal({
         title: 'Cancelled',
         text: 'Your imaginary file is safe :)',
         type: 'error'
     });
 }
Example #3
0
 onConfirm: ()=> {
     this.alertService.swal({
         title: 'Deleted!',
         text: 'Your imaginary file has been deleted.',
         type: 'success'
     });
 },
Example #4
0
 confirmCancelAlert() {
     this.alertService.swal({
         title: "Are you sure?",
         text: "You will not be able to recover this imaginary file!",
         type: "warning",
         showCancelButton: true,
         confirmButtonColor: "#DD6B55",
         confirmButtonText: "Yes, delete it!",
         cancelButtonText: "No, cancel plx!",
         onConfirm: ()=> {
             this.alertService.swal({
                 title: 'Deleted!',
                 text: 'Your imaginary file has been deleted.',
                 type: 'success'
             });
         },
         onCancel: ()=> {
             this.alertService.swal({
                 title: 'Cancelled',
                 text: 'Your imaginary file is safe :)',
                 type: 'error'
             });
         }
     });
 }
Example #5
0
 timerAlert() {
     this.alertService.swal({
         title: 'Auto close alert!',
         text: 'I will close in 2 seconds.',
         timer: 2000,
         showConfirmButton: false
     });
 }
Example #6
0
 customAlert() {
     this.alertService.swal({
         title: "Sweet!",
         text: "Here's a custom image.",
         type: "custom",
         imageUrl: "/thumbs-up.jpg"
     });
 }
Example #7
0
 ajaxAlert() {
     this.alertService.swal({
         title: "Ajax request example",
         text: "Submit to run ajax request",
         type: "info",
         showCancelButton: true,
         showLoaderOnConfirm: true,
         onConfirm: ()=> {
             setTimeout(()=> {
                 this.alertService.swal({title: "Ajax request finished!"});
             }, 3000);
         }
     });
 }
Example #8
0
 inputAlert() {
     this.alertService.swal({
         title: "An input!",
         text: "Write something interesting:",
         type: "input",
         showCancelButton: true,
         animation: "slide-from-top",
         inputPlaceholder: "Write something",
         onConfirm: (value)=> {
             if (typeof value == 'string' && value.length > 0) {
                 this.alertService.swal({title: 'Nice!', text: 'You wrote: ' + value + '', type: 'success'});
             } else {
                 this.alertService.showInputError('You need to write something!');
             }
         }
     });
 }
Example #9
0
 setTimeout(()=> {
     this.alertService.swal({title: "Ajax request finished!"});
 }, 3000);
Example #10
0
 titleTextTypeAlert() {
     this.alertService.swal({title: 'Good job!', text: 'You clicked the button!', type: 'success'});
 }