Кутовий 2.0 та модальний діалог


128

Я намагаюся знайти кілька прикладів того, як зробити модальний діалог підтвердження в Angular 2.0. Я використовую діалогове вікно Bootstrap для Angular 1.0 і не можу знайти жодного прикладу в Інтернеті для Angular 2.0. Я також перевірив кутові 2,0 документа, не пощастивши.

Чи існує спосіб використання діалогового вікна Bootstrap з кутом 2.0?


Я знайшов цей приклад. Можливо, це допоможе вам angularscript.com/angular2-modal-window-with-bootstrap-style
Puya Sarmidani

1
Я використовую цей з RC3 і з ним досить вміст: valor-software.com/ng2-bootstrap/#/modals
mentat

Завдяки @Sam я добре почав. Однак я помітив, що компонент, що викликає, не знає, на яку кнопку натиснуто. Після деяких досліджень я зміг використовувати Observables замість EventEmitters, щоб придумати більш елегантне рішення .
Іван


@mentat, оновлено URL-адресу valor-software.com/ngx-bootstrap/#/modals
Ананд Рокзз

Відповіді:


199
  • Кутовий 2 і вище
  • Bossstrap css (анімація збережена)
  • НЕ JQuery
  • NO bootstrap.js
  • Підтримується нестандартний модальний вміст (подібно до прийнятої відповіді)
  • Нещодавно додана підтримка декількох мод один на одного .

