Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 17, 2015 01:00 pm

Create a Simple Shopping Cart Using AngularJS: Part 3

In the previous part of this tutorial series, we created a custom directive and used it in our simple shopping cart application. In this part of the tutorial series, we'll see how to make the total div stick to the top while scrolling the browser. We'll also create a checkout page where we'll display all the items selected by the user.

Getting Started

Let's start by cloning the previous part of the tutorial from GitHub.

After cloning the source code, navigate to the project directory and install the required dependencies.

Once the dependencies are installed, start the server

Point your browser to https://localhost:3000/ and you should have the application running.

Affix the Total Div 

Although we are using the bootstrap affix component to keep the total div on the top, it isn't working as expected. Let's examine what's going wrong. 

The bootstrap affix component adds a class called affix when we scroll above a certain height and affix-top when it's below. It still works in the simple HTML pages, but when integrated into AngularJS it doesn't seem to work. In order to fix this issue, we'll keep a check on the scroll height and when it's above and below a certain height, say 50 px, we'll add the affix classes accordingly.

So, assuming that we have the scroll height as scroll, add the affix and affix-top classes to the Total div using the ngClass directive.

In order to get the scroll we'll create another directive. Let's name the directive getScroll. This directive will update the scroll value each time the browser window is scrolled, and based on scroll the affix classes will be updated.

As seen in the above code, we are passing a scroll attribute to the getScroll directive. On scroll we are calculating the scroll height from the top using angular.element($window). On each scroll event we update the scroll scope variable.

Add the above directive to the end of the cart.html page.

Save these changes and refresh the page. Try to scroll the browser window and the total should be affixed on the top, always visible.

Implementing a Checkout Page

To populate the checkout page with the items selected, we'll need to pass the items between controllers. So we'll make use of an AngularJS service to pass the data between controllers. Let's create a service called CommonProp where we'll save the items selected and also the total price. Open up cart.js and create a service called CommonProp as shown:

As seen, inside the CommonProp service we have defined four functions to get and set the items and total price. Inject the CommonProp service into the CartCtrl.

We'll watch for any change in the shopData variable and update the service data accordingly. Add the following code inside CartCtrl.

Inside checkout.js, inject the CommonProp service into CheckoutCtrl.

We'll be using the CommonProp service to get the items and total in CheckoutCtrl.

Using $scope.items we'll populate the checkout page. Open up checkout.html and remove the existing hard-coded table. We'll make use of the ngRepeat directive and $scope.items to create the table and populate it dynamically.

Save the above changes and refresh the page. Select a few items and then click on the Checkout button in the cart page. Once on the checkout page, it should display the list of items selected.

Check Out Page

Let's also include the Price total in the checkout page. So when the total is calculated in the total function in CartCtrl, update the CommonProp service total value.

To display the total on the checkout page, include the following tr HTML code:

Since we are updating the total scope variable in CheckoutCtrl, the total will automatically be displayed. Save the changes and start afresh. Select a few items and select checkout. Once on the checkout page you should be able to see the selected items and the total price.

Check Out Page With Selected Items and Total

Once on the checkout page, if you click the Customize button you'll be taken to the cart page, but all the selections will be gone. So we need to fix that. Once the cart page is loaded, we'll check the CommonProp service for any existing items. If items are present then we'll use those items to populate the cart page.

Inside CartCtrl check if any items exist in CommonProp and set the $scope.shopData.

Save all the above changes and restart the server. From the cart page, select a few items and then click Checkout to navigate to the checkout page. Once on the checkout page, click on the Customize button to get back to the cart page. And you should have all the selections made, as they are, in the cart page.

Conclusion

In this part of the tutorial series, we implemented the checkout page and saw how to share data between different controllers using an AngularJS service. We also created a directive to get the scroll height and fix the bootstrap affix issue.

I hope you learnt something useful from this tutorial series. For more in-depth information regarding AngularJS directives, have a look at the official documentation.

Source code from this tutorial is available on GitHub. Do let us know your thoughts and corrections in the comments below!


Original Link:

Share this article:    Share on Facebook
No Article Link

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code