web-dev-qa-db-ja.com

実装bootstrap angular7のモーダルダイアログ

単純なbootstrapモーダルダイアログボックスを実装するのにしばらく悩まされていました。約10の異なるページに答えの一部が見つかりました。答えがすぐに見つからなかったことを考えると、はっきりとは思いませんd他の人を助けるために私の解決策を共有する(以下の最初の回答)

複数のタイプのbootstrapウィジェットを追加する必要がある場合は、( https://ng-bootstrap.github.io/#/home )を参照することをお勧めします

2
James D

src/index.htmlでは、bodyタグの内容を次のように変更しました。

 <body>
    <app-root></app-root>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"> 
    </script>
</body>

モーダルを呼び出すコンポーネントには、テンプレートがあります。

<!-- Button to Open the Modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#myModal" (click)="showModal()">
  Open modal
</button>
<app-modal></app-modal>

そしてTypeScriptコンポーネントで

    showModal(): void {   
        this.displayService.setShowModal(true); 
        // communication to show the modal, I use a behaviour subject from a service layer here
    }

私が持っているテンプレートで、モーダル用の別のコンポーネントを構築します

<!-- The Modal -->
<div class="modal fade" id="myModal">
  <div class="modal-dialog">
    <div class="modal-content">

      <!-- Modal Header -->
      <div class="modal-header">
        <h4 class="modal-title">Modal Heading</h4>
        <button type="button" class="close" (click)="hideModal()">&times;</button>
      </div>

      <!-- Modal body -->
      <div class="modal-body">
        Modal body..
      </div>

      <!-- Modal footer -->
      <div class="modal-footer">
        <button type="button" class="btn btn-primary" (click)="sendModal()" >Send</button>
        <button type="button" class="btn btn-danger" (click)="hideModal()">Close</button>

        <!-- this button is hidden, used to close from TypeScript -->
        <button type="button" id="close-modal" data-dismiss="modal" style="display: none">Close</button>
      </div>
    </div>
  </div>
</div>

そして、私が持っているTypeScriptコンポーネントでは

    import { Component, OnInit } from '@angular/core';

    // This lets me use jquery
    declare var $: any;

    @Component({
      selector: 'app-modal',
      templateUrl: './modal.component.html',
      styleUrls: ['./modal.component.css']
    })
    export class ModalComponent implements OnInit {
      constructor() { }

      ngOnInit() {
      }
      showModal():void {
        $("#myModal").modal('show');
      }
      sendModal(): void {
        //do something here
        this.hideModal();
      }
      hideModal():void {
        document.getElementById('close-modal').click();
      }
    }

これで、モーダルダイアログが機能し、追加のロジックを追加できるsend関数と、TypeScriptからモーダルを閉じる非表示関数が追加されました。

5
James D