Angular 9 Renderer2 with Directives Tutorial by Example

Angular 9 Renderer2 with Directives Tutorial by Example

In this tutorial, we'll be learning about Renderer2 in Angular 9/8 and directives which allow you to manipulate DOM. Renderer2 is a service which provides methods like createElement, createText, appendChild and addClass that help you query and manipulate the DOM elements in your Angular 9 application.

We'll learn how to use:

  • Renderer2 with Angular 9 directives by example
  • Renderer2 createElement, createText and appendChild for creating and appending DOM elements with directives in Angular 9,
  • setAttribute and removeAttribute for dynamically setting and removing DOM attributes,
  • addClass and removeClass for dynamically adding and removing classes in Angular 9 directive,
  • setStyle and removeStyle for dyncamically setting and removing CSS styles,
  • setProperty for setting DOM properties like href of <a> elements

The Renderer2 Service in Angular 9

As mentionned before, Renderer2 is an Angular service that can be injected in the other services or components. In Angular 9, Renderer is deprecated and Renderer2 is the service that you need to use for working with the DOM.

Renderer2 allows you to create Angular 9 apps which can be rendered in environments that don’t have DOM like servers or web workers.

How to Use Renderer2 with Angular 9 Directive by Example

In this example, we'll use Renderer2 with a custom directive.

Custom directives are great example for Renderer2 in Angular 9 becaue they are the recommended artifacts for working with the DOM.

We'll see how to use the Renderer2' addClass method of Renderer2 for adding a custom CSS class to the DOM elements where the directive is applied.

Create an Angular 9 Directive

Head over to a terminal, navigate to your Angular 9 project's folder and run the following command:

ng generate directive apply-class

Next, open the src/app/apply-class/apply-class.directive.ts file and update it as follows:


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

@Directive({
  selector: '[applyCSSClass]'
})

export class ApplyClassDirective implements OnInit {

  constructor(
    private renderer2: Renderer2, 
    private elementRef: ElementRef
  ) { }

  ngOnInit() {
    this.renderer2.addClass(this.elementRef.nativeElement, 'myClass')
  }

}

We used Angular's ElementRef for getting a reference to the native DOM element.

The directive can be used in your Angular templates by attahing it to elements and will add a CSS class called myClass.

<p applyCSSClass>
  Angular 9 Example Directive with Renderer2
</p>

We apply the directive to DOM elements in the template using the selector specified in the directive which is applyCSSClass.

Angular 9' Renderer2 createElement, createText and appendChild Methods

The createElement method of Renderer2 allows you to create DOM elements in the Angular way without directy working with DOM.

The createText method of Renderer2 allows you to create text nodes in the DOM.

Generate an Angular 9 Directive

Head back to your command-line interface and run the following command to generate a directive:

ng generate directive new-node

Open the directive file and update it as follows:

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

@Directive({
   selector: '[addNewElement]'
})

export class NewNodeDirective implements OnInit {

   constructor(
      private renderer2: Renderer2,
      private elementRef: ElementRef
   ) { }

   ngOnInit() {
      const pNode = this.renderer2.createElement('p');
      const txtNode = this.renderer.createText('A new text node');

      this.renderer2.appendChild(pNode, txtNode);
      this.renderer2.appendChild(this.elementRef.nativeElement, pNode);
   }

}

Next, open your Angular template and add the following markup to apply the directive:

<div addNewElement></div>

Angular 9 Renderer2 setAttribute and removeAttribute

Another use case of Renderer2 in Angular 9 is setting and removing attributes.

Renderer2 provides the setAttribute() and removeAttribute() methods for setting and removing attributes from DOM elements in the Angular way without using native JavaScript methods.

Generatig an Angular 9 Directive

Go back to your terminal and generate a new directive as follows:

ng generate directive add-attribute

Open the directive file and update it as follows:

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

@Directive({
   selector: '[addAttribute]'
})

export class AddAttributeDirective implements OnInit {

   constructor(
      private renderer2: Renderer2,
      private elementRef: ElementRef
   ) { }

   ngOnInit() {
      this.renderer2.setAttribute(this.elementRef.nativeElement, 'aria-hidden', 'true');
   }

}
<p addAttribute>Renderer2 Directive</p>

