Ngx-ブートストラップ-モーダル
ngx-bootstrapモーダルコンポーネントは、柔軟で高度に構成可能なダイアログプロンプトであり、複数のデフォルトを提供し、最小限のコードで使用できます。
ModalDirective
セレクタ
[bsModal]
入力
config − ModalOptions、要素プロパティを介してモーダル構成を設定できます
出力
onHidden −このイベントは、モーダルがユーザーから隠され終わったときに発生します(CSS遷移が完了するのを待ちます)。
onHide −このイベントは、hideinstanceメソッドが呼び出されるとすぐに発生します。
onShow −このイベントは、showinstanceメソッドが呼び出されるとすぐに発生します。
onShown −このイベントは、モーダルがユーザーに表示されたときに発生します(CSS遷移が完了するのを待ちます)。
メソッド
show() −モーダルを手動で開くことができます。
hide() −モーダルを手動で閉じることができます。
toggle() −モーダル可視性を手動で切り替えることができます。
showElement() −ダイアログを表示します。
focusOtherModal() −イベントのトリック。
例
モーダルを使用するので、ngx-bootstrapドロップダウンの章で使用されているapp.module.tsを更新して使用する必要がありますModalModule そして BsModalService。
ModalModuleとBsModalServiceを使用するようにapp.module.tsを更新します。
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';
import { AccordionModule } from 'ngx-bootstrap/accordion';
import { AlertModule,AlertConfig } from 'ngx-bootstrap/alert';
import { ButtonsModule } from 'ngx-bootstrap/buttons';
import { FormsModule } from '@angular/forms';
import { CarouselModule } from 'ngx-bootstrap/carousel';
import { CollapseModule } from 'ngx-bootstrap/collapse';
import { BsDatepickerModule, BsDatepickerConfig } from 'ngx-bootstrap/datepicker';
import { BsDropdownModule,BsDropdownConfig } from 'ngx-bootstrap/dropdown';
import { ModalModule, BsModalService } from 'ngx-bootstrap/modal';
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule,
AlertModule,
ButtonsModule,
FormsModule,
CarouselModule,
CollapseModule,
BsDatepickerModule.forRoot(),
BsDropdownModule,
ModalModule
],
providers: [AlertConfig, BsDatepickerConfig, BsDropdownConfig,BsModalService],
bootstrap: [AppComponent]
})
export class AppModule { }
モーダルを使用するようにtest.component.htmlを更新します。
test.component.html
<button type="button" class="btn btn-primary" (click)="openModal(template)">Open modal</button>
<ng-template #template>
<div class="modal-header">
<h4 class="modal-title pull-left">Modal</h4>
<button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
This is a sample modal dialog box.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" (click)="modalRef.hide()">Close</button>
</div>
</ng-template>
対応する変数とメソッドのtest.component.tsを更新します。
test.component.ts
import { Component, OnInit, TemplateRef } from '@angular/core';
import { BsModalRef, BsModalService } from 'ngx-bootstrap/modal';
@Component({
selector: 'app-test',
templateUrl: './test.component.html',
styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {
modalRef: BsModalRef;
constructor(private modalService: BsModalService) {}
openModal(template: TemplateRef<any>) {
this.modalRef = this.modalService.show(template);
}
ngOnInit(): void {
}
}
構築して提供する
次のコマンドを実行して、Angularサーバーを起動します。
ng serve
サーバーが起動して実行されたら。http:// localhost:4200を開きます。[モーダルを開く]ボタンをクリックして、次の出力を確認します。