Click here to Skip to main content
15,890,670 members
Articles / Web Development / HTML
Tip/Trick

AngularJS 1.x using TypeScript

Rate me:
Please Sign up or sign in to vote.
4.00/5 (4 votes)
29 Nov 2015CPOL4 min read 19.8K   12   6   1
Create AngularJS 1.x web application using Microsoft Typescript

Introduction

AngularJS is a JavaScript framework to create web applications with MVC on client side. Using AngularJS, you can create robust web applications having features such as two-way data binding, HTML templates, client side MVC framework, dependency injection and directives. Apart from this, each piece of code you write is testable.

Typescript is known to be a superset of JavaScript. Developed by Microsoft, its aim is to provide type safety and principles of OOP to existing JavaScript. As such, each piece of JavaScript code is always backward compatible to typescript counterpart.

In this tutorial, we will create a sample web application using AngularJS 1.x and Typescript.

We will be creating a web application where user can check whether his email or username has been compromised, using API provided by haveibeenpwned.com.

Background

This tutorial assumes you are a .NET developer and using Visual Studio 2013 as primary code editor. It is also assumed you have working knowledge of AngularJS with JavaScript as well as know how to use npm and bower.

Using the Code

We will be using the following project structure:

/scripts
  /modules
    /HaveIBeenPwned
/content
  /css
/typings
  /angularjs
  /jquery
index.html

So let's get started.

Using Visual Studio 2013, create an empty ASP.NET Web Application named “HaveIBeenPwned”.

Setting Up The Project

Now, we need to add JavaScript files related to angular-core and angular-route. For that, we will use Bower. Execute the following commands in git window to download the dependencies.

PowerShell
bower install angular#1.4.8
bower install angular-route

Next step is to download type declaration files of angular. These would help in intellisense feature of Visual Studio. To do that, we need to install a node module “tsd” : Typescript Definition Manager.

PowerShell
npm install -g tsd

Once the module is installed, we will use it to download declaration files.

PowerShell
tsd install angular
tsd install angular-route

This will create a new directory called typings with a sub directory called angularjs. Within will be the two Angular declaration files you just installed. As AngularJS has a dependency on jqLite, the declaration files for jQuery will also be downloaded. Once everything is downloaded, include all dependencies in Visual Studio. The solution explorer should look like this:

Image 2

Next, we are going to create AngularJS related files. Create app.ts in scripts folder. This will be app.js file for web application and will be different from module specific app.js. Create a new app.module.ts in scripts/modules/HaveIBeenPwned folder. This will module specific app.js. Add the following code to app.module.ts.

PowerShell
module HaveIBeenPwned {
    'use strict';
 
    angular.module('HaveIBeenPwned', ['ngRoute']);
}

The above code will create a new module named HaveIBeenPwned. Inside that, it will create a new angular module with the same name and it will use dependency injection to inject module ngRoute. Typescript modules ensures separation of concern. Next, we need to configure angular routes. Instead of using traditional code to inject dependencies on config function, we will use different code to leverage Typescript. Consider the following piece of code.

PowerShell
module HaveIBeenPwned {
    'use strict';
 
    function routes($routeProvider: ng.route.IRouteProvider) {
    }
 
    routes.$inject = ['$routeProvider'];
 
    angular.module('HaveIBeenPwned')
        .config(routes);
}

We used Typescript type declaration on function parameters. Next step will be to configure routes for our module. Add the following code inside newly created routes function.

JavaScript
function routes($routeProvider: ng.route.IRouteProvider) {
    $routeProvider
        .when("/searchMyHandle", {
            templateUrl: '/scripts/modules/HaveIBeenPwned/_searchView.html',
            controller: 'SearchHandleController'
        });
}

You will also start seeing the benefit of using Typescript in Visual Studio. As a seasoned C# developer, I find myself using the same experience to write Typescript code.

Image 3

Next, we will create SearchHandleController in Typescript using classes. In order to inject the dependencies in Typescript class, you need to use static $inject. Add a new Typescript file named SearchHandleController.ts and add the following code to it.

JavaScript
module HaveIBeenPwned {
    class SearchHandleController {
        static $inject = ['HaveIBeenPwnedService'];
 
        constructor(private haveIBeenPwnedService: IHaveIBeenPwnedService) {
        }
    }
 
    angular.module('HaveIBeenPwned')
        .controller('SearchHandleController', SearchHandleController);
}

In the above class, we are trying to inject dependency HaveIBeenPwnedService, which we are yet to create. You don’t need to create separate variables in Typescript just to make them public or private. You can use constructor to do that. Whatever access modifier you assign to variable, it will be added to properties of that class. The class which we have created is present under module HaveIBeenPwned but is not accessible outside its module. To do that, we need to mark it with keyword Export. So, the above code will be changed to:

JavaScript
export module HaveIBeenPwned {

Next step is creation of HaveIBeenPwnedService. Add a new Typescript file named HaveIBeenPwnedService.ts to modules folder and add the following code:

JavaScript
module HaveIBeenPwned {
    export interface IHaveIBeenPwnedService {
        check(handle: string): ng.IPromise<{}>;
    }
 
    class HaveIBeenPwnedService implements IHaveIBeenPwnedService {
        static $inject = ['$http'];
 
        constructor(private $http: ng.IHttpService) {
        }
 
        check(handle: string): ng.IPromise<{}> {
            return this.$http.get("https://haveibeenpwned.com/api/v2/breachedaccount/" + handle);    
        }
    }
 
    angular
        .module('HaveIBeenPwned')
        .service('HaveIBeenPwnedService', HaveIBeenPwnedService);
}

Now, we will go back to our controller class and use the service to call the API.

JavaScript
private hackedAccount: HackedAccount[];
 
submit(handle: string) {
    this.haveIBeenPwnedService.check(handle).then
    ((result: ng.IHttpPromiseCallbackArg<HackedAccount[]>) => {
        this.hackedAccount = result.data;
    })
        .catch((reason) => {
            console.log(reason);
        });
}

Since HackedAccount model is not available, add a new Typescript file named HackedAccount.ts and add the following code to it.

JavaScript
module HaveIBeenPwned {
    export class HackedAccount {
        Title: string;
        Name: string;
        Domain: string;
        BreachDate: string;
        AddedDate: string;
        PwnCount: number;
        Description: string;
        DataClasses: string[];
        IsVerified: boolean;
        LogoType: string;
    }
}

Next, we need to create _searchView.html. Add a new html page to the module folder and insert the following code to it.

HTML
<div>
    <label>
        Enter your email address:
        <input type="email" id="emailAddress" 
        name="emailAddress" ng-model="shc.emailAddress" 
        ng-enter="shc.submit(shc.emailAddress)">
    </label>
</div>
<button ng-click="shc.submit(shc.emailAddress)">Check</button>
<table>
    <tbody>
        <tr ng-repeat="hackedAccount in shc.hackedAccounts">
            <td>{{hackedAccount.Title}}</td>
        </tr>
    </tbody>
</table>

Once everything is done, build the solution and run it.

Points of Interest

The above tutorial teaches us how we can create AngularJS 1.x web applications using Typescript.

History

  • 28/11/2015 - Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionPlease can you update and make clearer Pin
Member 1342670124-Sep-17 4:18
Member 1342670124-Sep-17 4:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.