I am using Angular 6 with Angular Material. After updating to the latest version, the console is throwing this error in development. On Production it is working
Cannot read property 'ngMetadataName' of undefined
It occurs when I am trying to open material dialog via a service ( without a service they are working fine). I think it is related to the Injectables, but I am not sure.
Versions: cli: 6.1.5 , core: 6.1.4, material: 6.4.6
Here is the log stack:
CustomDialogComponent_Host.ngfactory.js? [sm]:1 ERROR TypeError: Cannot read property 'ngMetadataName' of undefined
at injectArgs (core.js:1418)
at core.js:1491
at _callFactory (core.js:8438)
at _createProviderInstance (core.js:8396)
at resolveNgModuleDep (core.js:8371)
at NgModuleRef_.push../node_modules/@angular/core/fesm5/core.js.NgModuleRef_.get (core.js:9064)
at PortalInjector.push../node_modules/@angular/cdk/esm5/portal.es5.js.PortalInjector.get (portal.es5.js:732)
at resolveDep (core.js:9419)
at createClass (core.js:9309)
at createDirectiveInstance (core.js:9186)
Any assistance will be appreciated.
dialog inside the service, where the error is thrown :
@Injectable({
providedIn: 'root'
})
export class customService {
constructor(private store: Store<RootState>, private dialog: MatDialog) {}
const dialogRef = this.dialog.open(customDialogComponent, {
width: '300px',
data: {
loading: false,
customId,
}
});
Same message but no relation with Material, I had this error too. I realized, there is a warning about circular dependency. This error disappears after I remove dependencies.
May be other warning messages during compile process will help to fix this.
To see the created circular dependency in your angular project, please enable showCircularDependencies
in angular.json
by changing its value from false
to true
.
I encountered this error when I upgraded Angular with the CLI version 8.0.4.
I had to downgrade to @angular-devkit/build-angular 0.800.3
and Angular CLI to version 8.0.3
.
npm i --save-dev @angular-devkit/[email protected] @angular/[email protected]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With