mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
26 lines
736 B
TypeScript
26 lines
736 B
TypeScript
import { ComponentFactoryResolver, Injectable, Injector } from '@angular/core';
|
|
import { ModalOptions, modalController } from '@ionic/core';
|
|
|
|
import { OverlayBaseController } from '../util/overlay';
|
|
|
|
import { AngularDelegate } from './angular-delegate';
|
|
|
|
@Injectable()
|
|
export class ModalController extends OverlayBaseController<ModalOptions, HTMLIonModalElement> {
|
|
|
|
constructor(
|
|
private angularDelegate: AngularDelegate,
|
|
private resolver: ComponentFactoryResolver,
|
|
private injector: Injector,
|
|
) {
|
|
super(modalController);
|
|
}
|
|
|
|
create(opts: ModalOptions): Promise<HTMLIonModalElement> {
|
|
return super.create({
|
|
...opts,
|
|
delegate: this.angularDelegate.create(this.resolver, this.injector)
|
|
});
|
|
}
|
|
}
|