How To Set Dynamic Height At Element With Angular Directive πŸ“

Nikos Anifantis
2 min readApr 20, 2021

The Problem

Interactive web designs require elements with dynamic height that depends on their location in the window viewport. More specifically, their height starts at the top offset position of the element inside the window and ends at the end of the window. In this article we will try to implement dynamic height using Angular directives.

Implementation

Create New Angular Directive

First of all, we create an Angular directive by injecting the the native element from ElementRef.

Calculate Top Offset Of The Element

The next step is to calculate the top offset of the HTML element depending on the window. We use the .getBoundingClientRect() method that returns a DOMRect object which is the smallest rectangle which contains the entire element, including its padding and border-width.

Set Dynamic Height To Element

This method sets the calculated height to the host HTML element, using the Angular Renderer ( Renderer2). If the user knows the to offset we don't need to recalculate it.

Observe Window Resize

We need to observe the window resize event in order to calculate the height on any change. We use the fromEvent method from rxjs to register at window's resize events and it converts them to observable. The problem here is that the events are too many when we resize the window and we have to decrease them. Thus, we use throttleTime and debounceTime from rxjs/operators to minimize the re-calculation of the dynamic height.

Tip: Unsubscribe on destroy to avoid memory leaks.

Final Result πŸ˜‰

Great, we have done it! We have created an Angular directive that sets dynamic height to its host HTML element in a very short time.

We made it to the end! πŸ‘πŸ‘πŸ‘ Hope you found this article helpful! πŸ˜‰

Originally published at dev.to

--

--

Nikos Anifantis

Full Stack Engineer. #Development addict. Enthusiast in #WebDev.