Hi everyone,
I have a parent component in which i define a logic. The child component instead is always the same and it receives always the same props from the parent.
I explain better. Here an example:
<parent-component>
<child-component prop1="prop1" prop2="prop2" ...... again>
</child-component>
</parent-component>
Form my instance:
<app-login>
<app-form
[form]="form"
[model]="model"
[fields]="fields"
[submit]="submit.bind(this)"
[url]="url">
</app-form>
</app-login>
N.B: All the props passed on the app-form component are defined in the parent component ( They are alway the same!!)
App form is like a placeholder for the form , logic is always the same: it sends the request to the api , and handles error showing them in the inputs (inline error-forms).
The parent component defines the html thanks to the ng-formly package, and define behaviour after the submit.
Now i want to know if is possible to avoid to redefine everytime all the props.
Something like getting all useful props from parent.
The final result should be like this:
<app-login>
<app-form
</app-form>
</app-login>
Thanks in advance!