mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import { Component, Listen, Method } from '@stencil/core';
|
|
import { AlertOptions } from '../../index';
|
|
import { OverlayController, createOverlay, dismissOverlay, getTopOverlay, removeLastOverlay } from '../../utils/overlays';
|
|
|
|
@Component({
|
|
tag: 'ion-alert-controller'
|
|
})
|
|
export class AlertController implements OverlayController {
|
|
|
|
private alerts = new Map<number, HTMLIonAlertElement>();
|
|
|
|
@Listen('body:ionAlertWillPresent')
|
|
protected alertWillPresent(ev: any) {
|
|
this.alerts.set(ev.target.overlayId, ev.target);
|
|
}
|
|
|
|
@Listen('body:ionAlertWillDismiss')
|
|
@Listen('body:ionAlertDidUnload')
|
|
protected alertWillDismiss(ev: any) {
|
|
this.alerts.delete(ev.target.overlayId);
|
|
}
|
|
|
|
@Listen('body:keyup.escape')
|
|
protected escapeKeyUp() {
|
|
removeLastOverlay(this.alerts);
|
|
}
|
|
|
|
/*
|
|
* Create an alert overlay with alert options.
|
|
*/
|
|
@Method()
|
|
create(opts?: AlertOptions): Promise<HTMLIonAlertElement> {
|
|
return createOverlay(document.createElement('ion-alert'), opts);
|
|
}
|
|
|
|
/*
|
|
* Dismiss the open alert overlay.
|
|
*/
|
|
@Method()
|
|
dismiss(data?: any, role?: string, alertId = -1) {
|
|
return dismissOverlay(data, role, this.alerts, alertId);
|
|
}
|
|
|
|
/*
|
|
* Get the most recently opened alert overlay.
|
|
*/
|
|
@Method()
|
|
getTop(): HTMLIonAlertElement {
|
|
return getTopOverlay(this.alerts);
|
|
}
|
|
}
|