web-dev-qa-db-ja.com

甘い警告タイマー-完了機能

私はSweetAlertプラグインで少し遊んでいます: Sweet alert

ユーザーが実際に削除する前にプロンプ​​トが表示される削除ボタンを作りたかったのです。次にユーザーが「削除」をもう一度押すと、「完了」と表示され、ユーザーはもう一度「OK」をクリックしてプロンプトを完全に終了する必要があります。

SweetAlertにはタイマー機能があるため、数秒後、最後の「完了」プロンプトを自動的に閉じることができます。これは問題なく機能します。また、ユーザーが[完了]プロンプトで[OK]をクリックしたときに実行される関数を実装できる機能もあります。問題は、タイマーが終了した後にプロンプ​​トが自動的に閉じると、その関数が実行されないことです。

これを行う方法について何かアイデアはありますか?

timerで関数が実行されていない場合:

swal({
     title: "Deleted!",
     text: "Your row has been deleted.",
     type: "success",
     timer: 3000
     },
     function () {
            location.reload(true);
            tr.hide();
     });

timerなし、ただし機能する関数あり(「OK」ボタンをクリックしたとき):

swal("Deleted!", "Your row has been deleted.", "success"), function () {
    location.reload();
    tr.hide();
};
7
Thomas Teilmann

説明

関数からswalを分離する必要があると思います。つまり、swalが表示され、関数がバックグラウンドで実行され、モーダルが自動的に閉じます。

Javascript/jQuery:

swal({
     title: "Deleted!",
     text: "Your row has been deleted.",
     type: "success",
     timer: 3000
     });
     function () {
        location.reload(true);
        tr.hide();
     };

SweetAlertの例を使用したコード:

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!",
    closeOnConfirm: false,
    closeOnCancel: false
    },
    function (isConfirm) {
        if (isConfirm) {
           swal({
              title: "Deleted!",
              text: "Your row has been deleted.",
              type: "success",
              timer: 3000
           });
           function () {
              location.reload(true);
              tr.hide();
           };
        }
        else {
            swal("Cancelled", "Your imaginary file is safe :)", "error");
        }
    });
12
Hkidd

thenだけを使用することはできませんか?

この方法ははるかにきれいです。

swal({
    title: 'Login Success',
    text: 'Redirecting...',
    icon: 'success',
    timer: 2000,
    buttons: false,
})
.then(() => {
    dispatch(redirect('/'));
})
5
Sonson Ixon

私は解決策を見つけました

現在、sweetAlertを使用して実験していますが、あなたの質問に対する解決策を見つけました。
これは、タイマーの数秒後に閉じるスイートアラートを作成するための私のカスタム関数です。

var sweetAlert = function(title, message, status, timer = 5000, isReload = false){
    swal({
        title   : title,
        text    : message + '<br/>This pop up will close automatically in <strong class="swal-timer-count">' + timer/1000 + '</strong> seconds...',
        type    : status,
        html    : true,
        timer   : timer,
        allowEscapeKey  : false
    }, function () {
        swal.close();
        if(isReload)
            location.reload(true);
    });
    var e = $(".sweet-alert").find(".swal-timer-count");
    var n = +e.text();
    setInterval(function(){
        n > 1 && e.text (--n);
    }, 1000);
}

このコードを使用してこのメ​​ソッドを呼び出すことができます
タイマーはミリ秒を使用しています。

sweetAlert('Congratulation!', 'You successfully copy paste this code', 'success', 3000, false);
4
Fendi Setiawan

この問題はSweetalert 2の新しいリリースで修正されています

https://limonte.github.io/sweetalert2/

プランカーを参照

プランカー

.
3
Ali Mohammed

解決策はこちらです。

[ https://sweetalert2.github.io/]

見る。自動クローズタイマー付きのメッセージ

let timerInterval
Swal.fire({
  title: 'Auto close alert!',
  html: 'I will close in <strong></strong> milliseconds.',
  timer: 2000,
  onBeforeOpen: () => {
    Swal.showLoading()
    timerInterval = setInterval(() => {
      Swal.getContent().querySelector('strong')
        .textContent = Swal.getTimerLeft()
    }, 100)
  },
  onClose: () => {
    clearInterval(timerInterval)
  }
}).then((result) => {
  if (
    /* Read more about handling dismissals below */
    result.dismiss === Swal.DismissReason.timer
  ) {
    console.log('I was closed by the timer')
  }
})

私のコード

swal.fire({ type: 'success', title: 'Saved.', 
            showConfirmButton: false, timer: 1500 
}).then((result) => {
    if (result.dismiss === Swal.DismissReason.timer) {
         $("#new_reminder").modal("hide");                            
    }
});
0
TodsaHerb