npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@euro-ombudsman/ngx-modal-dialog

v17.0.0

Published

Dynamic modal dialog for Angular 17

Downloads

8

Readme

ngx modal dialog

Build Status npm version

Dynamic modal dialog for Angular that does not sit on DOM waiting to be triggered, but rather gets injected upon need.

Made with Bootstrap 4 styles in mind, but configurable to any framework or custom set of styles. Simple demo can be found here.

This documentation is for version 4.x.x and Angular 10+. If you are using older version of Angular please use 3.x version for v6-v8 or 2.x version for v2-v5.

Table of contents:

Installation

npm install --save @euro-ombudsman/ngx-modal-dialog

How it works

Modal dialog uses ComponentFactoryResolver to inject the given child component to the dialog. ModalDialogService makes sure that only one instance of a modal dialog is opened at a time. With IModalDialogOptions you can define which component will be rendered inside the dialog and configure it based on your needs.

You can further use action buttons to control modal dialog from external component or child component. If action performed on button click is successful, modal dialog will close. Otherwise it will alert user.

Styles and visuals

Ngx-modal-dialog is intended to be used with Bootstrap 4, however you can apply your custom styles from your desired UI framework by providing class names in IModalDialogSettings.

Usage

  1. Include the ngx-modal module in your application at any place. The recommended way is to add forRoot initialization in the main app module.
import { BrowserModule } from '@angular/platform-browser';
import { ModalDialogModule } from '@euro-ombudsman/ngx-modal-dialog';

@NgModule({
    imports: [
        BrowserModule,
        ModalDialogModule.forRoot()
    ],
    bootstrap: [AppComponent]
})
export class AppModule { }
  1. Create a custom component that implements IModalDialog or use the SimpleModalDialog as a child component.

Custom component should be inserted into both declarations and entryComponents in the NgModule they are part of. entryComponents has to be used since component is dynamically inserted onto the page and Angular is not aware of it.

  1. Inject the ModalDialogService where you want to open the dialog. Call openDialog passing parent ViewContainerRef and partial IModalDialogOptions object:
constructor(modalService: ModalDialogService, viewRef: ViewContainerRef) { }

openNewDialog() {
  this.modalService.openDialog(this.viewRef, {
    title: 'Some modal title',
    childComponent: SimpleModalComponent
  });
}
  1. Arbitrary define actionButtons in modal dialog options or child component to control modal dialog.
class MyModalComponent implements IModalDialog {
  actionButtons: IModalDialogButton[];

  constructor() {
    this.actionButtons = [
      { text: 'Close' }, // no special processing here
      { text: 'I will always close', onAction: () => true },
      { text: 'I never close', onAction: () => false }
    ];
  }

  dialogInit(reference: ComponentRef<IModalDialog>, options: Partial<IModalDialogOptions<any>>) {
    // no processing needed
  }
}

Action button can be of two types:

  • with return value
    Used for controlling the dialog life.
    If value is truthful (true, successful Promise or Observable) than it will close the dialog
    If value is falsy (false, rejected Promise or failed Observable) it will trigger alert style and not close the dialog.
  • without return value
    Has no direct effect on dialog. Can be used to trigger some arbitrary functionality (e.g. copy values to clipboard)

API

ModalDialogService

Methods:

  • openDialog(target: ViewContainerRef, options: Partial<IModalDialogOptions<T>> = {}): Closes existing and opens a new modal dialog according to IModalDialogOptions. T represents a type of options data field. If you don't care about strong typing just pass any.

IModalDialog

Every component that is used as modal dialog must implement IModalDialog.

Methods:

  • dialogInit(reference: ComponentRef<IModalDialog>, options: Partial<IModalDialogOptions<any>>) => void Mandatory: true Default: - This method is called after initialization of child component. Purpose of the method is to pass necessary information from outer scope to child component.

Properties:

  • actionButtons Mandatory: false Default: - Type: string Modal heading text

IModalDialogOptions

Interface:

interface IModalDialogOptions<T> {
  title: string;
  childComponent: IModalDialog;
  onClose: ModalDialogOnAction;
  actionButtons: IModalDialogButton[];
  data: T;
  placeOnTop: boolean;
  settings: IModalDialogSettings;
  closeDialogSubject: Subject<void>;
}

