Trying to extend the dialog functionality from PrimeNG Library
The Error occurs when dialog is displayed, no errors when not displayed
this.containerViewChild is undefined
What I have
import { Component, Input, OnInit, Output, forwardRef } from '@angular/core';
import { NG_VALUE_ACCESSOR } from '@angular/forms';
import { Dialog, DomHandler } from 'primeng/primeng';
const DIALOG_VALUE_ACCESSOR: any = {
provide: NG_VALUE_ACCESSOR,
useExisting: forwardRef(() => Dialog),
multi: true
};
@Component({
selector: 'sb-dialog',
providers: [DIALOG_VALUE_ACCESSOR, DomHandler],
template: ''
})
export class MyDialogComponent extends Dialog {
ngOnInit(): void {
}
}
Goal: Please help me resolve this error and hopefully create a working extension of Dialog class.
Turned out it didn't need anything fancy just needed to copy the template over. Everything else seem to have worked simply by extending it