src/app/directives/hide.directive.ts
Selector | [hide] |
Methods |
Inputs |
constructor(renderer: Renderer2, elRef: ElementRef)
|
|||||||||
Defined in src/app/directives/hide.directive.ts:14
|
|||||||||
Parameters :
|
hide | |
Type : boolean
|
|
Defined in src/app/directives/hide.directive.ts:14
|
ngOnChanges |
ngOnChanges()
|
Defined in src/app/directives/hide.directive.ts:18
|
Returns :
void
|
import {
Directive,
ElementRef,
Input,
OnChanges,
Renderer2
} from '@angular/core';
@Directive({
// tslint:disable-next-line:directive-selector
selector: '[hide]'
})
export class HideDirective implements OnChanges {
@Input() hide: boolean;
constructor(private renderer: Renderer2, private elRef: ElementRef) {}
ngOnChanges() {
if (this.hide) {
this.renderer.setStyle(this.elRef.nativeElement, 'visibility', 'hidden');
} else {
this.renderer.setStyle(this.elRef.nativeElement, 'visibility', 'visible');
}
}
}