This is generic interface, where T is arbitrary type of data section.

Interface details:

  • title: string
    Modal heading text

  • childComponent: any
    Component type that will be rendered as a content of modal dialog. Component must implement IModalDialog interface.

  • onClose(): ModalDialogOnAction Function to be called on close button click. In case of Promise and Observable, modal dialog will not close unless successful resolve happens. In case of boolean, modal dialog will close only if result is truthful.

  • actionButtons: Array<IModalDialogButton>
    Footer action buttons for control of modal dialog. See IModalDialogButton. Action buttons defined in child component have priority over action buttons defined via options. Action buttons close the modal dialog upon successful operation.

  • data: T
    Arbitrary data that will be passed to child component via dialogInit method.

  • placeOnTop: boolean Flag stating whether opening the modal dialog should close all the other modal dialogs, or modal should be rendered on top of existing ones.

  • settings: IModalDialogSettings
    Additional settings for granular configuration of modal dialog. See IModalDialogSettings.

  • closeDialogSubject:Subject<void>
    Custom modal closing subject. Can be used to manually trigger modal dialog close from within the child component.

IModalDialogButton

Interface:

interface IModalDialogButton {
  text: string;
  buttonClass?: string;
  onAction?: ModalDialogOnAction;
}

Interface details:

  • text: string
    Caption/text on the button
  • buttonClass: string
    Default: btn btn-primary
    Class name of button
  • onAction(): Promise<any> | Observable<any> | boolean
    Function to be called on button click. In case of Promise and Observable, modal dialog will not close unless successful resolve happens. In case of boolean, modal dialog will close only if result is truthful.

ModalDialogOnAction type

type ModalDialogOnAction = () => Promise<any> | Observable<any> | boolean | void;

Function returning Promise, Observable, boolean or no value. Modal dialog will close automatically if return of action is:

  • Promise, once promise gets resolved
  • Observable, once observable successfully finishes
  • boolean and value is true

Action button will initiate alert behavior if return is:

  • Promise, once promise gets rejected
  • Observable, once observable fails or throws error
  • boolean and value is false

If action button returns void, there are no side effects.

IModalDialogSettings

Interface

interface IModalDialogSettings {
  overlayClass: string;
  overlayAnimationTriggerClass: string;
  modalClass: string;
  modalAnimationTriggerClass: string;
  contentClass: string;
  headerClass: string;
  headerTitleClass: string;
  closeButtonClass: string;
  closeButtonTitle: string;
  bodyClass: string;
  footerClass: string;
  alertClass: string;
  alertDuration: number;
  buttonClass: string;
  notifyWithAlert: boolean;
}

Interface details:

  • overlayClass: string
    Default: modal-backdrop fade show
    Style of the backdrop overlay layer
  • overlayAnimationTriggerClass: string
    Default: show
    Class that triggers the initial/ending animation of modal overlay
  • modalClass: string
    Default: modal fade ngx-modal
    Style of modal wrapper
  • modalAnimationTriggerClass: string
    Default: show
    Class that triggers the initial/ending animation of modal wrapper
  • modalDialogClass: string
    Default: modal-dialog modal-dialog-centered
    Style of modal dialog
  • contentClass: string
    Default: modal-content
    Modal dialog inner content class
  • headerClass: string
    Default: modal-header
    Modal dialog header class
  • headerTitleClass: string
    Default: modal-title
    Modal dialog header title class
  • closeButtonClass: string
    Default: close glyphicon glyphicon-remove
    Modal dialog header close button class
  • closeButtonTitle: string
    Default: CLOSE
    Close button title
  • bodyClass: string
    Default: modal-body
    Modal dialog body class
  • footerClass: string
    Default: modal-footer
    Modal dialog footer class
  • alertClass: string
    Default: ngx-modal-shake
    Style to be appended to dialog once alert happens
  • alertDuration: number
    Default: 250
    Duration of alert animation
  • buttonClass: string
    Default: btn btn-primary
    Style of footer action buttons
  • notifyWithAlert: number
    Default: true
    Define whether modal should alert user when action fails

License

Licensed under MIT