import { Component, ComponentInterface, Method, Prop } from '@stencil/core'; import { OverlayController, ToastOptions } from '../../interface'; import { createOverlay, dismissOverlay, getOverlay } from '../../utils/overlays'; @Component({ tag: 'ion-toast-controller' }) export class ToastController implements ComponentInterface, OverlayController { @Prop({ context: 'document' }) doc!: Document; /** * Create a toast overlay with toast options. */ @Method() create(opts?: ToastOptions): Promise { return createOverlay(this.doc.createElement('ion-toast'), opts); } /** * Dismiss the open toast overlay. */ @Method() dismiss(data?: any, role?: string, id?: string) { return dismissOverlay(this.doc, data, role, 'ion-toast', id); } /** * Get the most recently opened toast overlay. */ @Method() async getTop(): Promise { return getOverlay(this.doc, 'ion-toast') as HTMLIonToastElement; } }