mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 10:41:13 +08:00
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import { Component, Listen, Method } from '@stencil/core';
|
|
import { ModalOptions } from '../../index';
|
|
import { OverlayController, createOverlay, dismissOverlay, getTopOverlay, removeLastOverlay } from '../../utils/overlays';
|
|
|
|
|
|
@Component({
|
|
tag: 'ion-modal-controller'
|
|
})
|
|
export class ModalController implements OverlayController {
|
|
|
|
private modals = new Map<number, HTMLIonModalElement>();
|
|
|
|
@Listen('body:ionModalWillPresent')
|
|
protected modalWillPresent(ev: any) {
|
|
this.modals.set(ev.target.overlayId, ev.target);
|
|
}
|
|
|
|
@Listen('body:ionModalWillDismiss')
|
|
@Listen('body:ionModalDidUnload')
|
|
protected modalWillDismiss(ev: any) {
|
|
this.modals.delete(ev.target.overlayId);
|
|
}
|
|
|
|
@Listen('body:keyup.escape')
|
|
protected escapeKeyUp() {
|
|
removeLastOverlay(this.modals);
|
|
}
|
|
|
|
/*
|
|
* Create a modal overlay with modal options.
|
|
*/
|
|
@Method()
|
|
create(opts?: ModalOptions): Promise<HTMLIonModalElement> {
|
|
return createOverlay(document.createElement('ion-modal'), opts);
|
|
}
|
|
|
|
/*
|
|
* Dismiss the open modal overlay.
|
|
*/
|
|
@Method()
|
|
dismiss(data?: any, role?: string, modalId = -1) {
|
|
return dismissOverlay(data, role, this.modals, modalId);
|
|
}
|
|
|
|
/*
|
|
* Get the most recently opened modal overlay.
|
|
*/
|
|
@Method()
|
|
getTop(): HTMLIonModalElement {
|
|
return getTopOverlay(this.modals);
|
|
}
|
|
}
|