mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
40 lines
859 B
TypeScript
40 lines
859 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import { AlertController, AnimationController } from '@ionic/angular';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class AlertService {
|
|
|
|
constructor(
|
|
public alertController: AlertController,
|
|
private animationController: AnimationController,
|
|
) { }
|
|
|
|
async presentAlert(message:string) {
|
|
const alert = await this.alertController.create({
|
|
cssClass: 'my-custom-class',
|
|
header: 'Mensagem do sistema',
|
|
message: message,
|
|
buttons: ['OK']
|
|
});
|
|
|
|
await alert.present();
|
|
}
|
|
|
|
async presentErrorMessage(message:string) {
|
|
const alert = await this.alertController.create({
|
|
cssClass: 'my-custom-class',
|
|
header: 'Mensagem de erro',
|
|
message: message,
|
|
});
|
|
|
|
await alert.present();
|
|
|
|
setTimeout(()=>{
|
|
alert.dismiss();
|
|
}, 2500);
|
|
}
|
|
|
|
}
|