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