Tutorial

Building Custom Directives in Angular

Published on November 29, 2016
author

Alligator.io

Building Custom Directives in Angular

Building directives in Angular 2+ is not much different than building components. After all, components are just directives with a view attached. In fact, there are three kinds of directives in Angular: components, attribute directives and structural directives.

Structural directives add or remove elements from the DOM. NgIf, ngFor and ngSwitch are examples of built-in structural directives. Attribute directives are used to change the styling or behavior of elements.

Letā€™s learn how to create a custom attribute directive with an example with a appShadow directive.

Defining the directive class

Import Directive, ElementRef and Renderer2 from @angular/core, then use the renderer to set the elementā€™s style to our desired box-shadow value:

Directive: shadow.directive.ts
import { Directive, ElementRef, Renderer2 } from '@angular/core';


Notice how our selector is wrapped in brackets: [appShadow], to properly make it an attribute directive.

Declaring it in our app module

Hereā€™s how you would declare our new directive in the app root module:

App Module: app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';

import { ShadowDirective } from './shadow.directive';

Using the directive in our template

Now itā€™s as simple as using the attribute directive in our template like so:

App Module: app.component.html
<span appShadow>Alligator</span>

Improving our directive

Our appShadow directive is a bit dumb, and we could have applied a shadow simply with a style binding instead. Letā€™s therefore make it better by allowing to pass values to our directive:

Directive: shadow.directive.ts
import { Directive, ElementRef, Input, Renderer2, OnInit } from '@angular/core';

@Directive({ selector: '[appShadow]' })
export class ShadowDirective implements OnInit {
@Input() appShadow: string;
@Input() appShadowX: string;
@Input() appShadowY: string;
@Input() appShadowBlur: string;

constructor(private elem: ElementRef, private renderer: Renderer2) { }

ngOnInit() {
  let shadowStr = `${ this.appShadowX } ${ this.appShadowY } ${ this.appShadowBlur } ${ this.appShadow }`;
  this.renderer.setStyle(this.elem.nativeElement, 'box-shadow', shadowStr);
}

We used inputs to pass data from our component template to the directive. Notice also how weā€™re using the OnInit lifecycle hook now instead of doing the work in the constructor. Thatā€™s because our inputs donā€™t have any value at construction time.

You can now have full control over the shadow:

App Module: app.component.html
<span [appShadow]="'hotpink'"
      [appShadowX]="'12px'"
      [appShadowY]="'6px'"
      [appShadowBlur]="'30px'">Alligator</span>

šŸ‘‰ We called our directive appShadow, and not shadow, because itā€™s a best practice to keep your custom directives scoped to your application.

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

About the authors
Default avatar
Alligator.io

author

While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the ā€œreport an issueā€œ button at the bottom of the tutorial.

Still looking for an answer?

Ask a questionSearch for more help

Was this helpful?
Ā 
Leave a comment
ļ»æ

This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

Featured on Community

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow ā€” whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel