Learning AngularJS by Example – The Customer Manager Application

Posted by dwahlin on ASP.net Weblogs See other posts from ASP.net Weblogs or by dwahlin
Published on Sat, 26 Oct 2013 04:35:19 GMT Indexed on 2013/10/26 9:54 UTC
Read the original article Hit count: 768

I’m always tinkering around with different ideas and toward the beginning of 2013 decided to build a sample application using AngularJS that I call Customer Manager. It’s not exactly the most creative name or concept, but I wanted to build something that highlighted a lot of the different features offered by AngularJS and how they could be used together to build a full-featured app. One of the goals of the application was to ensure that it was approachable by people new to Angular since I’ve never found overly complex applications great for learning new concepts.

The application initially started out small and was used in my AngularJS in 60-ish Minutes video on YouTube but has gradually had more and more features added to it and will continue to be enhanced over time. It’ll be used in a new “end-to-end” training course my company is working on for AngularjS as well as in some video courses that will be coming out. Here’s a quick look at what the application home page looks like:

image

In this post I’m going to provide an overview about how the application is organized, back-end options that are available, and some of the features it demonstrates. I’ve already written about some of the features so if you’re interested check out the following posts:


Application Structure

image

The structure of the application is shown to the right. The  homepage is index.html and is located at the root of the application folder. It defines where application views will be loaded using the ng-view directive and includes script references to AngularJS, AngularJS routing and animation scripts, plus a few others located in the Scripts folder and to custom application scripts located in the app folder.

The app folder contains all of the key scripts used in the application. There are several techniques that can be used for organizing script files but after experimenting with several of them I decided that I prefer things in folders such as controllers, views, services, etc. Doing that helps me find things a lot faster and allows me to categorize files (such as controllers) by functionality. My recommendation is to go with whatever works best for you. Anyone who says, “You’re doing it wrong!” should be ignored. Contrary to what some people think, there is no “one right way” to organize scripts and other files. As long as the scripts make it down to the client properly (you’ll likely minify and concatenate them anyway to reduce bandwidth and minimize HTTP calls), the way you organize them is completely up to you. Here’s what I ended up doing for this application:

  1. Animation code for some custom animations is located in the animations folder. In addition to AngularJS animations (which are defined using CSS in Content/animations.css), it also animates the initial customer data load using a 3rd party script called GreenSock.
  2. Controllers are located in the controllers folder. Some of the controllers are placed in subfolders based upon the their functionality while others are placed at the root of the controllers folder since they’re more generic:

    image 

  3. The directives folder contains the custom directives created for the application.
  4. The filters folder contains the custom filters created for the application that filter city/state and product information.
  5. The partials folder contains partial views. This includes things like modal dialogs used in the application.
  6. The services folder contains AngularJS factories and services used for various purposes in the application. Most of the scripts in this folder provide data functionality.
  7. The views folder contains the different views used in the application. Like the controllers folder, the views are organized into subfolders based on their functionality:

image

 

Back-End Services


The Customer Manager application (grab it from Github) provides two different options on the back-end including ASP.NET Web API and Node.js. The ASP.NET Web API back-end uses Entity Framework for data access and stores data in SQL Server (LocalDb). The other option on the back-end is Node.js, Express, and MongoDB.

 

Using the ASP.NET Web API Back-End

To run the application using ASP.NET Web API/SQL Server back-end open the .sln file at the root of the project in Visual Studio 2012 or higher (the free Express 2013 for Web version is fine). Press F5 and a browser will automatically launch and display the application.

Using the Node.js Back-End

To run the application using the Node.js/MongoDB back-end follow these steps:

  1. In the CustomerManager directory execute 'npm install' to install Express, MongoDB and Mongoose (package.json).
  2. Load sample data into MongoDB by performing the following steps:
    • Execute 'mongod' to start the MongoDB daemon
    • Navigate to the CustomerManager directory (the one that has initMongoCustData.js in it) then execute 'mongo' to start the MongoDB shell
    • Enter the following in the mongo shell to load the seed files that handle seeding the database with initial data:

    use custmgr
    load("initMongoCustData.js")
    load("initMongoSettingsData.js")
    load("initMongoStateData.js")

  3. Start the Node/Express server by navigating to the CustomerManager/server directory and executing 'node app.js'
  4. View the application at http://localhost:3000 in your browser.


Key Features


The Customer Manager application certainly doesn’t cover every feature provided by AngularJS (as mentioned the intent was to keep it as simple as possible) but does provide insight into several key areas:

  1. Using factories and services as re-useable data services (see the app/services folder)
  2. Creating custom directives (see the app/directives folder)
  3. Custom paging (see app/views/customers/customers.html and app/controllers/customers/customersController.js)
  4. Custom filters (see app/filters)
  5. Showing custom modal dialogs with a re-useable service (see app/services/modalService.js)
  6. Making Ajax calls using a factory (see app/services/customersService.js)
  7. Using Breeze to retrieve and work with data (see app/services/customersBreezeService.js). Switch the application to use the Breeze factory by opening app/services.config.js and changing the useBreeze property to true.
  8. Intercepting HTTP requests to display a custom overlay during Ajax calls (see app/directives/wcOverlay.js)
  9. Custom animations using the GreenSock library (see app/animations/listAnimations.js)
  10. Creating custom AngularJS animations using CSS (see Content/animations.css)
  11. JavaScript patterns for defining controllers, services/factories, directives, filters, and more (see any JavaScript file in the app folder)
  12. Card View and List View display of data (see app/views/customers/customers.html and app/controllers/customers/customersController.js)
  13. Using AngularJS validation functionality (see app/views/customerEdit.html, app/controllers/customerEditController.js, and app/directives/wcUnique.js)
  14. More…

Conclusion

I’ll be enhancing the application even more over time and welcome contributions as well. Tony Quinn contributed the initial Node.js/MongoDB code which is very cool to have as a back-end option. Access the standard application here and a version that has custom routing in it here. Additional information about the custom routing can be found in this post.

© ASP.net Weblogs or respective owner

Related posts about mongodb

Related posts about .NET