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

AngularJS Example

Rate me:
Please Sign up or sign in to vote.
4.83/5 (8 votes)
15 May 2015CPOL3 min read 101.6K   6.1K   17   18
An anatomy of an AngularJS project I created. We will discuss parts of the application from HTML elements, to back end controllers and services.

Introduction

Today, we will create a simple AngularJS crud application. I created this application in Visual Studio 2013. I also downloaded a few dependencies like AngularJS, Bootstrap and Jquery.

If you want to see a live copy of the application, you can do so by clicking the link here:

Update

I've created a validation tip article here: Validation in AngularJS. Please check it out. It shows you how to validate data you've entered in your forms.

Background

AngularJS is supposed to make web development easier by allowing developers to separate code in module, controller and services. The framework is very popular in the development world and more and more companies are using it.

Application

Here is a screen shot of the application. This application allows you to add, delete and browse through a list of tenants. We are using bootstrap, AngularJS, JQuery. Visual Studio solution is used to keep track of all the dependencies.

Module

The heart of an AngularJS application is the module. To create a module, we create a JavaScript file named realestateApp.js. The contents are:

JavaScript
(function () {
    angular.module("realestateApp", []);
}());

This will create a module named realestateApp. We will use this module in our app in this way in our HTML file:

JavaScript
<body ng-app="realestateApp" class="ng-scope">

Controller

Next, we need a controller to have access to model data and methods. This line will register a controller named tenantsController like this:

JavaScript
<div class="container" ng-controller="tenantsController" ngcloak>

This controller contains an angular value called $scope which acts like a model which elements inside the div can access. In our app, we add the model to $scope in this way:

JavaScript
$scope.tenant = tenantService.getTenant(0);

This allows div to use tenant as a model used for 2 way binding and also use methods on the model. An example how this is done is 2 ways. One is using model in an input text box like this:

JavaScript
<input type="text" ng-model="tenant.FirstName" placeholder="Enter a name here">

Any changes in the text form will automatically update the model so no saving is necessary.

Another way is to assign function to the click event on a button like this:

JavaScript
<button class="btn btn-primary" ng-click="previousTenant()">

This allows form events to call functions to update the model object and provide features such as load, add, and delete data into the model.

The controller which we called tenantsController contain methods to load model from a service called tenantService. The service is registered with the following line in tenantsController.js:

JavaScript
app.controller("tenantsController", ["$scope", "tenantService", tenantsController]);

It also has methods to manipulate the model. In our application, we use 4 methods and I've include the code here:

JavaScript
(function (app) {
    var tenantsController = function ($scope, tenantService) {
        var init = function () {
            $scope.tenant = tenantService.getTenant(0);
       };

        var index = 0;

        $scope.nextTenant = function () {
            index++;
            if (tenantService.isOverflow(index))
            {
                index--;
            }
            $scope.tenant = tenantService.getTenant(index);

        }

        $scope.previousTenant = function () {
            index--;
            if (index < 0) {
                index = 0;
            }
            $scope.tenant = tenantService.getTenant(index);
        }

        $scope.addTenant = function () {
            index--;
            if (index < 0) {
                index = 0;
            }
            $scope.tenant = tenantService.addTenant(index);
        }

        $scope.deleteTenant = function () {
         
            $scope.tenant = tenantService.deleteTenant(index);
            index--;
        }      

        init();
    };
    app.controller("tenantsController", ["$scope", "tenantService", tenantsController]);
}(angular.module("realestateApp")));

These function will be available in the UI to hook up to events such as button press, key press, and other events.

Service

These methods along with the model are served through a service called tenantService. This service contains the original data in JSON format, here is a small sample:

