Looking to implement a popup dialog that requests user input and returns the value.
The popup component is included in the root component, positioned above the app's router outlet.
Within the popup component, there is an open() method that toggles a boolean variable "status" used in an *ngIf directive to control the visibility of the popup.
Even with a service and Event Emitter, struggling to obtain the input form value.
Any suggestions or advice?
https://gist.github.com/alshdavid/f783ad367bc1c77cb07412ba0ea2e099
UPDATE: Apologies for previous mistakes - Realized using a redux-style data model was the solution.