Ejemplo n.º 1
0
 public static ValueTask DisplaeMessage(this IJSRuntime js, string title, string message, SweetAlertMessageType sweetAlertMessageType)
 {
     return(js.InvokeVoidAsync("Swal.fire", title, message, sweetAlertMessageType.ToString()));
 }
Ejemplo n.º 2
0
 public static ValueTask <bool> Confirm(this IJSRuntime js, string title, string message, SweetAlertMessageType sweetAlertMessageType)
 {
     return(js.InvokeAsync <bool>("CustomConfirm", title, message, sweetAlertMessageType.ToString()));
 }
Ejemplo n.º 3
0
 public static string ShowMessage(string messageCaption, string messageContent, SweetAlertMessageType messageType)
 {
     return($"swal('{messageCaption}','{messageContent}','{messageType}');");
 }
Ejemplo n.º 4
0
 public static ValueTask Notfication(this IJSRuntime js, string title, SweetAlertMessageType sweetAlertMessageType, int time)
 {
     return(js.InvokeVoidAsync("Notifcation", title, sweetAlertMessageType.ToString(), time));
 }
Ejemplo n.º 5
0
 public static string Delete(string messageCaption, string messageContent, SweetAlertMessageType messageType)
 {
     return($"swal('{messageCaption}','{messageContent}','{messageType}','buttons:true', 'dangerMode:true');");
 }
Ejemplo n.º 6
0
 public static string Mensaje(string titulo, string mensaje, SweetAlertMessageType tipoMensaje)
 {
     return("swal({title: '" + titulo + "',text: '" + mensaje + "',type: '" + tipoMensaje + "'});");
 }
Ejemplo n.º 7
0
 public static ValueTask <bool> RemoveModal(this IJSRuntime js, string title, string message, SweetAlertMessageType sweetAlertMessageType)
 {
     return(js.InvokeAsync <bool>("CloseModal", title, message, sweetAlertMessageType.ToString()));
 }