We used the setAttribute() method to set an attribute in the DOM element.

Angular 9 Renderer2 removeClass

Let's now see how to use the removeClass() method of Renderer2 in Angular 9.

Create a new remove-class directive and update it as follows

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

@Directive({
   selector: '[removeCSSClass]'
})

export class RemoveClassDirective implements OnInit {

   constructor(
      private renderer2: Renderer2,
      private elementRef: ElementRef
   ) { }

   ngOnInit() {
      this.renderer2.removeClass(this.elementRef.nativeElement, 'myClass');
   }

}
<p removeCSSClass>Renderer2 removeClass</p>

Angular 9' Renderer2 setStyle and removeStyle

Just like addClass and removeClass, Renderer2 provides the setStyle() and removeStyle() methods for dynamically setting and removing styles without working with the DOM using native methods.

These methods allow you to set and remove inline CSS styles in DOM elements:

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

@Directive({
   selector: '[addCSSStyle]'
})

export class AddCSSStyleDirective implements OnInit {

   constructor(
      private renderer2: Renderer2,
      private elementRef: ElementRef
   ) { }

   ngOnInit() {
      this.renderer2.setStyle(
         this.elementRef.nativeElement,
         'background-color',
         'black'
      );
   }

}

This is how the directive can be applied in the HTML templates:

<p addCSSStyle>
Renderer 2 setStyle Example
</p>

We can also remove the inline style using the removeStyle() method:

constructor(
  private renderer2: Renderer2, 
  private elementRef: ElementRef
) {}

ngOnInit() {
  this.renderer2.removeStyle(this.elementRef.nativeElement, 'background-color');
}

Angular 9 Renderer2's setProperty

Renderer2 provides the setProperty() methods allows you to set properties in Angular.

Let's see this by example:

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

@Directive({
   selector: '[setHrefProperty]'
})

export class SetHrefDirective implements OnInit {

   constructor(
      private renderer2: Renderer2,
      private elementRef: ElementRef
   ) { }

   ngOnInit() {
      this.renderer2.setProperty(this.elementRef.nativeElement, 'href', 'https://techiediaries.com');
   }

}

This is how the directive is applied:

<a setHrefProperty>Go to Techiediaries</a>

Conclusion

In this tutorial, we've seen how to use Renderer2 in Angular 9 with directives to access and manipulate the DOM without using native JavaScript methods.