`

@Component({
  selector: 'app-component',
  template: `
  <button type="button" (click)="modal.show()">test</button>
  <app-modal #modal>
    <div class="app-modal-header">
      header
    </div>
    <div class="app-modal-body">
      Whatever content you like, form fields, anything
    </div>
    <div class="app-modal-footer">
      <button type="button" class="btn btn-default" (click)="modal.hide()">Close</button>
      <button type="button" class="btn btn-primary">Save changes</button>
    </div>
  </app-modal>
  `
})
export class AppComponent {
}

@Component({
  selector: 'app-modal',
  template: `
  <div (click)="onContainerClicked($event)" class="modal fade" tabindex="-1" [ngClass]="{'in': visibleAnimate}"
       [ngStyle]="{'display': visible ? 'block' : 'none', 'opacity': visibleAnimate ? 1 : 0}">
    <div class="modal-dialog">
      <div class="modal-content">
        <div class="modal-header">
          <ng-content select=".app-modal-header"></ng-content>
        </div>
        <div class="modal-body">
          <ng-content select=".app-modal-body"></ng-content>
        </div>
        <div class="modal-footer">
          <ng-content select=".app-modal-footer"></ng-content>
        </div>
      </div>
    </div>
  </div>
  `
})
export class ModalComponent {

  public visible = false;
  public visibleAnimate = false;

  public show(): void {
    this.visible = true;
    setTimeout(() => this.visibleAnimate = true, 100);
  }

  public hide(): void {
    this.visibleAnimate = false;
    setTimeout(() => this.visible = false, 300);
  }

  public onContainerClicked(event: MouseEvent): void {
    if ((<HTMLElement>event.target).classList.contains('modal')) {
      this.hide();
    }
  }
}

Щоб показати фон , вам знадобиться щось на зразок цього CSS:

.modal {
  background: rgba(0,0,0,0.6);
}

Приклад тепер дозволяє кілька мод одночасно . (див. onContainerClicked()метод).

Для користувачів Bossstrap 4 css потрібно внести 1 незначну зміну (оскільки ім'я класу css було оновлено з Bootstrap 3). Цей рядок: [ngClass]="{'in': visibleAnimate}"слід змінити на: [ngClass]="{'show': visibleAnimate}"

Щоб продемонструвати, ось планк


Хоча там є хоч. Оскільки кнопки загорнуті всередині додаткового елемента, стиль завантажувальної стрічки не буде застосовувати поля до кнопок (принаймні в v4). видалення обгортки div.modal-footerі змінюючи .app-modal-footerдля .modal-footerвиправлення цього.
Аксель Келер

55

Ось досить пристойний приклад того, як можна використовувати модаль Bootstrap у програмі Angular2 на GitHub .

Суть її в тому, що ви можете обернути html та jquery ініціалізацію bootstrap у компонент. Я створив багаторазовий modalкомпонент, який дозволяє запустити відкриття за допомогою змінної шаблону.

<button type="button" class="btn btn-default" (click)="modal.open()">Open me!</button>

<modal #modal>
    <modal-header [show-close]="true">
        <h4 class="modal-title">I'm a modal!</h4>
    </modal-header>
    <modal-body>
        Hello World!
    </modal-body>
    <modal-footer [show-default-buttons]="true"></modal-footer>
</modal>

Вам просто потрібно встановити пакет npm та зареєструвати модульний модуль у своєму модулі програми:

import { Ng2Bs3ModalModule } from 'ng2-bs3-modal/ng2-bs3-modal';

@NgModule({
    imports: [Ng2Bs3ModalModule]
})
export class MyAppModule {}

8
Bummer - покладається на jquery як залежність :(
brando

52
Ну так, завантажувальна програма покладається на це, і я не займаюся переписуванням бібліотек.
Дуглас Людлоу

2
Це можна зробити без jQuery. Я використовував відповідь Сема разом із підручником на koscielniak.me/post/2016/03/angular2-confirm-dialog-component, щоб написати службовий та пов'язаний з ним модальний компонент.
BeetleJuice

Якщо ви не використовуєте bootstrap у своєму проекті, не забудьте додати посилання на bootstrap.css. Сторінка github забуває згадати про це.
Шехар

46

Це простий підхід, який не залежить від jquery чи будь-якої іншої бібліотеки, за винятком Angular 2. Компонент нижче (errorMessage.ts) може використовуватися як дочірнє уявлення будь-якого іншого компонента. Це просто модуль завантаження, який завжди відкритий або показаний. Його видимість регулюється оператором ngIf.

errorMessage.ts

import { Component } from '@angular/core';
@Component({
    selector: 'app-error-message',
    templateUrl: './app/common/errorMessage.html',
})
export class ErrorMessage
{
    private ErrorMsg: string;
    public ErrorMessageIsVisible: boolean;

    showErrorMessage(msg: string)
    {
        this.ErrorMsg = msg;
        this.ErrorMessageIsVisible = true;
    }

    hideErrorMsg()
    {
        this.ErrorMessageIsVisible = false;
    }
}

errorMessage.html

<div *ngIf="ErrorMessageIsVisible" class="modal fade show in danger" id="myModal" role="dialog">
    <div class="modal-dialog">

        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal">&times;</button>
                <h4 class="modal-title">Error</h4>
            </div>
            <div class="modal-body">
                <p>{{ErrorMsg}}</p>
            </div>
            <div class="modal-footer">
                <button type="button" class="btn btn-default" (click)="hideErrorMsg()">Close</button>
            </div>
        </div>
    </div>
</div>

Це приклад батьківського контролю (деякий невідповідний код для короткості пропущено):

parent.ts

import { Component, ViewChild } from '@angular/core';
import { NgForm } from '@angular/common';
import {Router, RouteSegment, OnActivate, ROUTER_DIRECTIVES } from '@angular/router';
import { OnInit } from '@angular/core';
import { Observable } from 'rxjs/Observable';


@Component({
    selector: 'app-application-detail',
    templateUrl: './app/permissions/applicationDetail.html',
    directives: [ROUTER_DIRECTIVES, ErrorMessage]  // Note ErrorMessage is a directive
})
export class ApplicationDetail implements OnActivate
{
    @ViewChild(ErrorMessage) errorMsg: ErrorMessage;  // ErrorMessage is a ViewChild



    // yada yada


    onSubmit()
    {
        let result = this.permissionsService.SaveApplication(this.Application).subscribe(x =>
        {
            x.Error = true;
            x.Message = "This is a dummy error message";

            if (x.Error) {
                this.errorMsg.showErrorMessage(x.Message);
            }
            else {
                this.router.navigate(['/applicationsIndex']);
            }
        });
    }

}

parent.html

<app-error-message></app-error-message>
// your html...

3
приємно - міг би пояснитиclass="modal fade show in danger"
bensiu

@bensiu Я здогадуюсь, що селектор класів не використовується - якщо у них немає селекторів стилів css для всіх цих слів, наприклад, 'in'
Drenai

Як ви отримуєте ефект зникнення / вимкнення цього?
Big McLargeHuge

10

Тепер доступний як пакет NPM

кутово-користувально-модальні


@Stephen Paul продовження ...

  • Кутовий css 2 і вище Bootstrap (анімація збережена)
  • НЕ JQuery
  • NO bootstrap.js
  • Підтримується нестандартний модальний вміст
  • Підтримка декількох мод один на одного.
  • Модульований
  • Вимкнути прокрутку, коли модальний режим відкрито
  • Модаль руйнується під час руху вдалині.
  • Ледача ініціалізація вмісту, яка отримується ngOnDestroy(редагується) при виході модалу.
  • Батьківська прокрутка вимкнена, коли видно модальний режим

Ледача ініціалізація вмісту

Чому?

У деяких випадках ви, можливо, не захочете модально зберігати свій статус після закриття, а скоріше відновити початковий стан.

Оригінальний модальний випуск

Передача вмісту прямо у вигляд насправді генерує його ініціалізує ще до того, як його отримає модал. У способу немає способу вбити такий вміст, навіть якщо використовується *ngIfобгортка.

Рішення

ng-template. ng-templateне надає, поки не буде наказано зробити це.

my-komponent.module.ts

...
imports: [
  ...
  ModalModule
]

my-komponent.ts

<button (click)="reuseModal.open()">Open</button>
<app-modal #reuseModal>
  <ng-template #header></ng-template>
  <ng-template #body>
    <app-my-body-component>
      <!-- This component will be created only when modal is visible and will be destroyed when it's not. -->
    </app-my-body-content>
    <ng-template #footer></ng-template>
</app-modal>

modal.component.ts

export class ModalComponent ... {
  @ContentChild('header') header: TemplateRef<any>;
  @ContentChild('body') body: TemplateRef<any>;
  @ContentChild('footer') footer: TemplateRef<any>;
 ...
}

modal.component.html

<div ... *ngIf="visible">
  ...
  <div class="modal-body">
    ng-container *ngTemplateOutlet="body"></ng-container>
  </div>

Список літератури

Треба сказати, що без чудової офіційної та громадської документації в мережі це було б неможливо. Це може допомогти деяким з вас теж , щоб краще зрозуміти , як ng-template, *ngTemplateOutletі @ContentChildробота.

https://angular.io/api/common/NgTemplateOutlet
https://blog.angular-university.io/angular-ng-template-ng-container-ngtemplateoutlet/
https://medium.com/claritydesignsystem/ng-content -the-hidden-docs-96a29d70d11b
https://netbasal.com/understanding-viewchildren-contentchildren-and-querylist-in-angular-896b0c689f6e
https://netbasal.com/understanding-viewchildren-contentchildren-and-querylist-in -угловий-896b0c689f6e

Повний розчин копію-вставки

modal.component.html

<div
  (click)="onContainerClicked($event)"
  class="modal fade"
  tabindex="-1"
  [ngClass]="{'in': visibleAnimate}"
  [ngStyle]="{'display': visible ? 'block' : 'none', 'opacity': visibleAnimate ? 1 : 0}"
  *ngIf="visible">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <ng-container *ngTemplateOutlet="header"></ng-container>
        <button class="close" data-dismiss="modal" type="button" aria-label="Close" (click)="close()">×</button>
      </div>
      <div class="modal-body">
        <ng-container *ngTemplateOutlet="body"></ng-container>
      </div>
      <div class="modal-footer">
        <ng-container *ngTemplateOutlet="footer"></ng-container>
      </div>
    </div>
  </div>
</div>

modal.component.ts

/**
 * @Stephen Paul https://stackoverflow.com/a/40144809/2013580
 * @zurfyx https://stackoverflow.com/a/46949848/2013580
 */
import { Component, OnDestroy, ContentChild, TemplateRef } from '@angular/core';

@Component({
  selector: 'app-modal',
  templateUrl: 'modal.component.html',
  styleUrls: ['modal.component.scss'],
})
export class ModalComponent implements OnDestroy {
  @ContentChild('header') header: TemplateRef<any>;
  @ContentChild('body') body: TemplateRef<any>;
  @ContentChild('footer') footer: TemplateRef<any>;

  public visible = false;
  public visibleAnimate = false;

  ngOnDestroy() {
    // Prevent modal from not executing its closing actions if the user navigated away (for example,
    // through a link).
    this.close();
  }

  open(): void {
    document.body.style.overflow = 'hidden';

    this.visible = true;
    setTimeout(() => this.visibleAnimate = true, 200);
  }

  close(): void {
    document.body.style.overflow = 'auto';

    this.visibleAnimate = false;
    setTimeout(() => this.visible = false, 100);
  }

  onContainerClicked(event: MouseEvent): void {
    if ((<HTMLElement>event.target).classList.contains('modal')) {
      this.close();
    }
  }
}

modal.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { ModalComponent } from './modal.component';

@NgModule({
  imports: [
    CommonModule,
  ],
  exports: [ModalComponent],
  declarations: [ModalComponent],
  providers: [],
})
export class ModalModule { }

7

Я використовую ngx-bootstrap для свого проекту.

Демонстрацію ви можете знайти тут

Гітхуб тут

Як використовувати:

  1. Встановіть ngx-bootstrap

  2. Імпорт у ваш модуль

// RECOMMENDED (doesn't work with system.js)
import { ModalModule } from 'ngx-bootstrap/modal';
// or
import { ModalModule } from 'ngx-bootstrap';

@NgModule({
  imports: [ModalModule.forRoot(),...]
})
export class AppModule(){}
  1. Простий статичний модальний
<button type="button" class="btn btn-primary" (click)="staticModal.show()">Static modal</button>
<div class="modal fade" bsModal #staticModal="bs-modal" [config]="{backdrop: 'static'}"
tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog modal-sm">
   <div class="modal-content">
      <div class="modal-header">
         <h4 class="modal-title pull-left">Static modal</h4>
         <button type="button" class="close pull-right" aria-label="Close" (click)="staticModal.hide()">
         <span aria-hidden="true">&times;</span>
         </button>
      </div>
      <div class="modal-body">
         This is static modal, backdrop click will not close it.
         Click <b>&times;</b> to close modal.
      </div>
   </div>
</div>
</div>

4

Ось моя повна реалізація модального компонента bootstrap angular2:

Я припускаю, що у вашому головному файлі index.html (з <html>та <body>тегами) у нижній частині <body>тегу у вас є:

  <script src="assets/js/jquery-2.1.1.js"></script>
  <script src="assets/js/bootstrap.min.js"></script>

modal.component.ts:

import { Component, Input, Output, ElementRef, EventEmitter, AfterViewInit } from '@angular/core';

declare var $: any;// this is very importnant (to work this line: this.modalEl.modal('show')) - don't do this (becouse this owerride jQuery which was changed by bootstrap, included in main html-body template): let $ = require('../../../../../node_modules/jquery/dist/jquery.min.js');

@Component({
  selector: 'modal',
  templateUrl: './modal.html',
})
export class Modal implements AfterViewInit {

    @Input() title:string;
    @Input() showClose:boolean = true;
    @Output() onClose: EventEmitter<any> = new EventEmitter();

    modalEl = null;
    id: string = uniqueId('modal_');

    constructor(private _rootNode: ElementRef) {}

    open() {
        this.modalEl.modal('show');
    }

    close() {
        this.modalEl.modal('hide');
    }

    closeInternal() { // close modal when click on times button in up-right corner
        this.onClose.next(null); // emit event
        this.close();
    }

    ngAfterViewInit() {
        this.modalEl = $(this._rootNode.nativeElement).find('div.modal');
    }

    has(selector) {
        return $(this._rootNode.nativeElement).find(selector).length;
    }
}

let modal_id: number = 0;
export function uniqueId(prefix: string): string {
    return prefix + ++modal_id;
}

modal.html:

<div class="modal inmodal fade" id="{{modal_id}}" tabindex="-1" role="dialog"  aria-hidden="true" #thisModal>
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header" [ngClass]="{'hide': !(has('mhead') || title) }">
                <button *ngIf="showClose" type="button" class="close" (click)="closeInternal()"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
                <ng-content select="mhead"></ng-content>
                <h4 *ngIf='title' class="modal-title">{{ title }}</h4>
            </div>
            <div class="modal-body">
                <ng-content></ng-content>
            </div>

            <div class="modal-footer" [ngClass]="{'hide': !has('mfoot') }" >
                <ng-content select="mfoot"></ng-content>
            </div>
        </div>
    </div>
</div>

І приклад використання в компоненті Client Editor: client-edit-компонент.ts:

import { Component } from '@angular/core';
import { ClientService } from './client.service';
import { Modal } from '../common';

@Component({
  selector: 'client-edit',
  directives: [ Modal ],
  templateUrl: './client-edit.html',
  providers: [ ClientService ]
})
export class ClientEdit {

    _modal = null;

    constructor(private _ClientService: ClientService) {}

    bindModal(modal) {this._modal=modal;}

    open(client) {
        this._modal.open();
        console.log({client});
    }

    close() {
        this._modal.close();
    }

}

client-edit.html:

<modal [title]='"Some standard title"' [showClose]='true' (onClose)="close()" #editModal>{{ bindModal(editModal) }}
    <mhead>Som non-standart title</mhead>
    Some contents
    <mfoot><button calss='btn' (click)="close()">Close</button></mfoot>
</modal>

Звичайно title, showClose, <mhead>і <mfoot>ар опціональних параметрів / тегів.


2
Замість того bindModal(modal) {this._modal=modal;}, ви можете використовувати в кутову ViewChildанотацію, наприклад , так: @ViewChild('editModal') _modal: Modal;. Він обробляє обов'язковість для вас за лаштунками.
Дуглас Людлоу

2

Перевірте діалогове вікно ASUI, яке створюється під час виконання. Не потрібно ховати і показувати логіку. Просто сервіс створить компонент під час виконання за допомогою AOT ASUI NPM


Привіт Аравінд Сівам, прочитайте: stackoverflow.com/help/promotion
Панг

0

спробуйте використовувати ng-window, це дозволяє розробнику відкривати і повністю керувати кількома вікнами в додатках на одній сторінці простим способом, No Jquery, No Bootstrap.

введіть тут опис зображення

Життєздатне конфіграція

  • Збільшити вікно
  • Мінімізувати вікно
  • Нестандартний розмір,
  • Спеціальна позиція
  • вікно перетягується
  • Заблокувати батьківське вікно чи ні
  • Відцентруйте вікно чи ні
  • Передайте значення віконцю екрана
  • Передайте значення з віконця екрана в батьківське вікно
  • Прослуховування закриття вікна екрана у батьківському вікні
  • Слухайте, щоб змінити розмір події зі своїм користувацьким слухачем
  • Відкрити з максимальним розміром чи ні
  • Увімкнення та вимкнення зміни розміру вікна
  • Увімкнення та вимкнення максимізації
  • Увімкнення та вимкнення мінімізації

-1 Чим це взагалі корисно? Він не відповідає жодним вимогам, визначеним ОП. Це четвертий пост, я бачу, як ви переказуєте свою відповідь!
avn

0

Кутовий 7 + NgBootstrap

Простий спосіб відкрити модаль від основного компонента і повернути результат назад до нього. це те, що я хотів. Я створив покроковий підручник, який включає створення нового проекту з нуля, встановлення ngbootstrap та створення Modal. Ви можете або його клонувати, або слідувати керівництву.

Сподіваюсь, це допоможе новому Angular.!

https://github.com/wkaczurba/modal-demo

Деталі:

модально-простий шаблон (modal-simple.component.html):

<ng-template #content let-modal>
  <div class="modal-header">
    <h4 class="modal-title" id="modal-basic-title">Are you sure?</h4>
    <button type="button" class="close" aria-label="Close" (click)="modal.dismiss('Cross click')">
      <span aria-hidden="true">&times;</span>
    </button>
  </div>
  <div class="modal-body">
    <p>You have not finished reading my code. Are you sure you want to close?</p>
  </div>
  <div class="modal-footer">
    <button type="button" class="btn btn-outline-dark" (click)="modal.close('yes')">Yes</button>
    <button type="button" class="btn btn-outline-dark" (click)="modal.close('no')">No</button>
  </div>
</ng-template>

Модальний-simple.com.посібник.ts:

import { Component, OnInit, ViewChild, Output, EventEmitter } from '@angular/core';
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';

@Component({
  selector: 'app-modal-simple',
  templateUrl: './modal-simple.component.html',
  styleUrls: ['./modal-simple.component.css']
})
export class ModalSimpleComponent implements OnInit {
  @ViewChild('content') content;
  @Output() result : EventEmitter<string> = new EventEmitter();

  constructor(private modalService : NgbModal) { }

  open() {
    this.modalService.open(this.content, {ariaLabelledBy: 'modal-simple-title'})
      .result.then((result) => { console.log(result as string); this.result.emit(result) }, 
        (reason) => { console.log(reason as string); this.result.emit(reason) })
  }

  ngOnInit() {
  }

}

Демонстрація цього (app.component.html) - простий спосіб вирішення події повернення:

<app-modal-simple #mymodal (result)="onModalClose($event)"></app-modal-simple>
<button (click)="mymodal.open()">Open modal</button>

<p>
Result is {{ modalCloseResult }}
</p>

app.component.ts - onModalClosed виконується після закриття модалу:

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  modalCloseResult : string;
  title = 'modal-demo';

  onModalClose(reason : string) {
    this.modalCloseResult = reason;
  }    
}

Ура

Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.