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

@wizdm/lazy-dialog

v1.1.0

Published

Lazy loading for Angular Material dialogs

Downloads

2

Readme

Lazy Loader for Dialogs

@wizdm/lazy-dialog implements lazy loading for Angular Material Dialogs in the same way the Router does for feature modules.

Installation

Use npm to install the @wizdm/lazy-dialog module:

npm install @wizdm/lazy-dialog

Usage

Import the LazyDialogLoader service and use it as a (CanActivate guard)[https://angular.io/api/router/CanActivate] within the routes you want to associate with your dialogs:

import { LazyDialogLoader } from '@wizdm/lazy-dialog';
...
const routes: Routes = [

  { 
    path: 'home', component: HomeComponent, children: [
      ...
      
      { 
        path: 'login', 
        canActivate: [ LazyDialogLoader ],
        loadChildren: () => import('./login/login.module').then(m => m.LoginModule)
      },

  ]}
...
];

Use login as a regular link in your template:

...
  <a routerLink="login">Login</a>
...

Dialog Module

For the lazily loading to occur, the dialog must be wrapped in a module following the very same pattern of a regular lazily loaded feature module:

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { RouterModule, Routes } from '@angular/router';
import { MatDialogModule } from '@angular/material/dialog';
...
import { LoginComponent } from './login.component';

/** Dialog route. This route will be used by the LazyDialogLoader, emulating the router, to lazily load the dialog */
const routes: Routes = [{
  path: '',
  component: LoginComponent,
  data: { dialogConfig: { width: 350, maxWidth: '100%' }}
}];

@NgModule({

  declarations: [ LoginComponent ],  

  imports: [
    CommonModule,
    MatDialogModule,
    ...,
    RouterModule.forChild(routes)
  ]
})
export class LoginModule { }

Be sure to always include the MatDialogModule within your dialog module since it is crucial for the loader to work properly.

By including a dialogConfig object within the route data, the dialog can be fully configured.

In this example, the LoginComponent implements the dialog following the very same Material Dialog conventions:

import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
...
@Component({
  selector : 'wm-login-dlg',
  templateUrl : './login.component.html',
  styleUrls : ['./login.component.scss']
})
export class LoginComponent {
  
  constructor(@Inject(MAT_DIALOG_DATA) private data: LoginData, private ref: MatDialogRef<LoginData, User>) {
    ... 
  }

  /** Closes the dialog returning the logged-in user, if any */
  public close(user: User) {
    this.ref.close(user);
  }

Open a dialog programmatically

In the event you need to get access to the returned value from the dialog, you can open the dialog programmatically:

import { LazyDialogLoader } from '@wizdm/lazy-dialog';
...
export class HomeComponent implements OnDestroy {

  constructor(private loader: LazyDialogLoader) { }
  ...
  public login() {

    this.loader.open('login').then( user => {

      console.log('Logged-in', user);

    });
  }
}

Alternatively, you can achieve the same result by using the LazyDialogDirective instead:

  <a openDialog="login" (dialogClosed)="doSomething($event)">Login</a>

How It Works

The LazyDialogLoader works as a CanActivate routing guard preventing the navigation and displaying the dialog instead. The loader seeks for the dialog module within the routes, loads the module, seeks for the dialog component, executes the resolvers, if any, and opens the dialog.