DEV Community

Cover image for Angular CDK Tutorial: Automatically Resizing Textareas
Brian Treese
Brian Treese

Posted on • Originally published at briantree.se

Angular CDK Tutorial: Automatically Resizing Textareas

By default, an HTML textarea control doesn’t expand or contract as content is added and removed. Sometimes this is ok, but often it would be better if we did have some control where we could allow the height to resize automatically, to better fit the content. Well, this is possible and, in fact, it’s really easy to do in Angular when using the CDK. In this example I’ll show you just how easy it is. Alright, let’s get to it!

The Demo Application

For the example in this post, we’ll be working with this demo application, Petpix. It’s an app where people can share cool images of their pets.

Under each image, there’s a description field where the user can add content to describe the image. We want this textarea to resize automatically as we add or remove text.

Example of a standard textarea not automatically resizing when adding and removing content

This is what we’re going to do in this example, and we’ll be using the Angular CDK TextFieldModule to do it quickly and easily.

Installing the Angular CDK

Ok, since we’re using the Angular CDK, you ‘ll need to make sure that, before you do anything else, you install it using the following command in your terminal within the root directory for your Angular application.

npm i @angular/cdk
Enter fullscreen mode Exit fullscreen mode

Once we have it installed, we will be able to use the TextFieldModule to configure our description textarea to automatically size itself to the content within it.

Ok, let’s look at some code.

How to Auto-Resize textareas in Angular Using the cdkTextareaAutosize Directive

Within the slider component, at the bottom of the template, there’s a description form component. Let’s take a look at the template for this component to see what we’re working with.

Within the template, there's a standard textarea element.

desription-form.component.html

<label for="description">Image Description:</label>
<section>
    <textarea
        id="description"
        placeholder="Provide additional context about this image of your pet">
    </textarea>
</section>
Enter fullscreen mode Exit fullscreen mode

Now, this may vary some in different browsers, but here in Chrome, the default height for a textarea will show two rows of text. So, if we type in this textarea, then hit return to go to a new line, we can see that it fits two rows of text perfectly. Then if we hit return again and add another line, we get a scrollbar.

Example of a standard textarea not automatically resizing when adding and removing content

And this is what we want to change. To do this, we'll add the cdkTextareaAutosize directive. But first, we need to import this module in our description form component.

desription-form.component.ts

...
import { TextFieldModule } from '@angular/cdk/text-field';

@Component({
    selector: 'app-description-form',
    ...
    imports: [ TextFieldModule ]
})
export class DescriptionFormComponent {
}
Enter fullscreen mode Exit fullscreen mode

Ok, now we can switch back to the template and add the directive to the textarea.

desription-form.component.html

<textarea ... cdkTextareaAutosize></textarea>
Enter fullscreen mode Exit fullscreen mode

And that’s all we need, now let’s save and see how it works.

Now we can see that the textarea no longer defaults to a height of two rows, instead it accounts for only a single row. So the directive appears to be doing its job. But what’s a little odd is that there's a scrollbar even when no text has been added. It does automatically resize as content is added, but when the content is cleared out, it doesn't resize back down to the initial height.

Example of the cdkTextareaAutosize directive partially functioning but without the proper styles

So, it looks like it's not working properly, but there’s a simple fix for these issues.

Including Angular CDK Auto-size Styles for Proper textarea Height Calculation

Now, I had to find this out the hard way, but in order for this directive to calculate the height properly, we need to include the text-field-autosize styles from the CDK. To include these, we can include them within our global stylesheet.

Now, I’m using SCSS so I’ll add a @use directive and then path to "@angular/cdk" to include these styles. Then I can use the @include directive to include the text-field-autosize mixin, which is the piece that contains the styles that we need.

global_styles.scss

@use '@angular/cdk';
@include cdk.text-field-autosize;
Enter fullscreen mode Exit fullscreen mode

Now, it’s important to note that if you’re not using SCSS like me, you can instead import the text-field-prebuilt.css file, and that would include the styles needed for the proper height calculation.

@import '@angular/cdk/text-field-prebuilt.css';
Enter fullscreen mode Exit fullscreen mode

But, I’m going to stick with SCSS for this example.

Alright, now that the styles have been imported, let’s save and see if it’s working correctly now.

Ok, this looks promising now right? There’s no more scrollbar. Now when we add and remove content, it should now resize properly too.

Example of the cdkTextareaAutosize directive functioning correctly with proper styles included

Nice, it all seems to be working correctly now.

So, if you use this directive, you’ll just need to be sure to add those styles or it’ll never work correctly.

Add Min and Max row Counts to Control Min and Max textarea Heights

Something else handy that we can do with the cdkTextareaAutosize directive is, we can control them minimum number of rows that we want it to be able to shrink to, as well as the maximum number of rows that we want it to be able to grow to.

There are two inputs that we can use for this, cdkAutosizeMinRows, and cdkAutoSizeMaxRows.

So, let’s add these to our textarea. Let’s go with a minimum of three rows, so it will never shrink below that, and let’s go with a max of six rows. So it will add a scrollbar when the content grows to seven or more rows.

desription-form.component.html

<textarea
    ...
    cdkTextareaAutosize
    cdkAutosizeMinRows="3"
    cdkAutosizeMaxRows="6">
</textarea>
Enter fullscreen mode Exit fullscreen mode

Ok, let’s save and see how it looks now.

Example of the cdkTextareaAutosize directive functioning with cdkAutosizeMinRows and cdkAutosizeMaxRows configured

Nice, now it’s taller. It fits three rows of text before it resizes. Then it grows as we add four, five, and six rows. And when we go to seven and beyond, now we get a scrollbar. Then, when we clear it all out, it goes back down to three rows.

Pretty nice right?

Conclusion

So there you go, now you have a quick and easy way to create a textarea that automatically resizes in Angular. And it doesn’t take much effort at all thanks to the Angular CDK.

I hope you found this tutorial helpful, and if you did, check out my YouTube channel for more tutorials on the Angular CDK and Angular in general.

Want to See It in Action?

Check out the demo code and examples of these techniques in the in the Stackblitz example below. If you have any questions or thoughts, don’t hesitate to leave a comment.


Found This Helpful?

If you found this article helpful and want to show some love, you can always buy me a coffee!

Top comments (0)