Skip to content Skip to sidebar Skip to footer

How Can I Pass Props Down In Angular 2+ Like React?

In react I can arbitrarily pass props down like so: function SomeComponent(props) { const {takeOutProp, ...restOfProps} = props; return
; } How ca

Solution 1:

As opposed to React components, Angular components aren't recompiled on input changes and use @Input property decorators to enable change detection. All properties that are expected to be passed should be explicitly defined as component inputs.

There are no better options than this one for custom select component. It's possible to read static attributes from current component element and set them on nested component element, but this won't set up bindings.

As for React recipe for deep props in wrapped components:

const Baz = props => <p>{props.baz}</p>;
const Bar = props => <Baz {...props} />;
const Foo = props => <Bar {...props} />;

This is usually handled by Angular DI and a hierarchy of injectors. A provider can be defined on respective injector in order to make data and behaviour available to nested components.


Solution 2:

Actually it is not the answer on your question but perhaps it helps you. You can add one custom directive with all params you need.

import { Directive, ElementRef } from '@angular/core';

@Directive({
  selector: '[defaultConfig]'
})
export class DefaultDropdownConfigDirective {
    constructor(el: ElementRef) {
       el.nativeElement.style.backgroundColor = 'yellow';
       // your default config

    }
}

<my-dropdown defaultConfig></my-dropdown>

For more details you can read this


Post a Comment for "How Can I Pass Props Down In Angular 2+ Like React?"