I got the following Ionic code fragment for displaying alarms / errors in an industrial App:
showError(message: string) {
let toast = this.toastController.create({
message: message,
position: 'top',
duration: 5000,
cssClass: 'danger',
showCloseButton: true
});
toast.present();
}
The App triggers the error message every time it detects a connection issues, which will be also roughly on a 5 second timer.
Multiple calls to this method will lead to 2 or more error messages shown on top of each other if the timing of this code is changed. Can I somehow detect that a toast is already being displayed? Also then, the 5000 msec timer would not be necessary and I can just remove the error message again when the connection is re-established.
Thanks and BR Florian
You could store your Toast object in a variable outside your function, and call the dismiss() method before showing the next toast :
Here my solution :-)
In Ionic 4 Toast UI Component
Show Ionic 4 Toast only once using below code
Source Link : http://www.freakyjolly.com/ionic-4-adding-toasts-in-ionic-4-application-using-ui-components-with-plugins/
You can check if there is already a toast present or not and create new only if no toast present.