Hi Friends,
This is the continuation of last Part.
Will release other videos on the same shortly. Till then, stay tuned and Happy Coding.
Thanks,
Rahul Sahay
Hi Friends,
This is the continuation of last Part.
Will release other videos on the same shortly. Till then, stay tuned and Happy Coding.
Thanks,
Rahul Sahay
Hi Friends,
In this section, I have started explaining building simple App using Angular, MVC, Web API and other bunch of stuffs. Here, I have recorded few videos to give the glimpse, how I usually get started.
Will Publish another videos shortly. Thanks for Joining me.
Thanks,
Rahul Sahay
Happy Coding
Hi Friends,
It gives me immense pleasure to share the 1st chapter of this book.
Contents
Chapter 1: Getting Started
WHAT DO you find in this CHAPTER?
Introduction
What is SPA
Technologies used to build SPA
Glimpse of Movie Review App
Summary
Chapter 2: Creating Solution from blank slate
WHAT DO you find in this CHAPTER?
Introduction
Solution Creation
Adding Project References
Adding Packages
Important Tools
Data Technologies
Creating Models
Creating Entity Framework
Database Initializer
Implementing Repository Pattern
Creating Unit of Work Pattern (UOW)
Summary
Chapter 3: Implementing Web API
WHAT DO you find in this CHAPTER?
Introduction
Creating 1st Web API Controller
Implementing HTTP Put Request
Implementing HTTP Post Request
Implementing HTTP Delete Request
Improvising Web APIs
Adding More Controllers
Testing Web APIs with QUnit
Summary
Chapter 4: Getting Started with Angular JS
WHAT DO you find in this CHAPTER?
Introduction
Getting started with PLNKR
Getting started with UI Design
Creating 1st Angular Controller
Data-Binding using Angular
Retrieving Data from API
Summary
Chapter 5: Deeper into Angular JS
WHAT DO you find in this CHAPTER?
Angular JS Routing
Adding More Routes
Client side validation
Saving Data using Angular
Creating Angular JS Service
Creating Movie Edit Feature
Creating Reviews Workflow
Summary
Chapter 6: Unit Testing
WHAT DO you find in this CHAPTER?
Introduction
Creating Test Project
Installing Chutzpah Test Adapter
Writing 1st JavaScript Test
Writing Angular Test
Using $httpBackend Service
Writing Controller Tests
Code Coverage
Summary
WHO SHOULD TAKE THIS BOOK
Building SPA using MVC 5 and Angular is designed to build the application right from the grass root level. This Book is actually targeted to those people who are comfortable with ASP.NET MVC and Angular as this needs basic knowledge of both the technology. Throughout this book my focus will be on teaching you making a full blown application rather than explaining basics. For basics you can check my other book Hands on With ASP.NET MVC. This book talks basics in great details with live demo in Azure. You can refer this book at this URL http://ow.ly/JetAi. I would recommend you to download the app from github URL shown below to help you while building https://github.com/rahulsahay19/MovieReview-Angular-Prod
Chapter 1: Getting Started
WHAT DO you find in this CHAPTER?
Introduction
What is SPA
Technologies used to build SPA
Glimpse of Movie Review App
Summary
Introduction:-
Hi my name is Rahul Sahay and I am going to introduce this whole new story of building Single Page Application right from the scratch. Here, in this context I am going to talk about bunch of different client/server side technologies and demonstrate how these small pieces marry together and creates a robust End to End application. So, without wasting time let’s get started.
What is SPA:-
Single Page App is all about user experience. People will love your app if you give them nice user experience which not only fits nicely in your laptop or desktop rather it goes nicely with multitude of devices like tabs, phones etc without breaking any single functionality. As shown in the below diagram, these are basic requirements for building any SPA.
“So, in a nutshell a Single Page App is web application which fits in a single page providing a fluid UX by loading all the necessary data in a single load.”
Now, apart from this there are many other attributes linked to SPA. They are:-
Movie Review app is built using tons of different client side and server side technologies. Some of these I have listed below:-
Client Side Technologies:-
Server Side Technologies:-
I think it would be good idea you to show you finished app before directly jump in creating the same. Here is the URL http://rahulsahay19-001-site1.smarterasp.net/#/ where I have hosted my app. Now, when you click on this, you will land on the below shown page.
Above shown screen shot is the home page of the app. Now, when you click on the Movies link, it will take you to the below shown page.
Once, page gets loaded, little toast message at the bottom right of the screen pops up saying Movies Fetched Successfully. Now, from this screen you can do all the CRUD Operation. Here the very 1st link is Add Movie, which will give user flexibility to go ahead and add any new movie as shown below.
Now, let’s suppose if we try to post the Form as it is blank, then it won’t allow, because above fields are required as marked by its CSS color and star mark as well. Now, once I enter any information, different validation will get triggered
Even at this moment I cannot submit the form as the form is invalid. Once, I modify and enter valid details, then form error messages and its error color (Red) will disappear.
Now, at this instant I can go ahead and submit the movie. Once I click submit button; one toast message will appear saying Data Saved Successfully and will get redirected back to movies link.
Next is the Edit link corresponding to the movie. When you click on this, it will present the below screen for editing the same.
Here, also each and every validation will be there, what we have seen during creation. However, you can go ahead and edit anything over here, let’s say I change the year to 2002 and update.
Once I update the movie it will save the same in database and then get redirected to Movies link as shown below.
However, let me change the same back to the original one as it’s not correct. Similarly, you can go ahead and delete the movie from the Edit link as well. Next to Edit link, there is link for Reviews as well. From this link you can go ahead and add new review as shown below.
Here, when I click on Add New Review, it will take me to the below form.
Above form has also got different set of validations as shown below.
Once done all the corrections, it will be like this
After successful, submission, it will redirect back to the movies link.
After adding Review, position of newly added movie moves up in the list as behind the scene order by clause is working on total no of reviews. Now, when I click on the Reviews link again, it will show me the review which I have added.
Here, corresponding to the Review, new Edit link also got enabled for editing or deleting the Review. This also works same what I explained above for Movie. About App link lists all the details of the application like what technologies used what tools you need, where to download the code etc….
I have also used QUnit Library to test my Web APIs. Below is the glimpse for the same.
When you click on any individual test, it will present you the detailed results as shown below in the screen shot.
And if there is anything wrong with any end points, let’s suppose that doesn’t exist; easiest way to break the test, then it will be like
You can also verify these APIs like shown below
http://rahulsahay19-001-site1.smarterasp.net/api/movies
Similarly different endpoints can be tested. Apart from Web API tests. I have also used Jasmine to test my Angular code. You will also learn how to test client side JavaScript code with Visual Studio. Here, I have used Chutzpah to integrate JavaScript Tests with Visual Studio. Below is the glimpse for the same.
Now, when I check code coverage results for my tests, Chutzpah will open a new window in browser with the code coverage results for the client side as shown below in the screen shot.
The ones which are highlighted in red are the ones which are not covered 100%, so when I click on any of this link, it will open the code in browser and show what is covered and what is not
Let me go ahead and show you the solution structure of finished app. Below in the screen shot, I have 5 different projects. Each is having its on dependency and responsibility.
Here, the highlighted one is the web project which is dependent on other infrastructure projects Data, Contracts and Model. Data project is the place where in you maintain initial seed data, Entity Framework DBContext and many more things involve direct interfacing down the layer with database. Data Contract is the place where in you manage your repositories and apply Unit of Work Pattern on repositories like movies and moviereviews. Model is the place where you will be having your POCOs (Plain Old CLR Objects). This is the place where in you are maintaining all properties attributed to the tables. Below is the glimpse of all projects in its expanded form.
In this section, we have seen the bits and bytes of the Single Page Application which we are going to make using tons of client/server side framework. We have also seen the glimpse of app and solution. In the next section, we’ll begin the learning by creating the application right from the scratch. I would recommend you to download the app from github URL shown below to help you while building https://github.com/rahulsahay19/MovieReview-Angular-Prod .
I hope you have enjoyed the glimpse. More more info you can have the same from the below mentioned link.
Thanks,
Rahul
Happy Coding
Hi Friends,
It’s been long since i blogged any thing but it’s ok as i was working on one of the assignments which i shared few days back where in i’ll be wiring up bunch of technologies to make a robust SPA. Here, is the glimpse of the app what i have been working on.
Looks like my git shell has been corrupted, hence not able to push images in git. not a problem, will fix the same some time later, but for now let me upload images here itself.
However, below is the solution structure for the same. However, this is still incomplete as i have not yet added the testing project. But that’s ok, will be adding shortly and publishing the same shortly…Now, below is the glimpse of variety of technologies used so far to make this app…
so, the one showed below is the web project rather web api project talking to and fro with my other projects listed here. Here, the crucial things are api controllers and my client side scripts “Angular” here for delivering the same back to UI. Other projects are equally important where in one is having models project which is keeping my plain classes then contracts project which is the medium for Unit of Work Pattern and Repository Pattern. Then the last one is Data project where Entity Framework is playing it’s role. Here, I have also used design principles like Single Repository principle to keep the things simple and clean and Factory Pattern to create the required instance in case if that is not created earlier by the app. Like this there are variety of out of the box things i used in this app which you will experience once you start building this app right from the blank state.
Below, is the glimpse of all api controller sets and the same in action as well.
Now, at the end my two driving factors of my app; my two Angular files.
Here, i also used qunit.js to test my api controller. Below is the glimpse of api test resources and their test results.
and below is the snippet used for the same.
Beta Version Download Link:- https://github.com/rahulsahay19/MovieReview-Angular/tree/Movie-Review-Angular
I hope you liked the glimpse, stay tuned for complete step by step tutorial. Till then stay tuned and Happy Coding.
Thanks,
Rahul
Hi Friends,
Today, i have started working on one of my app framework projects where in i’m brushing up all required skills to write a good application framework. Basically, application framework i would say one time investment and long term return means if you write good framework initially, then you can smartly focus on business requirements at the later part. So, basically any application framework involves below listed bullet points like
1) General Naming conventions
2) Data Access Design
3) DI Technique say Ninject, Structure Map …etc
4) Error Handling and Logging Events
5) Security Infrastructure
6) UI Design
7) Client/Server Side Validations
8) many more can be listed, but these are basics.
But, the point is for writing these, you need to have good implementation knowledge of below listed points.
So, these are the few things in my opinion are must have things for any mature developer.
Thanks,
Rahul