Files
2018-09-14 18:47:00 +02:00

37 lines
1006 B
TypeScript

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<HTMLIonToastElement> {
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<HTMLIonToastElement | undefined> {
return getOverlay(this.doc, 'ion-toast') as HTMLIonToastElement;
}
}