Create Angular 17 Project
Building a Password Strength Meter in Angular 17
Angular 17 Password Show/Hide with Eye Icon
Angular 17 tutoriel
Angular Select Change Event
Angular iframe
Angular FormArray setValue() and patchValue()
Angular Find Substring in String
Send File to API in Angular 17
EventEmitter Parent to Child Communication
Create an Angular Material button with an icon and text
Input change event in Angular 17
Find an element by ID in Angular 17
Find an element by ID from another component in Angular 17
Find duplicate objects in an array in JavaScript and Angular
What is new with Angular 17
Style binding to text-decoration in Angular
Remove an item from an array in Angular
Remove a component in Angular
Delete a component in Angular
Use TypeScript enums in Angular templates
Set the value of an individual reactive form fields
Signal-based components in Angular 17
Angular libraries for Markdown: A comprehensive guide
Angular libraries for cookies: A comprehensive guide
Build an Angular 14 CRUD Example & Tutorial
Angular 9 Components: Input and Output
Angular 13 selectors
Picture-in-Picture with JavaScript and Angular 10
Jasmine Unit Testing for Angular 12
Angular 9 Tutorial By Example: REST CRUD APIs & HTTP GET Requests with HttpClient
Angular 10/9 Elements Tutorial by Example: Building Web Components
Angular 10/9 Router Tutorial: Learn Routing & Navigation by Example
Angular 10/9 Router CanActivate Guards and UrlTree Parsed Routes
Angular 10/9 JWT Authentication Tutorial with Example
Style Angular 10/9 Components with CSS and ngStyle/ngClass Directives
Upload Images In TypeScript/Node & Angular 9/Ionic 5: Working with Imports, Decorators, Async/Await and FormData
Angular 9/Ionic 5 Chat App: Unsubscribe from RxJS Subjects, OnDestroy/OnInit and ChangeDetectorRef
Adding UI Guards, Auto-Scrolling, Auth State, Typing Indicators and File Attachments with FileReader to your Angular 9/Ionic 5 Chat App
Private Chat Rooms in Angular 9/Ionic 5: Working with TypeScript Strings, Arrays, Promises, and RxJS Behavior/Replay Subjects
Building a Chat App with TypeScript/Node.js, Ionic 5/Angular 9 & PubNub/Chatkit
Chat Read Cursors with Angular 9/Ionic 5 Chat App: Working with TypeScript Variables/Methods & Textarea Keydown/Focusin Events
Add JWT REST API Authentication to Your Node.js/TypeScript Backend with TypeORM and SQLite3 Database
Building Chat App Frontend UI with JWT Auth Using Ionic 5/Angular 9
Install Angular 10 CLI with NPM and Create a New Example App with Routing
Styling An Angular 10 Example App with Bootstrap 4 Navbar, Jumbotron, Tables, Forms and Cards
Integrate Bootstrap 4/jQuery with Angular 10 and Styling the UI With Navbar and Table CSS Classes
Angular 10/9 Tutorial and Example: Build your First Angular App
Angular 9/8 ngIf Tutorial & Example
Angular 10 New Features
Create New Angular 9 Workspace and Application: Using Build and Serve
Angular 10 Release Date: Angular 10 Will Focus on Ivy Artifacts and Libraries Support
HTML5 Download Attribute with TypeScript and Angular 9
Angular 9.1+ Local Direction Query API: getLocaleDirection Example
Angular 9.1 displayBlock CLI Component Generator Option by Example
Angular 15 Basics Tutorial by Example
Angular 9/8 ngFor Directive: Render Arrays with ngFor by Example
Responsive Image Breakpoints Example with CDK's BreakpointObserver in Angular 9/8
Angular 9/8 DOM Queries: ViewChild and ViewChildren Example
The Angular 9/8 Router: Route Parameters with Snapshot and ParamMap by Example
Angular 9/8 Nested Routing and Child Routes by Example
Angular 9 Examples: 2 Ways To Display A Component (Selector & Router)
Angular 9/8 Tutorial: Http POST to Node/Express.js Example
Angular 9/8 Feature and Root Modules by Example
Angular 9/8 with PHP: Consuming a RESTful CRUD API with HttpClient and Forms
Angular 9/8 with PHP and MySQL Database: REST CRUD Example & Tutorial
Unit Testing Angular 9/8 Apps Tutorial with Jasmine & Karma by Example
Angular 9 Web Components: Custom Elements & Shadow DOM
Angular 9 Renderer2 with Directives Tutorial by Example
Build Progressive Web Apps (PWA) with Angular 9/8 Tutorial and Example
Angular 9 Internationalization/Localization with ngx-translate Tutorial and Example
Create Angular 9 Calendar with ngx-bootstrap datepicker Example and Tutorial
Multiple File Upload with Angular 9 FormData and PHP by Example
Angular 9/8 Reactive Forms with Validation Tutorial by Example
Angular 9/8 Template Forms Tutorial: Example Authentication Form (ngModel/ngForm/ngSubmit)
Angular 9/8 JAMStack By Example
Angular HttpClient v9/8 β€” Building a Service for Sending API Calls and Fetching Data
Styling An Angular 9/8/7 Example App with Bootstrap 4 Navbar, Jumbotron, Tables, Forms and Cards

βœ‹If you have any questions about this article, ask them in our GitHub Discussions πŸ‘ˆ community. You can also Gitter

βœ‹ Want to master Angular 14? Read our angular tutorial and join our #DailyAngularChallenge where we learn to build components, directives, services, pipes and complete web, mobile, and desktop applications with latest Angular version.

βœ‹ Make sure to join our Angular 14 Dev Community πŸ‘ˆ to discuss anything related to Angular development.

❀️ Like our page and subscribe to our feed for updates!

Find a list of emojis to copy and paste