JavaScript
var tenant =
                  [  
                      {
                          Id : 1,
                          FirstName: "Jose",
                          LastName: "Vowels",
                          Company: "ACME",
                          JobTitle: "Marine electronics technician",
                          BusinessPhone: "5593346999",
                          HomePhone: "5468546525",
                          MobilePhone: "8525646587",
                          FaxNumber: "9785465854",
                          Street: "600 Caisson Hill Road ",
                          City: "Smoky Hill",
                          State: "Texas",
                          Country: "USA",
                          Email: "PamelaJCallaghan@rhyta.com",
                          WebPage: "JesseAIrvine.dayrep.com",
                          Notes: " "                          
                      },

We now have a factory method architecture for the controller to use. The template code looks like this:

JavaScript
 var tenantService = function () {
        var tenantFactory = {};
         ......
         return tenantFactory;
};
app.factory("tenantService", tenantService);

This allows tenantService to be used by the controller like a module with properties, and methods.

In our factory methods, we have functions which the controller uses in our application, I include the code here:

JavaScript
var tenantService = function () {
        var tenantFactory = {};

        tenantFactory.getTenant = function (index) {
            var returnTenant = [];
            if (tenantFactory.isOverflow(index))
            {
                index = 0;
            }
            returnTenant.push(tenant[index]);
            return returnTenant;
        };

        tenantFactory.isOverflow = function (index){

            return (tenant.length <= index)
        };

        tenantFactory.addTenant = function (index) {
            var returnTenant = [];
            var newIndex = tenant.length + 1;
            tenant.push(tenantFactory.newItem(newIndex));
            returnTenant.push(tenant[tenant.length -1]);
            return (returnTenant)
        };

         tenantFactory.deleteTenant = function (index) {
            var returnTenant = [];

            tenant.splice(index,1);
           if (tenant.length <= index)
           {
               index = tenant.length -1;
           }
            returnTenant.push(tenant[index]);
            return (returnTenant)
        };

        tenantFactory.newItem = function (index) {

            var newItem = {

                Id: index,
                FirstName: "",
                LastName: "",
                Company: "",
                JobTitle: "",
                BusinessPhone: "",
                HomePhone: "",
                MobilePhone: "",
                FaxNumber: "",
                Street: "",
                City: "",
                State: "",
                Country: "",
                Email: "",
                WebPage: "",
                Notes: ""
            }
            return newItem;
        }

        return tenantFactory;
    };

When combined, the HTML page, controller, service and module files work together to bring a working application alive on the web without heavy DOM manipulation and spaghetti code.

We create separation of concerns which can be tested individually and write code which are maintainable and well organized.

I hope you enjoyed this application guide and appreciate AngularJS and its great features. In the future, I will post more articles on form validation, multiple views, and client server interaction.

History

  • Version 1 5-15-2015

License

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


Written By
United States United States
Hello, I'm a developer in the Orlando area. I enjoy playing basketball, golf and learning about new technologies. I have a passion in the web development space and hope to learn more about how to creating useful apps and more importantly share my knowledge with the community.

I'm available for freelance work, specializing in web applications.
You can reach me at tonyjen0905@gmail.com

Comments and Discussions

 
QuestionAngularJS RealEstate Example Pin
Member 1354079426-Nov-17 18:07
Member 1354079426-Nov-17 18:07 
QuestionWhich Project type Pin
GerhardKreuzer11-Jan-16 8:17
GerhardKreuzer11-Jan-16 8:17 
AnswerRe: Which Project type Pin
Tony Jen29-Feb-16 8:44
Tony Jen29-Feb-16 8:44 
QuestionVS2012 AngularJS template Pin
Member 1169705917-May-15 19:20
Member 1169705917-May-15 19:20 
AnswerRe: VS2012 AngularJS template Pin
Tony Jen18-May-15 0:42
Tony Jen18-May-15 0:42 
GeneralRe: VS2012 AngularJS template Pin
Member 1169705921-May-15 6:47
Member 1169705921-May-15 6:47 
GeneralRe: VS2012 AngularJS template Pin
Tony Jen21-May-15 8:06
Tony Jen21-May-15 8:06 
QuestionLive preview app link Pin
Tony Jen17-May-15 9:32
Tony Jen17-May-15 9:32 
QuestionUsage with Visual Studio 2012 Premium Pin
Member 1169705917-May-15 7:29
Member 1169705917-May-15 7:29 
AnswerRe: Usage with Visual Studio 2012 Premium Pin
Tony Jen17-May-15 8:40
Tony Jen17-May-15 8:40 
QuestionComments are welcome. Pin
Tony Jen15-May-15 10:32
Tony Jen15-May-15 10:32 
AnswerA few things to consider... Pin
Afzaal Ahmad Zeeshan15-May-15 12:38
professionalAfzaal Ahmad Zeeshan15-May-15 12:38 
GeneralRe: A few things to consider... Pin
Tony Jen15-May-15 14:13
Tony Jen15-May-15 14:13 
Which history section are you talking about. And where is the unclear HTML code. Also malware do not consists of HTML. That is static text.
GeneralRe: A few things to consider... Pin
Afzaal Ahmad Zeeshan15-May-15 14:16
professionalAfzaal Ahmad Zeeshan15-May-15 14:16 
GeneralRe: A few things to consider... Pin
Tony Jen15-May-15 14:26
Tony Jen15-May-15 14:26 
AnswerRe: A few things to consider... Pin
Afzaal Ahmad Zeeshan15-May-15 14:29
professionalAfzaal Ahmad Zeeshan15-May-15 14:29 
GeneralRe: A few things to consider... Pin
Tony Jen15-May-15 14:40
Tony Jen15-May-15 14:40 

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.