How To Create A YouTube AngularJS Directive

I have often seen, developers come across a requirement to embed a YouTube video in an AngularJS application. In this post, we will learn to create a simple YouTube AngularJS directive and also to use some of the popular directive from the GitHub.

We will follow step by step approach to create YouTube custom directive. So let us start with create module and the controller.

  • youtubedirective1.js
    1. var myApp = angular.module('myApp', []);  
    2.   
    3. myApp.controller('VideoController', function ($scope) {  
    4.    $scope.video = 'zRtPUIumXcY';  
    5. });  

Next we will create a custom directive with the isolated scope. Let us go ahead and create YouTube directive with the following characteristics:

  • Directive will be used as an Element.
  • Directive will work in the isolated scope.
  • Directive replace property is set to true, such that user will not able to view the directive information in the browser.
  • In the template, iframe is used to play the YouTube video.
  • In the link function, we are watching the object passed to directive. Whenever value of object changed, directive will play the different video from YouTube.

Learn more about scopes in AngularJS custom Directives here.

By putting all above together, directive is created as shown in the listing:

  1. myApp.directive('angularYoutube', function($sce)  
  2. {  
  3.     return {  
  4.         restrict: 'E',  
  5.         scope:  
  6.         {  
  7.             video: '='  
  8.         },  
  9.         replace: true,  
  10.         template: '<div style="height:300px;"><iframe style="overflow:hidden;height:100%;width:100%" width="100%" height="100%" src="{{url}}" frameborder="1" allowfullscreen></iframe></div>',  
  11.         link: function(scope)  
  12.         {  
  13.             scope.$watch('video', function(newVal)  
  14.             {  
  15.                 if (newVal)  
  16.                 {  
  17.                     scope.url = $sce.trustAsResourceUrl("http://www.youtube.com/embed/" + newVal);  
  18.                 }  
  19.             });  
  20.         }  
  21.     }  
  22. })  
As you might notice in above listing that in the template, we are using the iframe to play the YouTube video. Also we are watching the value passed to the directive and constructing the URL using the $sce service of AngularJS.

On the view, angular-youtube directive can be used as shown in the listing:
  1. <divng-controller="VideoController">  
  2.    <angular-youtubevideo="video"></angular-youtube>  
  3. </div>  
As of now, we should able to play a video in AngularJS application. Right now we are passing hard coded video code from the controller. We can allow user to pass the video code, just by using an input textbox as shown in the listing:
  1. <divng-controller="VideoController">  
  2.     <inputtype="text" ng-model="video" placeholder="enter video code here to play" />  
  3.     <hr/>  
  4.     <angular-youtubevideo="video"></angular-youtube>  
  5. </div>  
Here we have created a very simple custom AngularJS directive to embed YouTube video in the AngularJS application.

For advanced scenarios, you may want to use Angular YouTube Embed. I find it very useful for advanced scenarios. I hope you find this post useful. Thanks for reading.

 

Recommended Free Ebook
Next Recommended Readings